Fix find_charset_names.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2019-10-25 Ali Tamur <tamur@google.com>
2
3 * charset.c (find_charset_names): Reflect API change.
4
5 2019-10-25 Christian Biesinger <cbiesinger@google.com>
6
7 * symtab.c (struct demangled_name_entry): Change demangled name
8 to a unique_xmalloc_ptr<char>, now that we don't allocate it as
9 part of the struct anymore.
10 (symbol_set_names): No longer obstack allocate + copy the demangled
11 name, just store the allocated name from bfd.
12
13 2019-10-25 Tom Tromey <tromey@adacore.com>
14
15 * dwarf2-frame.c (dwarf2_cie_table): Now a typedef.
16 (bsearch_cie_cmp, add_cie): Remove.
17 (find_cie): Reimplement.
18 (decode_frame_entry_1, decode_frame_entry): Change type. Update.
19 (dwarf2_build_frame_info): Update.
20
21 2019-10-24 H.J. Lu <hongjiu.lu@intel.com>
22
23 PR gdb/25126
24 * symfile.c (reread_symbols): Call forget_cached_source_info to
25 clear the stale source cache.
26
27 2019-10-24 Christian Biesinger <cbiesinger@google.com>
28
29 * configure: Regenerate.
30 * configure.ac: Remove code that sets python_has_threads.
31
32 2019-10-24 Christian Biesinger <cbiesinger@google.com>
33
34 * config.in: Regenerate.
35 * configure: Regenerate.
36 * configure.ac: Remove the code that uses sed to get the python
37 version and defines HAVE_LIBPYTHON2_6 / HAVE_LIBPYTHON2_7.
38
39 2019-10-24 Andrew Burgess <andrew.burgess@embecosm.com>
40
41 * python/py-progspace.c (pspy_block_for_pc): Return None for all
42 error paths.
43
44 2019-10-23 Tom Tromey <tom@tromey.com>
45
46 * arc-tdep.c: Remove ".." from include.
47 * frv-tdep.c: Remove ".." from include.
48 * lm32-tdep.c: Remove ".." from include.
49 * microblaze-tdep.c: Remove ".." from include.
50 * or1k-tdep.h: Remove ".." from include.
51 * s12z-tdep.c: Remove ".." from include.
52 * Makefile.in (OPCODES_CFLAGS): Add comment.
53 (TOP_CFLAGS): New variable.
54 (INTERNAL_CFLAGS_BASE): Add TOP_CFLAGS.
55
56 2019-10-23 Tom Tromey <tom@tromey.com>
57
58 * Makefile.in (READLINE_DIR): Update.
59
60 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
61
62 * infcall.c (call_function_by_hand_dummy): Fix the function
63 comment. And extract out a code section into...
64 (reserve_stack_space): ...this new function.
65
66 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
67
68 * infcall.c (value_arg_coerce): Remove an unused parameter.
69 (call_function_by_hand_dummy): Update the call to
70 'value_arg_coerce'.
71
72 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
73
74 * infcall.c (call_function_by_hand_dummy): Refactor.
75
76 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
77
78 * MAINTAINERS (Write After Approval): Add Tankut Baris Aktemur.
79
80 2019-10-23 Tom Tromey <tom@tromey.com>
81
82 * configure: Rebuild.
83 * configure.ac: Don't check for sigprocmask.
84 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for sigprocmask.
85
86 2019-10-23 Tom Tromey <tom@tromey.com>
87
88 * configure: Rebuild.
89 * acinclude.m4: Use m4_include, not sinclude.
90
91 2019-10-23 Tom de Vries <tdevries@suse.de>
92
93 PR breakpoints/24687
94 * symtab.c (iterate_over_some_symtabs): Apply gdb_realpath on fullname.
95
96 2019-10-22 Christian Biesinger <cbiesinger@google.com>
97
98 * symtab.c (struct demangled_name_entry) <language>: Change from
99 bitfield to regular variable.
100
101 2019-10-22 Christian Biesinger <cbiesinger@google.com>
102
103 * symtab.c (struct demangled_name_entry): Add a constructor.
104 (free_demangled_name_entry): New function to call the destructor
105 for demangled_name_entry.
106 (create_demangled_names_hash): Pass free_demangled_name_entry to
107 htab_create_alloc.
108 (symbol_set_names): Call placement new for demangled_name_entry.
109 * utils.c: No longer include xxhash.h here, now that fast_hash
110 is inlined in the header.
111 * utils.h: Instead, include it here.
112
113 2019-10-22 Christian Biesinger <cbiesinger@google.com>
114
115 * Makefile.in: Link with libxxhash.
116 * config.in: Regenerate.
117 * configure: Regenerate.
118 * configure.ac: Search for libxxhash.
119 * utils.c (fast_hash): Use xxhash if present.
120
121 2019-10-22 Christian Biesinger <cbiesinger@google.com>
122
123 * utils.h (fast_hash): New function.
124 * symtab.c (hash_demangled_name_entry): Call new function
125 fast_hash.
126
127 2019-10-22 Christian Biesinger <cbiesinger@google.com>
128
129 * symtab.c (struct demangled_name_entry): Change type of mangled
130 to gdb::string_view. Also adds a constructor that takes the
131 mangled name.
132 (hash_demangled_name_entry): Update.
133 (eq_demangled_name_entry): Update.
134 (free_demangled_name_entry): New function to call the destructor
135 now that this is not a POD anymore.
136 (create_demangled_names_hash): Pass free_demangled_name_entry to
137 htab_create_alloc.
138 (symbol_set_names): Update.
139
140 2019-10-21 Ali Tamur <tamu@google.com>
141
142 * dwarf2read.c (dir_index): Change type.
143 (file_name_index): Likewise.
144 (line_header::include_dir_at): Change comment and implementation on
145 whether it is DWARF 5.
146 (line_header::is_valid_file_index): New function.
147 (line_header::file_name_at): Change comment and implementation on
148 whether it is DWARF 5.
149 (line_header::file_names): Change to private field renamed as
150 m_file_names and introduce a new accessor method.
151 (line_header::file_names_size): New method.
152 (line_header::include_dirs): Change to private field and rename as
153 m_include_dirs.
154 (dw2_get_file_names_reader): Define local var at a smaller scope and
155 reflect API change.
156 (dwarf2_cu::setup_type_unit_groups): Reflect API change.
157 (process_structure_scope): Likewise.
158 (line_header::add_include_dir): Change message and reflect renaming.
159 (line_header::add_file_name): Likewise.
160 (read_formatted_entries): Handle DW_FORM_data16.
161 (dwarf_decode_line_header): Fix line header length calculation.
162 (psymtab_include_file_name): Change comment and API.
163 (lnp_state_machine::m_file): Update comment and reflect type change.
164 (lnp_state_machine::record_line): Reflect type change.
165 (dwarf_decode_lines): Reflect API change.
166 (file_file_name): Likewise.
167 (file_full_name): Likewise.
168
169 2019-10-21 Andrew Burgess <andrew.burgess@embecosm.com>
170
171 * objfiles.c (sort_cmp): Ensure that !(a < a) holds true.
172
173 2019-10-21 Tom Tromey <tom@tromey.com>
174
175 * tui/tui-winsource.h (tui_exec_info_content): Remove typedef.
176
177 2019-10-21 Tom Tromey <tom@tromey.com>
178
179 * configure.ac (nm.h): Conditionally create nm.h link. Subst
180 NM_H. Use AC_CONFIG_LINKS.
181 * configure: Rebuild.
182 * Makefile.in (NM_H): New variable.
183 (generated_files): Add NM_H. Remove gcore.
184 (nm.h, stamp-nmh): New targets.
185
186 2019-10-20 Tom Tromey <tom@tromey.com>
187
188 * objfiles.h (unlink_objfile, put_objfile_before): Don't declare.
189 * objfiles.c (unlink_objfile): Move earlier. Now static. Remove
190 obsolete comment.
191 (put_objfile_before): Now static.
192
193 2019-10-19 Simon Marchi <simon.marchi@polymtl.ca>
194
195 * gdbsupport/common-utils.h (startswith): Change return type to
196 bool.
197
198 2019-10-19 Christian Biesinger <cbiesinger@google.com>
199
200 * bcache.c (bcache::print_statistics): Use std::sort instead of qsort.
201 * breakpoint.c (bp_locations_compare): Rename to...
202 (bp_location_is_less_than): ...this, and change to std::sort semantics.
203 (update_global_location_list): Use std::sort instead of qsort.
204 * buildsym.c (compare_line_numbers): Rename to...
205 (lte_is_less_than): ...this, and change to std::sort semantics.
206 (buildsym_compunit::end_symtab_with_blockvector): Use std::sort
207 instead of qsort.
208 * disasm.c (compare_lines): Rename to...
209 (line_is_less_than): ...this, and change to std::sort semantics.
210 (do_mixed_source_and_assembly_deprecated): Call std::sort instead
211 of qsort.
212 * dwarf2-frame.c (qsort_fde_cmp): Rename to...
213 (fde_is_less_than): ...this, and change to std::sort semantics.
214 (dwarf2_build_frame_info): Call std::sort instead of qsort.
215 * mdebugread.c (compare_blocks):
216 (block_is_less_than): ...this, and change to std::sort semantics.
217 (sort_blocks): Call std::sort instead of qsort.
218 * objfiles.c (qsort_cmp): Rename to...
219 (sort_cmp): ...this, and change to std::sort semantics.
220 (update_section_map): Call std::sort instead of qsort.
221 * remote.c (compare_pnums): Remove.
222 (map_regcache_remote_table): Call std::sort instead of qsort.
223 * utils.c (compare_positive_ints): Remove.
224 * utils.h (compare_positive_ints): Remove.
225 * xcoffread.c (compare_lte): Remove.
226 (arrange_linetable): Call std::sort instead of qsort.
227
228 2019-10-19 Sergio Durigan Junior <sergiodj@redhat.com>
229
230 * symfile.c (init_entry_point_info): Fix typo.
231 * i386-darwin-tdep.c (darwin_dwarf_signal_frame_p): Fix typo.
232
233 2019-10-18 Tom de Vries <tdevries@suse.de>
234
235 * aarch64-tdep.c: Fix typos in comments.
236 * ada-lang.c: Same.
237 * ada-tasks.c: Same.
238 * alpha-tdep.c: Same.
239 * alpha-tdep.h: Same.
240 * amd64-nat.c: Same.
241 * amd64-windows-tdep.c: Same.
242 * arc-tdep.c: Same.
243 * arc-tdep.h: Same.
244 * arch-utils.c: Same.
245 * arm-nbsd-tdep.c: Same.
246 * arm-tdep.c: Same.
247 * ax-gdb.c: Same.
248 * blockframe.c: Same.
249 * btrace.c: Same.
250 * c-varobj.c: Same.
251 * coff-pe-read.c: Same.
252 * coffread.c: Same.
253 * cris-tdep.c: Same.
254 * darwin-nat.c: Same.
255 * dbxread.c: Same.
256 * dcache.c: Same.
257 * disasm.c: Same.
258 * dtrace-probe.c: Same.
259 * dwarf-index-write.c: Same.
260 * dwarf2-frame-tailcall.c: Same.
261 * dwarf2-frame.c: Same.
262 * dwarf2read.c: Same.
263 * eval.c: Same.
264 * exceptions.c: Same.
265 * fbsd-tdep.c: Same.
266 * findvar.c: Same.
267 * frame.c: Same.
268 * frv-tdep.c: Same.
269 * gnu-v3-abi.c: Same.
270 * go32-nat.c: Same.
271 * h8300-tdep.c: Same.
272 * hppa-tdep.c: Same.
273 * i386-linux-tdep.c: Same.
274 * i386-tdep.c: Same.
275 * ia64-libunwind-tdep.c: Same.
276 * ia64-tdep.c: Same.
277 * infcmd.c: Same.
278 * infrun.c: Same.
279 * linespec.c: Same.
280 * linux-nat.c: Same.
281 * linux-thread-db.c: Same.
282 * machoread.c: Same.
283 * mdebugread.c: Same.
284 * mep-tdep.c: Same.
285 * mn10300-tdep.c: Same.
286 * namespace.c: Same.
287 * objfiles.c: Same.
288 * opencl-lang.c: Same.
289 * or1k-tdep.c: Same.
290 * osabi.c: Same.
291 * ppc-linux-nat.c: Same.
292 * ppc-linux-tdep.c: Same.
293 * ppc-sysv-tdep.c: Same.
294 * printcmd.c: Same.
295 * procfs.c: Same.
296 * record-btrace.c: Same.
297 * record-full.c: Same.
298 * remote-fileio.c: Same.
299 * remote.c: Same.
300 * rs6000-tdep.c: Same.
301 * s12z-tdep.c: Same.
302 * score-tdep.c: Same.
303 * ser-base.c: Same.
304 * ser-go32.c: Same.
305 * skip.c: Same.
306 * sol-thread.c: Same.
307 * solib-svr4.c: Same.
308 * solib.c: Same.
309 * source.c: Same.
310 * sparc-nat.c: Same.
311 * sparc-sol2-tdep.c: Same.
312 * sparc-tdep.c: Same.
313 * sparc64-tdep.c: Same.
314 * stabsread.c: Same.
315 * stack.c: Same.
316 * symfile.c: Same.
317 * symtab.c: Same.
318 * target-descriptions.c: Same.
319 * target-float.c: Same.
320 * thread.c: Same.
321 * utils.c: Same.
322 * valops.c: Same.
323 * valprint.c: Same.
324 * value.c: Same.
325 * varobj.c: Same.
326 * windows-nat.c: Same.
327 * xcoffread.c: Same.
328 * xstormy16-tdep.c: Same.
329 * xtensa-tdep.c: Same.
330
331 2019-10-17 Tom Tromey <tromey@adacore.com>
332
333 * configure: Rebuild.
334 * configure.ac: Use AC_CONFIG_HEADERS. Create stamp-h there, not
335 in AC_CONFIG_FILES invocation.
336 * Makefile.in (Makefile, data-directory/Makefile, stamp-h): Use
337 new-style config.status invocation.
338
339 2019-10-17 Tom de Vries <tdevries@suse.de>
340
341 * arm-nbsd-nat.c: Fix typos in comments.
342 * arm-tdep.c: Same.
343 * darwin-nat-info.c: Same.
344 * dwarf2read.c: Same.
345 * elfread.c: Same.
346 * event-top.c: Same.
347 * findvar.c: Same.
348 * gdbtypes.c: Same.
349 * hppa-tdep.c: Same.
350 * i386-tdep.c: Same.
351 * jit.c: Same.
352 * main.c: Same.
353 * mdebugread.c: Same.
354 * moxie-tdep.c: Same.
355 * nto-procfs.c: Same.
356 * osabi.c: Same.
357 * ppc-linux-tdep.c: Same.
358 * remote.c: Same.
359 * riscv-tdep.c: Same.
360 * s390-tdep.c: Same.
361 * sh-tdep.c: Same.
362 * sparc-linux-tdep.c: Same.
363 * sparc-nat.c: Same.
364 * stack.c: Same.
365 * target-descriptions.c: Same.
366 * top.c: Same.
367 * varobj.c: Same.
368
369 2019-10-16 Tom Tromey <tom@tromey.com>
370
371 * objfiles.h (struct objfile) <original_name>: Now const.
372
373 2019-10-16 Christian Biesinger <cbiesinger@google.com>
374
375 * gdbsupport/gdb_setjmp.h (SIGSETJMP): Allow passing in the value to
376 pass on to sigsetjmp's second argument.
377 * cp-support.c (gdb_demangle): Unblock SIGSEGV if we caught a crash.
378
379 2019-10-16 Keith Seitz <keiths@redhat.com>
380
381 PR gdb/23567
382 * dwarf2read.c (dwarf2_per_objfile::locate_sections): Discard
383 sections whose size is greater than the file size.
384
385 2019-10-16 Jim Wilson <jimw@sifive.com>
386
387 * riscv-tdep.c (riscv_gcc_target_options): New.
388 (riscv_gnu_triplet_regexp): New.
389 (riscv_gdbarch_init): Call set_gdbarch_gcc_triplet_options and
390 set_gdbarch_gnu_triplet_regexp.
391
392 2019-10-16 Christian Biesinger <cbiesinger@google.com>
393
394 * Makefile.in: Add xml-builtin.h.
395 * features/feature_to_c.sh: Add an include for xml-builtin.h
396 to ensure that the compiler checks that the types match.
397 * xml-builtin.h: New file.
398 * xml-support.c (fetch_xml_builtin): Add missing const.
399 * xml-support.h: Remove declaration of xml_builtins.
400
401 2019-10-16 Tom de Vries <tdevries@suse.de>
402
403 PR tdep/25096
404 * amd64-tdep.c (amd64_classify_aggregate_field): Factor out of ...
405 (amd64_classify_aggregate): ... here.
406 (amd64_classify_aggregate_field): Handled fiels of nested structs
407 recursively.
408
409 2019-10-16 Tom de Vries <tdevries@suse.de>
410
411 PR tdep/24104
412 * amd64-tdep.c (amd64_push_arguments): Handle AMD64_NO_CLASS in loop
413 that handles 'theclass'.
414
415 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
416
417 * linespec.c (decode_digits_ordinary): Update comment.
418 * make-target-delegates: No longer need to handle VEC case.
419 * memrange.c (normalize_mem_ranges): Update comment.
420 * namespace.c (add_using_directive): Update comment.
421 * objc-lang.c (uniquify_strings): Update comment.
422 * ppc-linux-nat.c (struct thread_points): Update comment.
423 * probe.h (find_probes_in_objfile): Update comment.
424 * target.h (enum flash_preserve_mode): Update comment.
425 * varobj.c (varobj_restrict_range): Update comment.
426 * varobj.h (varobj_list_children): Update comment.
427
428 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
429
430 * Makefile.in: Remove references to vec.h and vec.c.
431 * aarch64-tdep.c: No longer include vec.h.
432 * ada-lang.c: Likewise.
433 * ada-lang.h: Likewise.
434 * arm-tdep.c: Likewise.
435 * ax.h: Likewise.
436 * breakpoint.h: Likewise.
437 * charset.c: Likewise.
438 * cp-support.h: Likewise.
439 * dtrace-probe.c: Likewise.
440 * dwarf2read.c: Likewise.
441 * extension.h: Likewise.
442 * gdb_bfd.c: Likewise.
443 * gdbsupport/gdb_vecs.h: Likewise.
444 * gdbsupport/vec.c: Remove.
445 * gdbsupport/vec.h: Remove.
446 * gdbthread.h: Likewise.
447 * guile/scm-type.c: Likewise.
448 * inline-frame.c: Likewise.
449 * machoread.c: Likewise.
450 * memattr.c: Likewise.
451 * memrange.h: Likewise.
452 * namespace.h: Likewise.
453 * nat/linux-btrace.h: Likewise.
454 * osdata.c: Likewise.
455 * parser-defs.h: Likewise.
456 * progspace.h: Likewise.
457 * python/py-type.c: Likewise.
458 * record-btrace.c: Likewise.
459 * rust-exp.y: Likewise.
460 * solib-target.c: Likewise.
461 * stap-probe.c: Likewise.
462 * target-descriptions.c: Likewise.
463 * target-memory.c: Likewise.
464 * target.h: Likewise.
465 * varobj.c: Likewise.
466 * varobj.h: Likewise.
467 * xml-support.h: Likewise.
468
469 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
470
471 * gdb/dwarf2read.c (dwarf2_per_objfile::~dwarf2_per_objfile):
472 Update for new std::vector based implementation.
473 (process_psymtab_comp_unit_reader): Likewise.
474 (scan_partial_symbols): Likewise.
475 (recursively_compute_inclusions): Likewise.
476 (compute_compunit_symtab_includes): Likewise.
477 (process_imported_unit_die): Likewise.
478 (queue_and_load_dwo_tu): Likewise.
479 (follow_die_sig_1): Likewise.
480 * gdb/dwarf2read.h: Remove DEF_VEC_P.
481 (typedef dwarf2_per_cu_ptr): Remove.
482 (struct dwarf2_per_cu_data) <imported_symtabs_empty>: New
483 function.
484 (struct dwarf2_per_cu_data) <imported_symtabs_push>: New function.
485 (struct dwarf2_per_cu_data) <imported_symtabs_size>: New function.
486 (struct dwarf2_per_cu_data) <imported_symtabs_free>: New function.
487 (struct dwarf2_per_cu_data) <imported_symtabs>: Change to
488 std::vector.
489
490 2019-10-15 Tom Tromey <tromey@adacore.com>
491
492 * windows-nat.c (windows_nat_target::resume): Use %x when logging
493 TID.
494
495 2019-10-15 Tom Tromey <tromey@adacore.com>
496
497 * windows-nat.c (windows_nat_target::fetch_registers)
498 (windows_nat_target::store_registers): Rename "pid" to "tid".
499
500 2019-10-15 Tom Tromey <tromey@adacore.com>
501
502 * gdbarch.h, gdbarch.c: Rebuild.
503 * gdbarch.sh (gcc_target_options): Change return type to
504 std::string.
505 * compile/compile.c (get_args): Update.
506 * nios2-tdep.c (nios2_gcc_target_options): Return std::string.
507 * arm-linux-tdep.c (arm_linux_gcc_target_options): Return
508 std::string.
509 * aarch64-linux-tdep.c (aarch64_linux_gcc_target_options): Return
510 std::string.
511 * arch-utils.c (default_gcc_target_options): Return std::string.
512 * arch-utils.h (default_gcc_target_options): Return std::string.
513 * s390-tdep.c (s390_gcc_target_options): Return std::string.
514
515 2019-10-15 Christian Biesinger <cbiesinger@google.com>
516
517 * breakpoint.c (breakpoint_chain): Make static.
518 * tui/tui-winsource.c: Call iterate_over_breakpoints instead
519 of accessing breakpoint_chain.
520
521 2019-10-15 Christian Biesinger <cbiesinger@google.com>
522
523 * breakpoint.c (iterate_over_breakpoints): Change function pointer
524 to a gdb::function_view and return value to bool.
525 * breakpoint.h (iterate_over_breakpoints): Likewise.
526 * dummy-frame.c (pop_dummy_frame_bpt): Update.
527 (pop_dummy_frame): Update.
528 * guile/scm-breakpoint.c (bpscm_build_bp_list): Update.
529 (gdbscm_breakpoints): Update.
530 * python/py-breakpoint.c (build_bp_list): Update.
531 (gdbpy_breakpoints): Update.
532 * python/py-finishbreakpoint.c (bpfinishpy_detect_out_scope_cb):
533 Update.
534 (bpfinishpy_handle_stop): Update.
535 (bpfinishpy_handle_exit): Update.
536 * solib-svr4.c (svr4_update_solib_event_breakpoint): Update.
537 (svr4_update_solib_event_breakpoints): Update.
538
539 2019-10-15 Andreas Arnez <arnez@linux.ibm.com>
540
541 * s390-tdep.c (s390_effective_inner_type): Ignore static fields
542 when unwrapping single-field structs.
543
544 2019-10-14 Simon Marchi <simon.marchi@polymtl.ca>
545
546 * dwarf2read.c: Remove includes.
547
548 2019-10-13 Simon Marchi <simon.marchi@polymtl.ca>
549
550 * ui-out.c (ui_out::call_do_message): Silence
551 -Wformat-nonliteral warning.
552
553 2019-10-12 Simon Marchi <simon.marchi@polymtl.ca>
554
555 * breakpoint.c: Remove some includes: continuations.h, skip.h,
556 mi/mi-main.h, readline/readline.h, readline/history.h. Add
557 include: readline/tilde.h.
558
559 2019-10-12 Christian Biesinger <cbiesinger@google.com>
560
561 * remote.c (remote_target::get_trace_status): Remove declaration of
562 trace_regblock_size.
563
564 2019-10-12 Christian Biesinger <cbiesinger@google.com>
565
566 * cli/cli-cmds.c (max_user_call_depth): Move comment to header.
567 (show_user): Remove declaration of cmdlist.
568 * cli/cli-cmds.h (max_user_call_depth): Declare.
569 * cli/cli-script.c (execute_user_command): Remove declaration
570 of max_user_call_depth.
571
572 2019-10-11 Jim Wilson <jimw@sifive.com>
573
574 * gdbsupport/print-utils.h (pulongest): Fix comment.
575 (plongest): Likewise.
576 (phex): Add missing comment, mention leading zeros.
577 (phex_nz): Add mention of no leading zeros to comment.
578
579 * riscv-tdep.c (riscv_push_dummy_code): Change %lld to %s and use
580 plongest instead of unsigned long long cast.
581
582 2019-10-10 Christian Biesinger <cbiesinger@google.com>
583
584 * main.c (captured_main_1): Include gdbtk.h and remove declarations
585 for external_editor_command and gdbtk_test.
586
587 2019-10-10 Christian Biesinger <cbiesinger@google.com>
588
589 * mi/mi-cmd-var.c (varobjdebug): Remove declaration.
590 * varobj.c (varobjdebug): Move comment to...
591 * varobj.h (varobjdebug): ...here, and declare.
592
593 2019-10-09 Tom Tromey <tom@tromey.com>
594
595 * tui/tui-regs.c (tui_data_window::show_registers): Don't call
596 erase_data_content.
597
598 2019-10-09 Tom Tromey <tom@tromey.com>
599
600 * tui/tui-wingeneral.h (tui_delete_win): Don't declare.
601 * tui/tui-stack.c (tui_locator_window::rerender): Update.
602 * tui/tui-command.c (tui_cmd_window::resize)
603 (tui_refresh_cmd_win): Update.
604 * tui/tui-win.c (tui_resize_all, tui_set_focus_command): Update.
605 * tui/tui.c (tui_rl_other_window, tui_enable): Update.
606 * tui/tui-data.c (~tui_gen_win_info): Remove.
607 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
608 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
609 (tui_redisplay_readline, tui_mld_flush)
610 (tui_mld_erase_entire_line, tui_mld_getc, tui_getc): Update.
611 * tui/tui-regs.c (tui_data_window::delete_data_content_windows)
612 (tui_data_window::erase_data_content)
613 (tui_data_item_window::rerender)
614 (tui_data_item_window::refresh_window): Update.
615 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window)
616 (box_win, tui_gen_win_info::make_window)
617 (tui_gen_win_info::make_visible): Update.
618 (tui_delete_win): Remove.
619 * tui/tui-winsource.c
620 (tui_source_window_base::do_erase_source_content): Update.
621 (tui_show_source_line, tui_source_window_base::update_tab_width)
622 (tui_source_window_base::update_exec_info): Update.
623 * tui/tui-data.h (struct curses_deleter): New.
624 (struct tui_gen_win_info) <handle>: Now a unique_ptr.
625 (struct tui_gen_win_info) <~tui_gen_win_info>: Define.
626
627 2019-10-09 Tom Tromey <tom@tromey.com>
628
629 * tui/tui-wingeneral.h (struct tui_gen_win_info): Don't declare.
630
631 2019-10-09 Tom Tromey <tom@tromey.com>
632
633 * tui/tui-data.c (tui_win_is_auxiliary): Remove.
634 * tui/tui-data.h (tui_win_is_auxiliary): Don't declare.
635
636 2019-10-09 Tom Tromey <tom@tromey.com>
637
638 * tui/tui-disasm.c (tui_get_low_disassembly_address): Compute
639 window height directly.
640 * tui/tui-layout.h (tui_default_win_viewport_height): Don't
641 declare.
642 * tui/tui-layout.c (tui_default_win_height): Remove.
643 (tui_default_win_viewport_height): Remove.
644
645 2019-10-09 Tom Tromey <tom@tromey.com>
646
647 * tui/tui.h: Remove comments.
648
649 2019-10-09 Tom de Vries <tdevries@suse.de>
650
651 * python/lib/gdb/printer/bound_registers.py: Use
652 '^builtin_type_bound128' as regexp argument for
653 add_builtin_pretty_printer.
654
655 2019-10-09 Christian Biesinger <cbiesinger@google.com>
656
657 * guile/guile.c (guile_extension_script_ops): Remove forward
658 declaration and mark as static.
659 (guile_script_ops): Likewise.
660 (extension_language_guile): Move further down in the file so
661 it can reference the definitions for guile_{extension_,}script_ops.
662
663 2019-10-09 Andreas Arnez <arnez@linux.ibm.com>
664
665 * s390-tdep.c (390_process_record): Handle new arch13 instructions
666 except SORTL, DFLTCC, and KDSA.
667
668 2019-10-08 Tom Tromey <tromey@adacore.com>
669
670 * windows-nat.c (struct windows_thread_info_struct) <sf>: Remove.
671 (struct safe_symbol_file_add_args): Remove.
672
673 2019-10-08 Tom Tromey <tromey@adacore.com>
674
675 * windows-nat.c: Don't include buildsym-legacy.h.
676
677 2019-10-08 Tom Tromey <tromey@adacore.com>
678
679 * contrib/ari/gdb_ari.sh (%p): Allow gdb-specific %p extensions.
680
681 2019-10-08 Christian Biesinger <cbiesinger@google.com>
682
683 * gdbtypes.c (overload_debug): Move comment to header.
684 * gdbtypes.h (overload_debug): Declare.
685 * valops.c: Remove declaration of overload_debug, instead
686 include gdbtypes.h.
687
688 2019-10-08 Christian Biesinger <cbiesinger@google.com>
689
690 * language.c (show_language_command): Pass lang_frame_mismatch_warn
691 through _().
692 (lang_frame_mismatch_warn): Make const, mark with N_(), and
693 move comment...
694 * language.h (lang_frame_mismatch_warn): ... here. Also add
695 declaration.
696 * top.c (lang_frame_mismatch_warn): Remove declaration.
697 (check_frame_language_change): Pass lang_frame_mismatch_warn
698 through _().
699
700 2019-10-07 Christian Biesinger <cbiesinger@google.com>
701
702 * c-lang.h (vtbl_ptr_name): Declare.
703 * cp-valprint.c (vtbl_ptr_name): Remove "extern" now that we get
704 it from the header.
705 * stabsread.c (define_symbol): Remove declaration of vtbl_ptr_name.
706
707 2019-10-07 Christian Biesinger <cbiesinger@google.com>
708
709 * charset.c (your_gdb_wchar_t_is_bogus): Replace with a
710 gdb_static_assert.
711
712 2019-10-07 Weimin Pan <weimin.pan@oracle.com>
713
714 * ../Makefile.def (dependencies): Add all-libctf to all-gdb
715 * ../Makefile.in: Add "all-gdb: maybe-all-libctf"
716 * ctfread.c: New file.
717 * ctfread.h: New file.
718 * elfread.c: Include ctfread.h.
719 (struct elfinfo text_p): New member ctfsect.
720 (elf_locate_sections): Mark CTF section.
721 (elf_symfile_read): Call elfctf_build_psymtabs.
722 * Makefile.in (LIBCTF): Add.
723 (CLIBS): Use it.
724 (CDEPS): Likewise.
725 (DIST): Add ctfread.c.
726
727 2019-10-07 Andrew Burgess <andrew.burgess@embecosm.com>
728
729 * ctfread.c (struct nextfield): Renamed to ...
730 (struct ctf_nextfield): ... this.
731 (struct field_info): Renamed to ...
732 (strut ctf_field_info): ... this.
733 (attach_fields_to_type): Update for renamed structures.
734 (ctf_add_member_cb): Likewise.
735 (ctf_add_enum_member_cb): Likewise.
736 (process_struct_members): Likewise.
737 (process_enum_type): Likewise.
738
739 2019-10-07 Weimin Pan <weimin.pan@oracle.com>
740
741 * tracectf.h: Rename, was ctf.h.
742 * tracectf.c: Rename, was ctf.c, replace ctf.h with tracectf.h.
743 * tracefile.c: Likewise.
744 * tracepoint.c: Remove unused include ctf.h.
745 * mi/mi-main.c: Likewise.
746 * Makefile.in Replace ctf.c with tracectf.c.
747
748 2019-10-06 Joel Brobecker <brobecker@adacore.com>
749
750 * version.in: Change version number to "9.0.50.DATE-git".
751
752 2019-10-03 Tom Tromey <tom@tromey.com>
753
754 PR rust/24976:
755 * dwarf2read.c (quirk_rust_enum): Handle single-element unions.
756
757 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
758
759 * f-lang.c (f_language_defn): Use cp_get_symbol_name_matcher and
760 cp_search_name_hash.
761 * NEWS: Add entry about nested function support.
762
763 2019-10-03 Bernhard Heckel <bernhard.heckel@intel.com>
764 Andrew Burgess <andrew.burgess@embecosm.com>
765
766 * cp-namespace.c (cp_search_static_and_baseclasses): Only search
767 for nested static variables when searchin VAR_DOMAIN.
768 * dwarf2read.c (add_partial_symbol): Add nested subroutines to the
769 global scope, update comment.
770 (add_partial_subprogram): Call add_partial_subprogram recursively
771 for nested subroutines when processinng Fortran.
772 (load_partial_dies): Process the child entities of a subprogram
773 when processing Fortran.
774 (partial_die_parent_scope): Handle building scope
775 for Fortran nested functions.
776 (process_die): Record that nested functions have a scope.
777 (new_symbol): Always record Fortran subprograms on the global
778 symbol list.
779 (determine_prefix): How to build the prefix for Fortran
780 subprograms.
781
782 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
783
784 * linux-nat.c (linux_nat_filter_event): Don't ignore SIGSTOP if we
785 have just sent the thread a SIGSTOP and are waiting for it to
786 arrive.
787
788 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
789
790 * btrace.c (btrace_add_pc): Remove whitespace before the template
791 parameter in 'std::vector <...>'.
792 (parse_xml_btrace_block): Likewise.
793 (btrace_maint_decode_pt): Likewise.
794 (btrace_maint_update_packets): Likewise.
795 (btrace_maint_print_packets): Likewise.
796 * btrace.h (struct btrace_maint_info): Likewise.
797 * dwarf2read.c (struct type_unit_group): Likewise.
798 (build_type_psymtabs_reader): Likewise.
799 * gdbsupport/btrace-common.c (btrace_data_append): Likewise.
800 * gdbsupport/btrace-common.h (struct btrace_data_bts): Likewise.
801 * nat/linux-btrace.c (perf_event_read_bts): Likewise.
802
803 2019-10-03 Tom de Vries <tdevries@suse.de>
804
805 * cli/cli-style.c (_initialize_cli_style): Adding a '.' at the end of
806 the first line of the help text for set/show style metadata.
807
808 2019-10-02 Tom Tromey <tromey@adacore.com>
809
810 * Makefile.in (COMMON_SFILES): Add common-inferior.c.
811 * gdbsupport/common-inferior.c: New file.
812 * infcmd.c (startup_with_shell): Don't define.
813 * nat/fork-inferior.h (startup_with_shell): Don't declare.
814 * gdbsupport/common-inferior.h (startup_with_shell): Declare.
815 * inferior.h (startup_with_shell): Don't declare.
816
817 2019-10-02 Christian Biesinger <cbiesinger@google.com>
818
819 * gdbsupport/gdb_assert.h: Include errors.h.
820 * gdbsupport/gdb_string_view.h: Include gdb_assert.h.
821
822 2019-10-02 Tom Tromey <tromey@adacore.com>
823
824 * NEWS: Add $_ada_exception entry.
825 * ada-lang.c (struct ada_catchpoint): Add constructor.
826 <m_kind>: New member.
827 (allocate_location_exception, re_set_exception): Remove
828 "ex" parameter.
829 (should_stop_exception): Compute $_ada_exception.
830 (check_status_exception, print_it_exception)
831 (print_one_exception, print_mention_exception): Remove
832 "ex" parameter.
833 (allocate_location_catch_exception, re_set_catch_exception)
834 (check_status_exception, print_it_catch_exception)
835 (print_one_catch_exception, print_mention_catch_exception)
836 (print_recreate_catch_exception)
837 (allocate_location_catch_exception_unhandled)
838 (re_set_catch_exception_unhandled)
839 (check_status_exception, print_it_catch_exception_unhandled)
840 (print_one_catch_exception_unhandled)
841 (print_mention_catch_exception_unhandled)
842 (print_recreate_catch_exception_unhandled)
843 (allocate_location_catch_assert, re_set_catch_assert)
844 (check_status_assert, print_it_catch_assert)
845 (print_one_catch_assert, print_mention_catch_assert)
846 (print_recreate_catch_assert)
847 (allocate_location_catch_handlers, re_set_catch_handlers)
848 (check_status_handlers, print_it_catch_handlers)
849 (print_one_catch_handlers, print_mention_catch_handlers)
850 (print_recreate_catch_handlers): Remove.
851 (create_ada_exception_catchpoint): Update.
852 (initialize_ada_catchpoint_ops): Update.
853
854 2019-10-02 Tom Tromey <tromey@adacore.com>
855
856 * ada-lang.c (ada_lookup_simple_minsyms): Remove.
857 (create_excep_cond_exprs): Simplify exception string computation.
858 (ada_exception_catchpoint_cond_string): Likewise.
859
860 2019-10-02 Tom Tromey <tromey@adacore.com>
861
862 * symmisc.c (dump_msymbols): Don't use MSYMBOL_VALUE_ADDRESS.
863 * ada-lang.c (lesseq_defined_than): Handle
864 LOC_STATIC.
865 * dwarf2read.c (dwarf2_per_objfile): Add can_copy
866 parameter.
867 (dwarf2_has_info): Likewise.
868 (new_symbol): Set maybe_copied on symbol when
869 appropriate.
870 * dwarf2read.h (dwarf2_per_objfile): Add can_copy
871 parameter.
872 <can_copy>: New member.
873 * elfread.c (record_minimal_symbol): Set maybe_copied
874 on symbol when appropriate.
875 (elf_symfile_read): Update call to dwarf2_has_info.
876 * minsyms.c (lookup_minimal_symbol_linkage): New
877 function.
878 * minsyms.h (lookup_minimal_symbol_linkage): Declare.
879 * symtab.c (get_symbol_address, get_msymbol_address):
880 New functions.
881 * symtab.h (get_symbol_address, get_msymbol_address):
882 Declare.
883 (SYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_ADDRESS): Handle
884 maybe_copied.
885 (struct symbol, struct minimal_symbol) <maybe_copied>:
886 New member.
887
888 2019-10-02 Tom Tromey <tromey@adacore.com>
889
890 * source.c (struct current_source_location): New.
891 (current_source_key): New global.
892 (current_source_symtab, current_source_line)
893 (current_source_pspace): Remove.
894 (get_source_location): New function.
895 (get_current_source_symtab_and_line)
896 (set_default_source_symtab_and_line)
897 (set_current_source_symtab_and_line)
898 (clear_current_source_symtab_and_line, select_source_symtab)
899 (info_source_command, print_source_lines_base)
900 (info_line_command, search_command_helper, _initialize_source):
901 Update.
902
903 2019-10-02 Tom Tromey <tromey@adacore.com>
904
905 * source.c (select_source_symtab): Don't call
906 decode_line_with_current_source.
907
908 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
909
910 * symtab.c (lookup_global_symbol): Search global block.
911
912 2019-10-02 Tom Tromey <tromey@adacore.com>
913
914 * coffread.c (process_coff_symbol): Update.
915 * dwarf2read.c (var_decode_location, new_symbol): Update.
916 * mdebugread.c (parse_symbol): Update.
917 * objfiles.c (relocate_one_symbol): Update.
918 * stabsread.c (define_symbol, fix_common_block)
919 (scan_file_globals): Update.
920 * symtab.h (SYMBOL_VALUE_ADDRESS): Expand to an rvalue.
921 (SET_SYMBOL_VALUE_ADDRESS): New macro.
922 * xcoffread.c (process_xcoff_symbol): Update.
923
924 2019-10-02 Andreas Arnez <arnez@linux.ibm.com>
925
926 * MAINTAINERS: Update my email address.
927
928 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
929
930 * dwarf2read.c (struct type_unit_group) <tus>: Convert to
931 std::vector.
932 (build_type_psymtabs_reader): Update for std::vector.
933 (build_type_psymtab_dependencies): Likewise.
934 * dwarf2read.h: Remove use of DEF_VEC_P.
935 (typedef sig_type_ptr): Delete.
936
937 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
938
939 * btrace.c (btrace_maint_clear): Update to handle change from VEC
940 to std::vector.
941 (btrace_maint_decode_pt): Likewise, and move allocation of the
942 vector outside of the loop.
943 (btrace_maint_update_packets): Update to handle change from VEC to
944 std::vector.
945 (btrace_maint_print_packets): Likewise.
946 (maint_info_btrace_cmd): Likewise.
947 * btrace.h: Remove use of DEF_VEC_O.
948 (typedef btrace_pt_packet_s): Delete.
949 (struct btrace_maint_info) <packets>: Change fromm VEC to
950 std::vector.
951 * gdbsupport/btrace-common.h: Remove 'vec.h' include.
952
953 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
954
955 * btrace.c (btrace_compute_ftrace_bts): Update for std::vector,
956 make accesses into the vector constant references.
957 (btrace_add_pc): Update for std::vector.
958 (btrace_stitch_bts): Likewise.
959 (parse_xml_btrace_block): Likewise.
960 (btrace_maint_update_packets): Likewise.
961 (btrace_maint_print_packets): Likewise.
962 (maint_info_btrace_cmd): Likewise.
963 * gdbsupport/btrace-common.c (btrace_data::fini): Update for
964 std::vector.
965 (btrace_data::empty): Likewise.
966 (btrace_data_append): Likewise.
967 * gdbsupport/btrace-common.h: Remove use of DEF_VEC_O.
968 (typedef btrace_block_s): Delete.
969 (struct btrace_block): Add constructor.
970 (struct btrace_data_bts) <blocks>: Change to std::vector.
971 * nat/linux-btrace.c (perf_event_read_bts): Update for
972 std::vector.
973 (linux_read_bts): Likewise.
974
975 2019-10-01 Tom Tromey <tom@tromey.com>
976
977 * cli/cli-logging.c (show_logging_filename): Use styled_string.
978
979 2019-10-01 Tom Tromey <tom@tromey.com>
980
981 * stack.c (print_frame, info_frame_command_core): Use
982 styled_string.
983 * linux-thread-db.c (try_thread_db_load_1)
984 (try_thread_db_load_from_pdir_1): Use styled_string.
985 * auto-load.c (file_is_auto_load_safe, execute_script_contents)
986 (auto_load_section_scripts, info_auto_load_local_gdbinit)
987 (maybe_print_unsupported_script_warning)
988 (maybe_print_script_not_found_warning): Use styled_string.
989 * ada-lang.c (user_select_syms): Use styled_string.
990
991 2019-10-01 Tom Tromey <tom@tromey.com>
992
993 * p-lang.c (pascal_printstr): Use metadata style.
994 * value.c (show_convenience): Use metadata style.
995 * valprint.c (valprint_check_validity, val_print_optimized_out)
996 (val_print_not_saved, val_print_unavailable)
997 (val_print_invalid_address, generic_val_print, val_print)
998 (value_check_printable, val_print_array_elements): Use metadata
999 style.
1000 * ui-out.h (class ui_out) <field_fmt>: New overload.
1001 <do_field_fmt>: Add style parameter.
1002 * ui-out.c (ui_out::field_fmt): New overload.
1003 * typeprint.c (type_print_unknown_return_type)
1004 (val_print_not_allocated, val_print_not_associated): Use metadata
1005 style.
1006 * tui/tui-out.h (class tui_ui_out) <do_field_fmt>: Add style
1007 parameter.
1008 * tui/tui-out.c (tui_ui_out::do_field_fmt): Update.
1009 * tracepoint.c (tvariables_info_1): Use metadata style.
1010 * stack.c (print_frame_arg, print_frame_info, print_frame)
1011 (info_frame_command_core): Use metadata style.
1012 * skip.c (info_skip_command): Use metadata style.
1013 * rust-lang.c (rust_print_enum): Use metadata style.
1014 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
1015 metadata style.
1016 * python/py-framefilter.c (py_print_single_arg): Use metadata
1017 style.
1018 * printcmd.c (do_one_display, print_variable_and_value): Use
1019 metadata style.
1020 * p-valprint.c (pascal_val_print)
1021 (pascal_object_print_value_fields): Use metadata style.
1022 * p-typeprint.c (pascal_type_print_base): Use metadata style.
1023 * mi/mi-out.h (class mi_ui_out) <do_field_fmt>: Add style
1024 parameter.
1025 * mi/mi-out.c (mi_ui_out::do_field_fmt): Update.
1026 * m2-valprint.c (m2_print_long_set): Use metadata style.
1027 * m2-typeprint.c (m2_print_type): Use metadata style.
1028 * infcmd.c (print_return_value_1): Use metadata style.
1029 * gnu-v3-abi.c (print_one_vtable): Use metadata style.
1030 * f-valprint.c (info_common_command_for_block): Use metadata
1031 style.
1032 * f-typeprint.c (f_type_print_base): Use metadata style.
1033 * expprint.c (print_subexp_standard): Use metadata style.
1034 * cp-valprint.c (cp_print_value_fields): Use metadata style.
1035 * cli/cli-style.h (class cli_style_option): Add constructor.
1036 (metadata_style): Declare.
1037 * cli/cli-style.c (metadata_style): New global.
1038 (_initialize_cli_style): Register metadata style.
1039 * cli-out.h (class cli_ui_out) <do_field_fmt>: Add style
1040 parameter.
1041 * cli-out.c (cli_ui_out::do_field_fmt): Update.
1042 * c-typeprint.c (c_type_print_base_struct_union)
1043 (c_type_print_base_1): Use metadata style.
1044 * breakpoint.c (watchpoint_value_print)
1045 (print_one_breakpoint_location): Use metadata style.
1046 * break-catch-syscall.c (print_one_catch_syscall): Use metadata
1047 style.
1048 * break-catch-sig.c (signal_catchpoint_print_one): Use metadata
1049 style.
1050 * ada-valprint.c (val_print_packed_array_elements, printstr)
1051 (print_field_values, ada_val_print_ref, ada_val_print): Use
1052 metadata style.
1053 * ada-typeprint.c (print_array_type, ada_print_type): Use metadata
1054 style.
1055 * ada-tasks.c (print_ada_task_info, info_task): Use metadata
1056 style.
1057 * ada-lang.c (user_select_syms): Use metadata style.
1058
1059 2019-10-01 Tom Tromey <tom@tromey.com>
1060
1061 * cli/cli-cmds.c (pwd_command): Style output.
1062
1063 2019-10-01 Pedro Alves <palves@redhat.com>
1064 Tom Tromey <tom@tromey.com>
1065
1066 * symtab.c (print_symbol_info): Use %ps.
1067 (print_msymbol_info): Use %ps.
1068 * symfile.c (symbol_file_add_with_addrs): Use %ps.
1069 * printcmd.c (print_variable_and_value): Use %ps.
1070 * macrocmd.c (show_pp_source_pos): Use %ps.
1071 * infrun.c (print_exited_reason): Use ui_out::message.
1072 * breakpoint.c (watchpoint_check, print_one_breakpoint_location)
1073 (describe_other_breakpoints): Use ui_out::message and new
1074 formats.
1075 (say_where): Use new formats.
1076 (bkpt_print_it, tracepoint_print_one_detail): Use ui_out::message
1077 and new formats.
1078
1079 2019-10-01 Pedro Alves <palves@redhat.com>
1080 Tom Tromey <tom@tromey.com>
1081
1082 * unittests/format_pieces-selftests.c: Add gdb_format parameter.
1083 (test_gdb_formats): New function.
1084 (run_tests): Call it.
1085 (test_format_specifier): Update.
1086 * utils.h (fputs_filtered): Update comment.
1087 (vfprintf_styled, vfprintf_styled_no_gdbfmt)
1088 (fputs_styled_unfiltered): Declare.
1089 * utils.c (fputs_styled_unfiltered): New function.
1090 (vfprintf_maybe_filtered): Add gdbfmt parameter.
1091 (vfprintf_filtered): Update.
1092 (vfprintf_unfiltered, vprintf_filtered): Update.
1093 (vfprintf_styled, vfprintf_styled_no_gdbfmt): New functions.
1094 * ui-out.h (enum ui_out_flag) <unfiltered_output,
1095 disallow_ui_out_field>: New constants.
1096 (enum class field_kind): New.
1097 (struct base_field_s, struct signed_field_s): New.
1098 (signed_field): New function.
1099 (struct string_field_s): New.
1100 (string_field): New function.
1101 (struct styled_string_s): New.
1102 (styled_string): New function.
1103 (class ui_out) <message>: Add comment.
1104 <vmessage, call_do_message>: New methods.
1105 <do_message>: Add style parameter.
1106 * ui-out.c (ui_out::call_do_message, ui_out::vmessage): New
1107 methods.
1108 (ui_out::message): Rewrite.
1109 * mi/mi-out.h (class mi_ui_out) <do_message>: Add style
1110 parameter.
1111 * mi/mi-out.c (mi_ui_out::do_message): Add style parameter.
1112 * gdbsupport/format.h (class format_pieces) <format_pieces>: Add
1113 gdb_extensions parameter.
1114 (class format_piece): Add parameter to constructor.
1115 (n_int_args): New field.
1116 * gdbsupport/format.c (format_pieces::format_pieces): Add
1117 gdb_extensions parameter. Handle '*'.
1118 * cli-out.h (class cli_ui_out) <do_message>: Add style parameter.
1119 * cli-out.c (cli_ui_out::do_message): Add style parameter. Call
1120 vfprintf_styled_no_gdbfmt.
1121 (cli_ui_out::do_field_string, cli_ui_out::do_spaces)
1122 (cli_ui_out::do_text, cli_ui_out::field_separator): Allow
1123 unfiltered output.
1124 * ui-style.h (struct ui_file_style) <ptr>: New method.
1125
1126 2019-10-01 Tom Tromey <tom@tromey.com>
1127
1128 * unittests/format_pieces-selftests.c: Update. Add final format.
1129 * gdbsupport/format.c (format_pieces::format_pieces): Don't add
1130 empty literal pieces.
1131
1132 2019-10-01 Tom Tromey <tom@tromey.com>
1133
1134 * ui-out.h (enum class ui_out_style_kind): Remove.
1135 (class ui_out) <field_string, field_stsream, do_field_string>:
1136 Change type of "style".
1137 * ui-out.c (ui_out::field_core_addr, ui_out::field_stream)
1138 (ui_out::field_string): Update.
1139 * tui/tui-out.h (class tui_ui_out) <do_field_string>: Change type
1140 of "style".
1141 * tui/tui-out.c (tui_ui_out::do_field_string): Update.
1142 * tracepoint.c (print_one_static_tracepoint_marker): Update.
1143 * stack.c (print_frame_arg, print_frame_info, print_frame):
1144 Update.
1145 * source.c (print_source_lines_base): Update.
1146 * solib.c (info_sharedlibrary_command): Update.
1147 * skip.c (info_skip_command): Update.
1148 * record-btrace.c (btrace_call_history_src_line)
1149 (btrace_call_history): Update.
1150 * python/py-framefilter.c (py_print_frame): Update.
1151 * mi/mi-out.h (class mi_ui_out) <do_field_string>: Change type of
1152 "style".
1153 * mi/mi-out.c (mi_ui_out::do_table_header)
1154 (mi_ui_out::do_field_signed, mi_ui_out::do_field_unsigned)
1155 (mi_ui_out::do_field_string): Update.
1156 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
1157 Update.
1158 * cli-out.h (class cli_ui_out) <do_field_string>: Change type of
1159 "style".
1160 * cli-out.c (cli_ui_out::do_table_header)
1161 (cli_ui_out::do_field_signed, cli_ui_out::do_field_unsigned)
1162 (cli_ui_out::do_field_skip, cli_ui_out::do_field_string)
1163 (cli_ui_out::do_field_fmt): Update.
1164 * breakpoint.c (print_breakpoint_location): Update.
1165 (update_static_tracepoint): Update.
1166
1167 2019-10-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1168
1169 * main.c (relocate_gdbinit_path_maybe_in_datadir): Remove std::string
1170 conversion of gdb_datadir.
1171 (captured_main_1): Remove xstrdup when assigning to gdb_datadir,
1172 remove not needed c_str ().
1173
1174 2019-09-30 Ali Tamur <tamur@google.com>
1175
1176 * dwarf2read.c (skip_one_die): Handle DW_FORM_strx forms.
1177 (dwarf2_string_attr): Likewise.
1178
1179 2019-09-30 Ali Tamur <tamur@google.com>
1180
1181 * dwarf2read.c (process_full_comp_unit): Remove whitespace at the EOL.
1182 (process_full_type_unit): Likewise.
1183 (dump_die_shallow): Likewise.
1184 (cu_debug_loc_section): Likewise.
1185
1186 2019-09-28 Christian Biesinger <cbiesinger@google.com>
1187
1188 * minsyms.c (compare_minimal_symbols): Rename to...
1189 (minimal_symbol_is_less_than): ...this, and adjust to STL
1190 conventions (return bool, take arguments as references)
1191 (minimal_symbol_reader::install): Call std::sort instead
1192 of qsort.
1193
1194 2019-09-29 Christian Biesinger <cbiesinger@google.com>
1195
1196 * minsyms.h (msymbol_hash): Document that this is a case-insensitive
1197 hash and why.
1198 * objfiles.h (struct objfile_per_bfd_storage) <demangled_names_hash,
1199 msymbol_hash, msymbol_demangled_hash>: Improve comments.
1200
1201 2019-09-30 Simon Marchi <simon.marchi@polymtl.ca>
1202
1203 * psymtab.c (add_psymbol_to_list): Move comment to psympriv.h.
1204 * psympriv.h (add_psymbol_to_list): Move comment here and update
1205 it.
1206
1207 2019-09-29 Tom de Vries <tdevries@suse.de>
1208
1209 * contrib/cc-with-tweaks.sh (get_tmpdir): New function.
1210 Use $tmpdir/$(basename "$output_file").dwz instead of
1211 "${output_file}.dwz".
1212
1213 2019-09-28 Simon Marchi <simon.marchi@polymtl.ca>
1214
1215 PR gdb/25045
1216 * hppa-linux-nat.c: Include gdbarch.h.
1217
1218 2019-09-26 Christian Biesinger <cbiesinger@google.com>
1219
1220 * blockframe.c (find_pc_partial_function): Change return type to bool.
1221 * elfread.c (elf_gnu_ifunc_resolve_name): Likewise.
1222 * minsyms.c (in_gnu_ifunc_stub): Likewise.
1223 (stub_gnu_ifunc_resolve_name): Likewise.
1224 * symtab.c (compare_filenames_for_search): Likewise.
1225 (compare_glob_filenames_for_search): Likewise.
1226 (matching_obj_sections): Likewise.
1227 (symbol_matches_domain): Likewise.
1228 (find_line_symtab): Change out param EXACT_MATCH to bool *.
1229 (find_line_pc): Change return type to bool.
1230 (find_line_pc_range): Likewise.
1231 (producer_is_realview): Likewise.
1232 * symtab.h (symbol_matches_domain): Likewise.
1233 (find_pc_partial_function): Likewise.
1234 (find_pc_line_pc_range): Likewise.
1235 (in_gnu_ifunc_stub): Likewise.
1236 (struct gnu_ifunc_fns) <gnu_ifunc_resolve_name>: Likewise.
1237 (find_line_pc): Likewise.
1238 (find_line_pc_range): Likewise.
1239 (matching_obj_sections): Likewise.
1240 (find_line_symtab): Change out parameter to bool.
1241 (producer_is_realview): Change return type to bool.
1242 (compare_filenames_for_search): Likewise.
1243 (compare_glob_filenames_for_search): Likewise.
1244
1245 2019-09-26 Tom Tromey <tom@tromey.com>
1246
1247 * Makefile.in (COMMON_SFILES): Remove gdb_usleep.c.
1248 (HFILES_NO_SRCDIR): Remove gdb_usleep.h.
1249 * gdb_usleep.h: Remove.
1250 * gdb_usleep.c: Remove.
1251 * utils.c: Don't include gdb_usleep.h.
1252
1253 2019-09-26 Tom Tromey <tromey@adacore.com>
1254
1255 * python/py-type.c (type_to_type_object): Call check_typedef
1256 for stub types.
1257
1258 2019-09-26 Tom Tromey <tom@tromey.com>
1259
1260 * utils.h (initialize_utils): Don't declare.
1261 * top.c (gdb_init): Don't call initialize_utils.
1262 * utils.c (initialize_utils): Remove. Move contents...
1263 (_initialize_utils): ... here.
1264
1265 2019-09-25 Tom Tromey <tom@tromey.com>
1266
1267 * python/py-objfile.c (objfpy_get_build_id): Use bin2hex.
1268 * utils.h (make_hex_string): Don't declare.
1269 * utils.c (make_hex_string): Remove.
1270
1271 2019-09-24 Tom de Vries <tdevries@suse.de>
1272
1273 PR gdb/23815
1274 * amd64-linux-nat.c (amd64_linux_nat_target::fetch_registers):
1275 Initialize xstateregs before ptrace PTRACE_GETREGSET call.
1276
1277 2019-09-23 Dimitar Dimitrov <dimitar@dinux.eu>
1278
1279 * NEWS: Mention new simulator port for PRU.
1280
1281 2019-09-23 Christian Biesinger <cbiesinger@google.com>
1282
1283 * ada-exp.y (write_object_remaining): Update.
1284 * ada-lang.c (ada_decode): Return a std::string instead of a char*
1285 and eliminate the static buffer.
1286 (ada_decode_symbol): Update.
1287 (ada_la_decode): Update.
1288 (ada_sniff_from_mangled_name): Update.
1289 (is_valid_name_for_wild_match): Update.
1290 (ada_lookup_name_info::matches): Update and simplify.
1291 (name_matches_regex): Update.
1292 (ada_add_global_exceptions): Update.
1293 * ada-lang.h (ada_decode): Update signature.
1294 * ada-varobj.c (ada_varobj_describe_simple_array_child): Update.
1295 * dwarf-index-write.c (debug_names::insert): Update.
1296
1297 2019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
1298
1299 * solib-svr4.c (svr4_iterate_over_objfiles_in_search_order): Fix
1300 formatting.
1301
1302 2019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
1303
1304 * breakpoint.h (bp_location) <inserted, permanent, duplicate>:
1305 Change "nonzero" to "true" in documentation.
1306
1307 2019-09-20 Christian Biesinger <cbiesinger@google.com>
1308
1309 * solib-darwin.c (darwin_lookup_lib_symbol): Remove.
1310 (_initialize_darwin_solib): Don't set
1311 darwin_so_ops.lookup_lib_global_symbol.
1312 * solib-svr4.c (set_solib_svr4_fetch_link_map_offsets): Call
1313 set_gdbarch_iterate_over_objfiles_in_search_order.
1314 (elf_lookup_lib_symbol): Rename to...
1315 (svr4_iterate_over_objfiles_in_search_order): this, and update
1316 to iterate semantics.
1317 (_initialize_svr4_solib): Don't set lookup_lib_global_symbol.
1318 * solib.c (solib_global_lookup): Remove.
1319 * solist.h (struct target_so_ops): Remove lookup_lib_global_symbol.
1320 (solib_global_lookup): Remove.
1321 * symtab.c (lookup_global_or_static_symbol): Remove call to
1322 solib_global_lookup.
1323
1324 2019-09-20 Joel Brobecker <brobecker@adacore.com>
1325
1326 * NEWS: Move entries about default MI version now being
1327 version 3, and about the GDB/MI fix for multi-location
1328 breakpoints to the "since GDB 8.3" section.
1329
1330 2019-09-20 Joel Brobecker <brobecker@adacore.com>
1331
1332 GDB 8.3.1 released.
1333
1334 2019-09-20 Ulrich Weigand <uweigand@de.ibm.com>
1335
1336 * NEWS: Mention that Cell/B.E. debugging support was removed.
1337 * MAINTAINERS: Remove spu target.
1338
1339 * config/djgpp/fnchange.lst: Remove entries for removed files.
1340
1341 * Makefile.in (ALL_TARGET_OBS): Remove solib-spu.o,
1342 spu-multiarch.o, and spu-tdep.o.
1343 (HFILES_NO_SRCDIR): Remove solib-spu.h and spu-tdep.h.
1344 (ALLDEPFILES): Remove solib-spu.c, spu-linux-nat.c,
1345 spu-multiarch.c, and spu-tdep.c.
1346 * spu-linux-nat.c: Remove file.
1347 * spu-multiarch.c: Remove file.
1348 * spu-tdep.c: Remove file.
1349 * spu-tdep.h: Remove file.
1350 * solib-spu.c: Remove file.
1351 * solib-spu.h: Remove file.
1352
1353 * configure.host (powerpc64*-*-linux*): Remove Cell/B.E. support.
1354 * configure.nat (spu-linux): Remove.
1355 * configure.tgt (powerpc*-*-linux*): Remove solib-spu.o and
1356 solib-multiarch.o from gdb_target_obs.
1357 (spu*-*-*): Remove.
1358
1359 * arch/ppc-linux-common.h (struct ppc_linux_features): Remove "cell"
1360 feature flag.
1361 (ppc_linux_no_features): Update.
1362 * arch/ppc-linux-common.c (ppc_linux_match_description): Remove
1363 Cell/B.E. support.
1364 * arch/ppc-linux-tdesc.h (tdesc_powerpc_cell32l): Remove declaration.
1365 (tdesc_powerpc_cell64l): Likewise.
1366 * nat/ppc-linux.h (PPC_FEATURE_CELL): Remove.
1367 * ppc-linux-nat.c (ppc_linux_nat_target::read_description): Remove
1368 Cell/B.E. support.
1369 * ppc-linux-tdep.h: Do not include "solib-spu.h" or "spu-tdep.h".
1370 Do not include "features/rs6000/powerpc-cell32l.c" or
1371 "features/rs6000/powerpc-cell64l.c".
1372 (ppc_linux_spu_section): Remove.
1373 (ppc_linux_core_read_description): Remove Cell/B.E. support.
1374 (spe_context_objfile, spe_context_lm_addr, spe_context_offset,
1375 spe_context_cache_ptid, spe_context_cache_ptid): Remove.
1376 (ppc_linux_spe_context_lookup): Remove.
1377 (ppc_linux_spe_context_inferior_created): Remove.
1378 (ppc_linux_spe_context_solib_loaded): Remove.
1379 (ppc_linux_spe_context_solib_unloaded): Remove.
1380 (ppc_linux_spe_context): Remove.
1381 (struct ppu2spu_cache): Remove.
1382 (ppu2spu_prev_arch, ppu2spu_this_id, ppu2spu_prev_register): Remove.
1383 (struct ppu2spu_data): Remove.
1384 (ppu2spu_unwind_register, ppu2spu_sniffer, ppu2spu_dealloc_cache,
1385 ppu2spu_unwind): Remove.
1386 (ppc_linux_init_abi): Remove Cell/B.E. support.
1387 * rs6000-tdep.h (rs6000_gdbarch_init): Remove Cell/B.E. support.
1388
1389 * features/Makefile (rs6000/powerpc-cell32l-expedite): Remove.
1390 (rs6000/powerpc-cell64l-expedite): Likewise
1391 (WHICH): Remove rs6000/powerpc-cell32l and rs6000/powerpc-cell64l.
1392 (XMLTOC): Remove rs6000/powerpc-cell32l.xml and
1393 rs6000/powerpc-cell64l.xml.
1394 * features/rs6000/powerpc-cell32l.xml: Remove.
1395 * features/rs6000/powerpc-cell64l.xml: Likewise.
1396 * features/rs6000/powerpc-cell32l.c: Remove generated file.
1397 * features/rs6000/powerpc-cell64l.c: Likewise.
1398 * regformats/rs6000/powerpc-cell32l.dat: Remove generated file.
1399 * regformats/rs6000/powerpc-cell64l.dat: Likewise.
1400 * regformats/reg-spu.dat: Remove.
1401
1402 * target.h (enum target_object): Remove TARGET_OBJECT_SPU.
1403 * corelow.c (struct spuid_list): Remove.
1404 (add_to_spuid_list): Remove.
1405 (core_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
1406 * remote.c (PACKET_qXfer_spu_read, PACKET_qXfer_spu_write): Remove.
1407 (remote_protocol_features): Remove associated entries.
1408 (_initialize_remote): No longer initialize them.
1409 (remote_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
1410 * linux-nat.c (SPUFS_MAGIC): Remove.
1411 (linux_proc_xfer_spu): Remove.
1412 (spu_enumerate_spu_ids): Remove.
1413 (linux_nat_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
1414 * linux-tdep.c (-linux_spu_make_corefile_notes): Remove.
1415 (linux_make_corefile_notes): No longer call it.
1416
1417 * regcache.c (cooked_read_test): Remove bfd_arch_spu special case.
1418 (cooked_write_test): Likewise.
1419
1420 2019-09-20 Tom Tromey <tom@tromey.com>
1421
1422 * NEWS: Mention case-sensitivity of TUI commands.
1423 * tui/tui-win.c (tui_set_focus_command): Now case-sensitive.
1424 (tui_set_win_height_command, parse_scrolling_args): Likewise.
1425 * tui/tui-layout.c (tui_layout_command): Now case-sensitive.
1426
1427 2019-09-20 Tom Tromey <tom@tromey.com>
1428
1429 * tui/tui-source.c (tui_source_window::set_contents): Use
1430 make_unique_xstrdup.
1431 * tui/tui-disasm.c (tui_disasm_window::set_contents): Use
1432 make_unique_xstrdup.
1433
1434 2019-09-20 Tom Tromey <tom@tromey.com>
1435
1436 * tui/tui-data.c: Remove separator comments.
1437 * tui/tui-layout.c: Remove separator comments.
1438 * tui/tui-win.c: Remove separator comments.
1439 * tui/tui-wingeneral.c: Remove separator comments.
1440
1441 2019-09-20 Tom Tromey <tom@tromey.com>
1442
1443 * tui/tui.h (strcat_to_buf): Don't declare.
1444 * tui/tui.c (strcat_to_buf): Remove.
1445
1446 2019-09-20 Tom Tromey <tom@tromey.com>
1447
1448 * tui/tui-source.h (struct tui_source_window) <m_fullname>: Rename
1449 from "fullname".
1450 * tui/tui-source.c (tui_source_window::set_contents)
1451 (tui_source_window::location_matches_p)
1452 (tui_source_window::maybe_update): Update.
1453
1454 2019-09-20 Tom Tromey <tom@tromey.com>
1455
1456 * tui/tui-regs.h (struct tui_data_window) <get_current_group>:
1457 Update.
1458 <m_regs_content, m_regs_column_count, m_current_group>: Add "m_"
1459 prefix.
1460 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
1461 (tui_data_window::line_from_reg_element_no)
1462 (tui_data_window::first_reg_element_no_inline)
1463 (tui_data_window::show_registers)
1464 (tui_data_window::show_register_group)
1465 (tui_data_window::display_registers_from)
1466 (tui_data_window::display_registers_from_line)
1467 (tui_data_window::first_data_item_displayed)
1468 (tui_data_window::delete_data_content_windows)
1469 (tui_data_window::erase_data_content)
1470 (tui_data_window::do_scroll_vertical)
1471 (tui_data_window::refresh_window)
1472 (tui_data_window::check_register_values): Update.
1473
1474 2019-09-20 Tom Tromey <tom@tromey.com>
1475
1476 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN): Remove define.
1477 (struct tui_locator_window) <full_name, proc_name>: Now
1478 std::string.
1479 * tui/tui-stack.c (tui_locator_window::make_status_line)
1480 (tui_locator_window::set_locator_fullname)
1481 (tui_locator_window::set_locator_info): Update.
1482 * tui/tui-source.c (tui_source_window::set_contents)
1483 (tui_source_window::showing_source_p): Update.
1484
1485 2019-09-20 Tom Tromey <tom@tromey.com>
1486
1487 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
1488 Don't call tui_locator_win_info_ptr.
1489
1490 2019-09-20 Tom Tromey <tom@tromey.com>
1491
1492 * tui/tui-win.c (tui_resize_all): Don't call refresh.
1493
1494 2019-09-20 Tom Tromey <tom@tromey.com>
1495
1496 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use 1 as
1497 height for locator.
1498 * tui/tui-stack.c (tui_locator_window::rerender): Call scrollok.
1499 * tui/tui-layout.c (show_source_disasm_command, show_data)
1500 (show_source_or_disasm_and_command): Use 1 as height for locator.
1501
1502 2019-09-20 Tom Tromey <tom@tromey.com>
1503
1504 * tui/tui.c (tui_enable): Update.
1505 * tui/tui-win.c (tui_sigwinch_handler, tui_async_resize_screen):
1506 Update.
1507 * tui/tui-data.h (tui_win_resized, tui_set_win_resized_to):
1508 Update.
1509 * tui/tui-data.c (win_resized): Now bool.
1510 (tui_win_resized): Return bool.
1511 (tui_set_win_resized_to): Accept a bool.
1512
1513 2019-09-20 Tom Tromey <tom@tromey.com>
1514
1515 * tui/tui-regs.h (struct tui_data_window) <show_register_group>:
1516 Change type of "refresh_values_only".
1517 * tui/tui-regs.c (tui_data_window::show_register_group): Change
1518 type of "refresh_values_only".
1519
1520 2019-09-20 Tom Tromey <tom@tromey.com>
1521
1522 * tui/tui-disasm.c (struct tui_asm_line) <addr_string, insn>: Now
1523 std::string.
1524 (tui_disassemble): Add "pos" parameter.
1525 (tui_disasm_window::set_contents): Simplify.
1526
1527 2019-09-20 Tom Tromey <tom@tromey.com>
1528
1529 * tui/tui-winsource.h (struct tui_source_window_base)
1530 <show_source_content>: Now private.
1531 * tui/tui-winsource.c
1532 (tui_source_window_base::show_source_content): Don't handle empty
1533 content case.
1534
1535 2019-09-20 Tom Tromey <tom@tromey.com>
1536
1537 * tui/tui-layout.c (show_source_disasm_command)
1538 (show_source_or_disasm_and_command): Don't call
1539 show_source_content.
1540
1541 2019-09-20 Tom Tromey <tom@tromey.com>
1542
1543 * tui/tui-stack.h (struct tui_locator_window) <make_status_line>:
1544 Declare.
1545 * tui/tui-stack.c (tui_locator_window::make_status_line): Rename
1546 from tui_make_status_line.
1547 (tui_locator_window::rerender): Update.
1548
1549 2019-09-20 Tom Tromey <tom@tromey.com>
1550
1551 * tui/tui-stack.c (tui_make_status_line): Return std::string.
1552 (tui_locator_window::rerender): Update.
1553
1554 2019-09-20 Tom Tromey <tom@tromey.com>
1555
1556 * tui/tui-winsource.h (struct tui_source_window_base)
1557 <~tui_source_window_base>: Don't declare.
1558 <fullname>: Remove.
1559 * tui/tui-winsource.c (~tui_source_window_base): Remove.
1560 * tui/tui-source.h (struct tui_source_window) <fullname>: New
1561 member.
1562 * tui/tui-source.c (tui_source_window::set_contents): Update.
1563 (tui_source_window::location_matches_p)
1564 (tui_source_window::maybe_update): Update.
1565
1566 2019-09-20 Tom Tromey <tom@tromey.com>
1567
1568 * tui/tui-winsource.h (~tui_source_element): Remove.
1569 (tui_source_element): Update.
1570 (struct tui_source_element) <line>: Now a unique_xmalloc_ptr.
1571 * tui/tui-winsource.c (tui_show_source_line): Update.
1572 * tui/tui-source.c (tui_source_window::set_contents): Update.
1573 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
1574
1575 2019-09-20 Tom Tromey <tom@tromey.com>
1576
1577 * tui/tui-data.h (tui_clear_source_windows_detail): Don't
1578 declare.
1579 * tui/tui-layout.c (tui_add_win_to_layout): Don't call
1580 tui_clear_source_windows_detail.
1581 * tui/tui-winsource.h (struct tui_source_window_base)
1582 <clear_detail>: Don't declare.
1583 * tui/tui-winsource.c (tui_source_window_base::clear_detail):
1584 Remove.
1585 * tui/tui-data.c (tui_clear_source_windows_detail): Remove.
1586
1587 2019-09-20 Tom Tromey <tromey@adacore.com>
1588
1589 PR ada/24919:
1590 * block.c (contained_in): Fix final return value.
1591
1592 2019-09-20 Alan Modra <amodra@gmail.com>
1593
1594 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Use bfd_set_usrdata.
1595 * dwarf2read.c (dwarf2_read_gdb_index, dwarf2_read_debug_names),
1596 (read_indirect_string_from_dwz): Use bfd accessor.
1597 * dwarf2read.h (struct dwz_file <filename>): Likewise.
1598 * machoread.c (macho_symfile_read_all_oso): Likewise.
1599 * solib.c (solib_bfd_open): Likewise.
1600
1601 2019-09-19 Christian Biesinger <cbiesinger@google.com>
1602
1603 * eval.c: Move declaration of overload_resolution to...
1604 * value.h: ...here.
1605
1606 2019-09-19 Christian Biesinger <cbiesinger@google.com>
1607
1608 * arm-linux-nat.c: Remove extern declaration for arm_apcs_32.
1609 * arm-linux-tdep.c: Likewise.
1610 * arm-nbsd-nat.c: Likewise.
1611 * arm-tdep.h: Declare arm_apcs_32.
1612 * arm-tdep.c: Move documentation for arm_apcs_32 to arm-tdep.h.
1613
1614 2019-09-19 Christian Biesinger <cbiesinger@google.com>
1615
1616 * dwarf2loc.c: Remove extern declaration of dwarf_always_disassemble.
1617 * dwarf2read.h: Declare dwarf_always_disassemble.
1618
1619 2019-09-19 Tom de Vries <tdevries@suse.de>
1620
1621 PR gdb/25009
1622 * source-cache.c (source_cache::ensure): Catch exception thrown during
1623 construction of the highlighter.
1624
1625 2019-09-18 Alan Modra <amodra@gmail.com>
1626
1627 * aarch64-linux-tdep.c, * arm-tdep.c, * auto-load.c,
1628 * coff-pe-read.c, * coffread.c, * corelow.c, * dbxread.c,
1629 * dicos-tdep.c, * dwarf2-frame.c, * dwarf2read.c, * elfread.c,
1630 * exec.c, * fbsd-tdep.c, * gcore.c, * gdb_bfd.c, * gdb_bfd.h,
1631 * hppa-tdep.c, * i386-cygwin-tdep.c, * i386-fbsd-tdep.c,
1632 * i386-linux-tdep.c, * jit.c, * linux-tdep.c, * machoread.c,
1633 * maint.c, * mdebugread.c, * minidebug.c, * mips-linux-tdep.c,
1634 * mips-sde-tdep.c, * mips-tdep.c, * mipsread.c, * nto-tdep.c,
1635 * objfiles.c, * objfiles.h, * osabi.c, * ppc-linux-tdep.c,
1636 * ppc64-tdep.c, * record-btrace.c, * record-full.c, * remote.c,
1637 * rs6000-aix-tdep.c, * rs6000-tdep.c, * s390-linux-tdep.c,
1638 * s390-tdep.c, * solib-aix.c, * solib-dsbt.c, * solib-frv.c,
1639 * solib-spu.c, * solib-svr4.c, * solib-target.c,
1640 * spu-linux-nat.c, * spu-tdep.c, * symfile-mem.c, * symfile.c,
1641 * symmisc.c, * symtab.c, * target.c, * windows-nat.c,
1642 * xcoffread.c, * cli/cli-dump.c, * compile/compile-object-load.c,
1643 * mi/mi-interp.c: Update throughout for bfd section macro and
1644 function changes.
1645 * gcore (gcore_create_callback): Use bfd_set_section_lma.
1646 * spu-tdep.c (spu_overlay_new_objfile): Likewise.
1647
1648 2019-09-18 Tom Tromey <tom@tromey.com>
1649
1650 * NEWS: Add entry.
1651 * tui/tui.c (tui_initialize_readline): Set name of keymap. Do not
1652 call rl_initialize.
1653 (tui_enable): Do not call rl_initialize.
1654
1655 2019-09-18 Christian Groessler <chris@groessler.org>
1656
1657 * alpha-linux-nat.c: Include gdbarch.h.
1658
1659 2019-09-18 Simon Marchi <simon.marchi@polymtl.ca>
1660
1661 * ui-file.c: Include cli/cli-style.h.
1662 (term_cli_styling): Remove cli_styling declaration.
1663
1664 2019-09-18 Alan Modra <amodra@gmail.com>
1665
1666 * arm-tdep.c (arm_record_special_symbol): Update bfd_get_section
1667 to bfd_asymbol_section.
1668
1669 2019-09-18 Alan Modra <amodra@gmail.com>
1670
1671 * amd64-dicos-tdep.c (amd64_dicos_osabi_sniffer): Constify target.
1672 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
1673 * i386-dicos-tdep.c (i386_dicos_osabi_sniffer): Likewise.
1674
1675 2019-09-18 Alan Modra <amodra@gmail.com>
1676
1677 * solib-spu.c (spu_bfd_open): Use bfd_set_filename.
1678 * spu-linux-nat.c (spu_bfd_open): Likewise.
1679
1680 2019-09-18 Christian Biesinger <cbiesinger@google.com>
1681
1682 * dwarf2loc.c: Change extern declaration of dwarf_always_disassemble
1683 to bool to match definition in dwarf2read.c.
1684
1685 2019-09-17 Christian Biesinger <cbiesinger@google.com>
1686
1687 * ada-lang.c (ada_ignore_descriptive_types_p): Change to bool.
1688 (print_signatures): Likewise.
1689 (trust_pad_over_xvs): Likewise.
1690 * arch/aarch64-insn.c (aarch64_debug): Likewise.
1691 * arch/aarch64-insn.h (aarch64_debug): Likewise.
1692 * arm-linux-nat.c (arm_apcs_32): Likewise.
1693 * arm-linux-tdep.c (arm_apcs_32): Likewise.
1694 * arm-nbsd-nat.c (arm_apcs_32): Likewise.
1695 * arm-tdep.c (arm_debug): Likewise.
1696 (arm_apcs_32): Likewise.
1697 * auto-load.c (debug_auto_load): Likewise.
1698 (auto_load_gdb_scripts): Likewise.
1699 (global_auto_load): Likewise.
1700 (auto_load_local_gdbinit): Likewise.
1701 (auto_load_local_gdbinit_loaded): Likewise.
1702 * auto-load.h (global_auto_load): Likewise.
1703 (auto_load_local_gdbinit): Likewise.
1704 (auto_load_local_gdbinit_loaded): Likewise.
1705 * breakpoint.c (disconnected_dprintf): Likewise.
1706 (breakpoint_proceeded): Likewise.
1707 (automatic_hardware_breakpoints): Likewise.
1708 (always_inserted_mode): Likewise.
1709 (target_exact_watchpoints): Likewise.
1710 (_initialize_breakpoint): Update.
1711 * breakpoint.h (target_exact_watchpoints): Change to bool.
1712 * btrace.c (maint_btrace_pt_skip_pad): Likewise.
1713 * cli/cli-cmds.c (trace_commands): Likewise.
1714 * cli/cli-cmds.h (trace_commands): Likewise.
1715 * cli/cli-decode.c (add_setshow_boolean_cmd): Change int* argument
1716 to bool*.
1717 * cli/cli-logging.c (logging_overwrite): Change to bool.
1718 (logging_redirect): Likewise.
1719 (debug_redirect): Likewise.
1720 * cli/cli-option.h (option_def) <boolean>: Change return type to bool*.
1721 (struct boolean_option_def) <get_var_address_cb_>: Change return type
1722 to bool.
1723 <boolean_option_def>: Update.
1724 (struct flag_option_def): Change default type of Context to bool
1725 from int.
1726 <flag_option_def>: Change return type of var_address_cb_ to bool*.
1727 * cli/cli-setshow.c (do_set_command): Cast to bool* instead of int*.
1728 (get_setshow_command_value_string): Likewise.
1729 * cli/cli-style.c (cli_styling): Change to bool.
1730 (source_styling): Likewise.
1731 * cli/cli-style.h (source_styling): Likewise.
1732 (cli_styling): Likewise.
1733 * cli/cli-utils.h (struct qcs_flags) <quiet, cont, silent>: Change
1734 to bool.
1735 * command.h (var_types): Update comment.
1736 (add_setshow_boolean_cmd): Change int* var argument to bool*.
1737 * compile/compile-cplus-types.c (debug_compile_cplus_types): Change to
1738 bool.
1739 (debug_compile_cplus_scopes): Likewise.
1740 * compile/compile-internal.h (compile_debug): Likewise.
1741 * compile/compile.c (compile_debug): Likewise.
1742 (struct compile_options) <raw>: Likewise.
1743 * cp-support.c (catch_demangler_crashes): Likewise.
1744 * cris-tdep.c (usr_cmd_cris_version_valid): Likewise.
1745 (usr_cmd_cris_dwarf2_cfi): Likewise.
1746 * csky-tdep.c (csky_debug): Likewise.
1747 * darwin-nat.c (enable_mach_exceptions): Likewise.
1748 * dcache.c (dcache_enabled_p): Likewise.
1749 * defs.h (info_verbose): Likewise.
1750 * demangle.c (demangle): Likewise.
1751 (asm_demangle): Likewise.
1752 * dwarf-index-cache.c (debug_index_cache): Likewise.
1753 * dwarf2-frame.c (dwarf2_frame_unwinders_enabled_p): Likewise.
1754 * dwarf2-frame.h (dwarf2_frame_unwinders_enabled_p): Likewise.
1755 * dwarf2read.c (check_physname): Likewise.
1756 (use_deprecated_index_sections): Likewise.
1757 (dwarf_always_disassemble): Likewise.
1758 * eval.c (overload_resolution): Likewise.
1759 * event-top.c (set_editing_cmd_var): Likewise.
1760 (exec_done_display_p): Likewise.
1761 * event-top.h (set_editing_cmd_var): Likewise.
1762 (exec_done_display_p): Likewise.
1763 * exec.c (write_files): Likewise.
1764 * fbsd-nat.c (debug_fbsd_lwp): Likewise
1765 (debug_fbsd_nat): Likewise.
1766 * frame.h (struct frame_print_options) <print_raw_frame_arguments>:
1767 Likewise.
1768 (struct set_backtrace_options) <backtrace_past_main>: Likewise.
1769 <backtrace_past_entry> Likewise.
1770 * gdb-demangle.h (demangle): Likewise.
1771 (asm_demangle): Likewise.
1772 * gdb_bfd.c (bfd_sharing): Likewise.
1773 * gdbcore.h (write_files): Likewise.
1774 * gdbsupport/common-debug.c (show_debug_regs): Likewise.
1775 * gdbsupport/common-debug.h (show_debug_regs): Likewise.
1776 * gdbthread.h (print_thread_events): Likewise.
1777 * gdbtypes.c (opaque_type_resolution): Likewise.
1778 (strict_type_checking): Likewise.
1779 * gnu-nat.c (gnu_debug_flag): Likewise.
1780 * guile/scm-auto-load.c (auto_load_guile_scripts): Likewise.
1781 * guile/scm-param.c (pascm_variable): Add boolval.
1782 (add_setshow_generic): Update.
1783 (pascm_param_value): Update.
1784 (pascm_set_param_value_x): Update.
1785 * hppa-tdep.c (hppa_debug): Change to bool..
1786 * infcall.c (may_call_functions_p): Likewise.
1787 (coerce_float_to_double_p): Likewise.
1788 (unwind_on_signal_p): Likewise.
1789 (unwind_on_terminating_exception_p): Likewise.
1790 * infcmd.c (startup_with_shell): Likewise.
1791 * inferior.c (print_inferior_events): Likewise.
1792 * inferior.h (startup_with_shell): Likewise.
1793 (print_inferior_events): Likewise.
1794 * infrun.c (step_stop_if_no_debug): Likewise.
1795 (detach_fork): Likewise.
1796 (debug_displaced): Likewise.
1797 (disable_randomization): Likewise.
1798 (non_stop): Likewise.
1799 (non_stop_1): Likewise.
1800 (observer_mode): Likewise.
1801 (observer_mode_1): Likewise.
1802 (set_observer_mode): Update.
1803 (sched_multi): Change to bool.
1804 * infrun.h (debug_displaced): Likewise.
1805 (sched_multi): Likewise.
1806 (step_stop_if_no_debug): Likewise.
1807 (non_stop): Likewise.
1808 (disable_randomization): Likewise.
1809 * linux-tdep.c (use_coredump_filter): Likewise.
1810 (dump_excluded_mappings): Likewise.
1811 * linux-thread-db.c (auto_load_thread_db): Likewise.
1812 (check_thread_db_on_load): Likewise.
1813 * main.c (captured_main_1): Update.
1814 * maint-test-options.c (struct test_options_opts) <flag_opt, xx1_opt,
1815 xx2_opt, boolean_opt>: Change to bool.
1816 * maint-test-settings.c (maintenance_test_settings_boolean): Likewise.
1817 * maint.c (maintenance_profile_p): Likewise.
1818 (per_command_time): Likewise.
1819 (per_command_space): Likewise.
1820 (per_command_symtab): Likewise.
1821 * memattr.c (inaccessible_by_default): Likewise.
1822 * mi/mi-main.c (mi_async): Likewise.
1823 (mi_async_1): Likewise.
1824 * mips-tdep.c (mips64_transfers_32bit_regs_p): Likewise.
1825 * nat/fork-inferior.h (startup_with_shell): Likewise.
1826 * nat/linux-namespaces.c (debug_linux_namespaces): Likewise.
1827 * nat/linux-namespaces.h (debug_linux_namespaces): Likewise.
1828 * nios2-tdep.c (nios2_debug): Likewise.
1829 * or1k-tdep.c (or1k_debug): Likewise.
1830 * parse.c (parser_debug): Likewise.
1831 * parser-defs.h (parser_debug): Likewise.
1832 * printcmd.c (print_symbol_filename): Likewise.
1833 * proc-api.c (procfs_trace): Likewise.
1834 * python/py-auto-load.c (auto_load_python_scripts): Likewise.
1835 * python/py-param.c (union parmpy_variable): Add "bool boolval" field.
1836 (set_parameter_value): Update.
1837 (add_setshow_generic): Update.
1838 * python/py-value.c (copy_py_bool_obj): Change argument from int*
1839 to bool*.
1840 * python/python.c (gdbpy_parameter_value): Cast to bool* instead of
1841 int*.
1842 * ravenscar-thread.c (ravenscar_task_support): Change to bool.
1843 * record-btrace.c (record_btrace_target::store_registers): Update.
1844 * record-full.c (record_full_memory_query): Change to bool.
1845 (record_full_stop_at_limit): Likewise.
1846 * record-full.h (record_full_memory_query): Likewise.
1847 * remote-notif.c (notif_debug): Likewise.
1848 * remote-notif.h (notif_debug): Likewise.
1849 * remote.c (use_range_stepping): Likewise.
1850 (interrupt_on_connect): Likewise.
1851 (remote_break): Likewise.
1852 * ser-tcp.c (tcp_auto_retry): Likewise.
1853 * ser-unix.c (serial_hwflow): Likewise.
1854 * skip.c (debug_skip): Likewise.
1855 * solib-aix.c (solib_aix_debug): Likewise.
1856 * spu-tdep.c (spu_stop_on_load_p): Likewise.
1857 (spu_auto_flush_cache_p): Likewise.
1858 * stack.c (struct backtrace_cmd_options) <full, no_filters, hide>:
1859 Likewise.
1860 (struct info_print_options) <quiet>: Likewise.
1861 * symfile-debug.c (debug_symfile): Likewise.
1862 * symfile.c (auto_solib_add): Likewise.
1863 (separate_debug_file_debug): Likewise.
1864 * symfile.h (auto_solib_add): Likewise.
1865 (separate_debug_file_debug): Likewise.
1866 * symtab.c (basenames_may_differ): Likewise.
1867 (struct filename_partial_match_opts) <dirname, basename>: Likewise.
1868 (struct info_print_options) <quiet, exclude_minsyms>: Likewise.
1869 (struct info_types_options) <quiet>: Likewise.
1870 * symtab.h (demangle): Likewise.
1871 (basenames_may_differ): Likewise.
1872 * target-dcache.c (stack_cache_enabled_1): Likewise.
1873 (code_cache_enabled_1): Likewise.
1874 * target.c (trust_readonly): Likewise.
1875 (may_write_registers): Likewise.
1876 (may_write_memory): Likewise.
1877 (may_insert_breakpoints): Likewise.
1878 (may_insert_tracepoints): Likewise.
1879 (may_insert_fast_tracepoints): Likewise.
1880 (may_stop): Likewise.
1881 (auto_connect_native_target): Likewise.
1882 (target_stop_and_wait): Update.
1883 (target_async_permitted): Change to bool.
1884 (target_async_permitted_1): Likewise.
1885 (may_write_registers_1): Likewise.
1886 (may_write_memory_1): Likewise.
1887 (may_insert_breakpoints_1): Likewise.
1888 (may_insert_tracepoints_1): Likewise.
1889 (may_insert_fast_tracepoints_1): Likewise.
1890 (may_stop_1): Likewise.
1891 * target.h (target_async_permitted): Likewise.
1892 (may_write_registers): Likewise.
1893 (may_write_memory): Likewise.
1894 (may_insert_breakpoints): Likewise.
1895 (may_insert_tracepoints): Likewise.
1896 (may_insert_fast_tracepoints): Likewise.
1897 (may_stop): Likewise.
1898 * thread.c (struct info_threads_opts) <show_global_ids>: Likewise.
1899 (make_thread_apply_all_options_def_group): Change argument from int*
1900 to bool*.
1901 (thread_apply_all_command): Update.
1902 (print_thread_events): Change to bool.
1903 * top.c (confirm): Likewise.
1904 (command_editing_p): Likewise.
1905 (history_expansion_p): Likewise.
1906 (write_history_p): Likewise.
1907 (info_verbose): Likewise.
1908 * top.h (confirm): Likewise.
1909 (history_expansion_p): Likewise.
1910 * tracepoint.c (disconnected_tracing): Likewise.
1911 (circular_trace_buffer): Likewise.
1912 * typeprint.c (print_methods): Likewise.
1913 (print_typedefs): Likewise.
1914 * utils.c (debug_timestamp): Likewise.
1915 (sevenbit_strings): Likewise.
1916 (pagination_enabled): Likewise.
1917 * utils.h (sevenbit_strings): Likewise.
1918 (pagination_enabled): Likewise.
1919 * valops.c (overload_resolution): Likewise.
1920 * valprint.h (struct value_print_options) <prettyformat_arrays,
1921 prettyformat_structs, vtblprint, unionprint, addressprint, objectprint,
1922 stop_print_at_null, print_array_indexes, deref_ref, static_field_print,
1923 pascal_static_field_print, raw, summary, symbol_print, finish_print>:
1924 Likewise.
1925 * windows-nat.c (new_console): Likewise.
1926 (cygwin_exceptions): Likewise.
1927 (new_group): Likewise.
1928 (debug_exec): Likewise.
1929 (debug_events): Likewise.
1930 (debug_memory): Likewise.
1931 (debug_exceptions): Likewise.
1932 (useshell): Likewise.
1933 * windows-tdep.c (maint_display_all_tib): Likewise.
1934 * xml-support.c (debug_xml): Likewise.
1935
1936 2019-09-17 Mike Gulick <mgulick@mathworks.com>
1937
1938 * source.c (prepare_path_for_appending): New function.
1939 (openp): Make use of new function.
1940 (find_and_open_source): Search for the compilation directory and
1941 source file as a relative path beneath the directory search path.
1942
1943 2019-09-17 Andrew Burgess <andrew.burgess@embecosm.com>
1944
1945 * source-cache.c (source_cache::get_line_charpos): Catch
1946 exceptions and return false, this matches the behaviour documented
1947 in the header file.
1948
1949 2019-09-17 Joel Brobecker <brobecker@adacore.com>
1950
1951 * ada-tasks.c (info_task): Remove quoting of the task's name.
1952
1953 2019-09-16 Christian Biesinger <cbiesinger@google.com>
1954
1955 * symfile.c (auto_solib_add): Replace comment with a reference
1956 to the header file.
1957
1958 2019-09-14 Christian Biesinger <cbiesinger@google.com>
1959
1960 * NEWS: Mention that gdb can now be compiled with Python 3
1961 on Windows.
1962
1963 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
1964
1965 * maint.c (maint_print_section_data::maint_print_section_data):
1966 Force use of 'float log10 (float)' by casting the argument to
1967 float.
1968
1969 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
1970
1971 * maint.c: Add 'cmath' include.
1972 (struct maint_print_section_data): New structure.
1973 (print_section_index): New function.
1974 (print_bfd_section_info): Add header comment, small whitespace
1975 cleanup, and update to call new print_section_index function.
1976 (print_objfile_section_info): Likewise.
1977 (maint_obj_section_from_bfd_section): New function.
1978 (print_bfd_section_info_maybe_relocated): New function.
1979 (maintenance_info_sections): Add header comment, always use
1980 bfd_map_over_sections instead of ALL_OBJFILE_OSECTIONS.
1981
1982 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
1983
1984 * psymtab.c (find_pc_sect_psymtab): Move baseaddr local into more
1985 inner scope, add check that the objfile has psymtabs before
1986 checking psymtabs_addrmap.
1987 * psymtab.h (psymtab_storage) <psymtabs_addrmap>: Extend comment.
1988
1989 2019-09-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1990
1991 * NEWS: Announce that Ada task names are now shown at more places,
1992 and between quotes (except in info task output).
1993 * gdb/ada-tasks.c (task_to_str): New function.
1994 (display_current_task_id): Call task_to_str.
1995 (task_command_1): Likewise.
1996 (print_ada_task_info): In non-mi mode, Properly align headers and data
1997 when task-id length is > 9 (9 is the default for a 32 bits CORE_ADDR).
1998
1999 2019-09-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2000
2001 * procfs.c (procfs_target::wait) <PR_FAULTED>: Get signal from
2002 prstatus.pr_lwp.pr_info instead of making it up.
2003
2004 2019-09-11 Christian Biesinger <cbiesinger@google.com>
2005
2006 * auto-load.c (auto_load_expand_dir_vars): Update.
2007 * defs.h (gdb_datadir): Change to std::string.
2008 (python_libdir): Likewise.
2009 (relocate_gdb_directory): Change return type to std::string.
2010 * guile/guile.c (gdbscm_data_directory): Update.
2011 (initialize_scheme_side): Update.
2012 * jit.c (jit_reader_dir): Change to std::string.
2013 (jit_reader_load_command): Update.
2014 * main.c (gdb_datadir): Change to std::string.
2015 (python_libdir): Likewise.
2016 (set_gdb_data_directory): Update.
2017 (relocate_path): Change to return std::string.
2018 (relocate_gdb_directory): Change to return std::string.
2019 (relocate_gdbinit_path_maybe_in_datadir): Update.
2020 (captured_main_1): Update.
2021 * python/python.c (do_start_initialization): Update.
2022 * top.c (show_gdb_datadir): Update.
2023 * xml-syscall.c (xml_init_syscalls_info): Update.
2024 (init_syscalls_info): Update.
2025
2026 2019-09-11 Christian Biesinger <cbiesinger@google.com>
2027
2028 * main.c (relocate_gdbinit_path_maybe_in_datadir): Factor this code
2029 out of get_init_files.
2030 (get_init_files): Update.
2031
2032 2019-09-11 Christian Biesinger <cbiesinger@google.com>
2033
2034 * main.c (get_init_files): Change to use std::string.
2035 (captured_main_1): Update.
2036 (print_gdb_help): Update.
2037
2038 2019-09-11 Ali Tamur <tamur@google.com>
2039
2040 *gdb/target-float.c (host_float_ops<T>::to_longest): Update
2041 implementation.
2042
2043 2019-09-11 Christian Biesinger <cbiesinger@google.com>
2044
2045 * dbxread.c (read_dbx_symtab): Update.
2046 * dwarf2read.c (load_partial_dies): Update.
2047 * mdebugread.c (parse_partial_symbols): Update.
2048 (handle_psymbol_enumerators): Update.
2049 * psympriv.h (add_psymbol_to_list): Change type of copy_names to bool.
2050 * psymtab.c (add_psymbol_to_bcache): Likewise.
2051 (add_psymbol_to_list): Likewise.
2052 * symtab.c (symbol_set_names): Likewise.
2053 * symtab.h (symbol_set_names): Likewise.
2054 * xcoffread.c (scan_xcoff_symtab): Update.
2055
2056 2019-09-11 Tom Tromey <tom@tromey.com>
2057
2058 * symfile-mem.c (symbol_file_add_from_memory): Use
2059 bfd_set_filename.
2060 * solib-darwin.c (darwin_bfd_open): Use bfd_set_filename.
2061 * solib-aix.c (solib_aix_bfd_open): Use bfd_set_filename.
2062
2063 2019-09-10 Tom Tromey <tromey@adacore.com>
2064
2065 * dwarf-index-write.c (write_psymbols): Extend error message.
2066 (debug_names::insert): Add Ada code.
2067 (debug_names::write_psymbols): Remove Ada check.
2068 (debug_names) <m_string_obstack>: New member.
2069 * dwarf2read.c (gdb_index_symbol_name_matcher): Remove.
2070 (gdb_index_symbol_name_matcher::matches): Remove.
2071 (mapped_index_base::find_name_components_bounds): Add "lang"
2072 parameter.
2073 (mapped_index_base::build_name_components): Also split names
2074 according to Ada syntax.
2075 (dw2_expand_symtabs_matching_symbol): Loop over languages. Change
2076 type of "match_callback".
2077 (check_match, check_find_bounds_finds)
2078 (dw2_expand_symtabs_matching): Update.
2079 (dw2_debug_names_iterator): Add new constructor.
2080 (dw2_debug_names_map_matching_symbols): New function.
2081 (dw2_debug_names_expand_symtabs_matching): Update.
2082 (dwarf2_debug_names_functions): Use
2083 dw2_debug_names_map_matching_symbols.
2084
2085 2019-09-10 Tom Tromey <tromey@adacore.com>
2086
2087 * dwarf2read.c (dw2_get_file_names_reader): Add the
2088 CU's file name to the results.
2089
2090 2019-09-10 Tom Tromey <tromey@adacore.com>
2091
2092 * ada-lang.c (add_nonlocal_symbols): Combine calls to
2093 map_matching_symbols. Update.
2094 * dwarf2read.c (dw2_map_matching_symbols): Update.
2095 * psymtab.c (match_partial_symbol): Change type; update.
2096 (psym_map_matching_symbols): Likewise.
2097 * symfile-debug.c (debug_qf_map_matching_symbols): Change
2098 type; update.
2099 * symfile.h (struct quick_symbol_functions)
2100 <map_matching_symbols>: Change "name" to be a lookup_name_info.
2101 Remove "match".
2102
2103 2019-09-10 Tom Tromey <tromey@adacore.com>
2104
2105 * psymtab.c (map_block): Remove.
2106 (psym_map_matching_symbols): Use iterate_over_symbols_terminated.
2107 * symtab.c (iterate_over_symbols_terminated): New function.
2108 * symtab.c (iterate_over_symbols_terminated): Declare.
2109
2110 2019-09-10 Tom Tromey <tromey@adacore.com>
2111
2112 * ada-lang.c (ada_iterate_over_symbols): Return bool.
2113 * language.h (struct language_defn) <la_iterate_over_symbols>:
2114 Return bool.
2115 * symtab.c (iterate_over_symbols): Return bool.
2116 * symtab.h (iterate_over_symbols): Return bool.
2117
2118 2019-09-10 Tom Tromey <tromey@adacore.com>
2119
2120 * ada-lang.c (aux_add_nonlocal_symbols): Change type.
2121 (add_nonlocal_symbols): Update.
2122 * dwarf2read.c (dw2_map_matching_symbols): Change type.
2123 * psymtab.c (map_block, psym_map_matching_symbols): Change type.
2124 * symfile-debug.c (debug_qf_map_matching_symbols): Change type.
2125 * symfile.h (struct quick_symbol_functions) <map_matching_symbols>:
2126 Change type of "callback". Remove "data".
2127
2128
2129 2019-09-09 Ali Tamur <tamur@google.com>
2130
2131 * dwarf2read.c (comp_unit_head): Update comment.
2132 (dwarf2_dwo_name): New function declaration.
2133 (dwarf_unit_type_name): New function declaration.
2134 (read_comp_unit_head): Add support for new compilation units,
2135 DW_UT_partial, DW_UT_skeleton, DW_UT_split_compile, DW_UT_split_type.
2136 Particularly, DW_UT_skeleton and DW_UT_split_compile have dwo_id
2137 (currently named as "signature") in their header. Also clarify error
2138 messages.
2139 (lookup_dwo_id): New function. Returns the dwo id of the given
2140 compile unit.
2141 (lookup_dwo_unit): Use the new lookup_dwo_id function.
2142 (init_cutu_and_read_dies): Use the new dwarf2_dwo_name and lookup_dwo_id
2143 functions.
2144 (create_dwo_cu_reader): Use the added lookup_dwo_id function.
2145 (dwarf2_dwo_name): Get the dwo name if present.
2146 (dwarf_unit_type_name): Convert DW_UT_* types to string for diagnostic
2147 purposes.
2148
2149 2019-09-09 Tom Tromey <tom@tromey.com>
2150
2151 * tui/tui-win.c (tui_all_windows_info): Use ui_out.
2152
2153 2019-09-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2154
2155 * python/python.c (do_start_initialization): Make progname_copy static,
2156 to avoid a leak report.
2157
2158 2019-09-08 Tom Tromey <tom@tromey.com>
2159
2160 * tui/tui-wingeneral.c (box_win): Truncate long window titles.
2161
2162 2019-09-07 Simon Marchi <simon.marchi@efficios.com>
2163
2164 * dwarf2read.c (struct dw2_symtab_iterator) <block_index>:
2165 Change type to gdb::optional<block_enum>.
2166 (dw2_symtab_iter_init): Change block_index parameter type
2167 to gdb::optional<block_enum>.
2168 (dw2_lookup_symbol): Change block_index parameter
2169 type to block_enum.c
2170 (dw2_debug_names_lookup_symbol): Likewise.
2171 * psymtab.c (psym_lookup_symbol): Likewise.
2172 * symfile-debug.c (debug_qf_lookup_symbol): Likewise.
2173 * symfile.h (struct quick_symbol_functions) <lookup_symbol>:
2174 Likewise.
2175
2176 2019-09-06 Christian Biesinger <cbiesinger@google.com>
2177
2178 * defs.h (relocate_gdb_directory): Change int to bool in
2179 signature and rename flag to relocatable.
2180 * main.c (relocate_path): Likewise.
2181 (relocate_gdb_directory): Likewise.
2182
2183 2019-09-06 Alan Modra <amodra@gmail.com>
2184
2185 * coffread.c (coff_symfile_read): Constify filename variable.
2186 * dbxread.c (dbx_symfile_init, coffstab_build_psymtabs),
2187 (elfstab_build_psymtabs, stabsect_build_psymtabs): Likewise.
2188 * gdb_bfd.c (gdb_bfd_close_or_warn): Likewise.
2189 * solib.c (reload_shared_libraries_1): Likewise.
2190 * symfile.c (reread_symbols): Likewise.
2191 * solib-aix.c (solib_aix_bfd_open): Add cast for xfree of filename.
2192 * solib-darwin.c (darwin_bfd_open): Likewise.
2193 * symfile-mem.c (symbol_file_add_from_memory): Likewise.
2194
2195 2019-09-03 Andrew Burgess <andrew.burgess@embecosm.com>
2196
2197 * psymtab.c (print_partial_symbols): Handle missing domain_enum
2198 values MODULE_DOMAIN and COMMON_BLOCK_DOMAIN.
2199
2200 2019-09-03 Tom Tromey <tromey@adacore.com>
2201
2202 * ada-valprint.c (ada_val_print_num): Don't recurse for range
2203 types.
2204 (has_negatives): Unbias a range type bound.
2205 * dwarf2read.c (read_subrange_type): Handle DW_AT_GNU_bias.
2206 * gdbtypes.c (operator==): Handle new field.
2207 (create_range_type): Add "bias" parameter.
2208 (create_static_range_type, resolve_dynamic_range): Update.
2209 * gdbtypes.h (struct range_bounds) <bias>: New member.
2210 (create_range_type): Add bias parameter.
2211 * printcmd.c (print_scalar_formatted): Unbias range types.
2212 * value.c (unpack_long): Unbias range types.
2213 (pack_long): Bias range types.
2214
2215 2019-09-02 Alan Hayward <alan.hayward@arm.com>
2216
2217 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Check all
2218 probe arguments.
2219
2220 2019-09-02 Alan Hayward <alan.hayward@arm.com>
2221
2222 * break-catch-throw.c (fetch_probe_arguments): Use gdbarch.
2223 * dtrace-probe.c (dtrace_probe::get_argument_count): Likewise.
2224 * probe.c (probe_safe_evaluate_at_pc) (compute_probe_arg)
2225 (compile_probe_arg): Likewise.
2226 * probe.h (get_argument_count): Likewise.
2227 * solib-svr4.c (solib_event_probe_action): Likewise.
2228 * stap-probe.c (stap_probe::get_argument_count): Likewise.
2229
2230 2019-09-02 Alan Hayward <alan.hayward@arm.com>
2231
2232 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Move
2233 code to here...
2234 (svr4_create_solib_event_breakpoints): ...from here.
2235
2236 2019-08-30 Sergio Durigan Junior <sergiodj@redhat.com>
2237
2238 * nat/fork-inferior.c (trace_start_error): Remove "\nError: "
2239 suffix from warning message.
2240
2241 2019-08-30 Tom Tromey <tom@tromey.com>
2242
2243 * tui/tui-winsource.h (struct tui_source_window_base)
2244 <refresh_all>: Don't declare.
2245 * tui/tui-winsource.c (tui_source_window_base::refresh_all):
2246 Remove.
2247 * tui/tui-win.c (tui_refresh_all_win): Don't call refresh_all or
2248 tui_show_locator_content.
2249 * tui/tui-regs.h (struct tui_data_window) <refresh_all>: Don't
2250 declare.
2251 * tui/tui-regs.c (tui_data_window::refresh_all): Remove.
2252 * tui/tui-data.h (struct tui_win_info) <refresh_all>: Don't
2253 declare.
2254
2255 2019-08-30 Tom Tromey <tom@tromey.com>
2256
2257 * tui/tui-io.c (tui_cont_sig): Don't call wrefresh.
2258
2259 2019-08-30 Tom Tromey <tom@tromey.com>
2260
2261 * tui/tui-stack.c (_initialize_tui_stack): Move later.
2262 Remove unnecessary forward declarations.
2263
2264 2019-08-30 Tom Tromey <tom@tromey.com>
2265
2266 * tui/tui-stack.c (tui_locator_window::set_locator_fullname): Call
2267 rerender.
2268 (tui_update_locator_fullname, tui_show_frame_info): Don't call
2269 tui_show_locator_content.
2270
2271 2019-08-30 Tom Tromey <tom@tromey.com>
2272
2273 * tui/tui-stack.c (tui_show_locator_content): Move lower. Rewrite.
2274 (tui_locator_window::rerender): Rewrite using body of previous
2275 tui_show_locator_content.
2276
2277 2019-08-30 Tom Tromey <tom@tromey.com>
2278
2279 * tui/tui-stack.h (struct tui_locator_window) <set_locator_info,
2280 set_locator_fullname>: New methods.
2281 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
2282 Rename from tui_set_locator_fullname.
2283 (tui_locator_window::set_locator_info): Rename from
2284 tui_set_locator_info. Return bool.
2285 (tui_update_locator_fullname, tui_show_frame_info): Update.
2286
2287 2019-08-30 Tom Tromey <tom@tromey.com>
2288
2289 * tui/tui-layout.c (show_layout): Don't call tui_refresh_all.
2290
2291 2019-08-30 Tom Tromey <tom@tromey.com>
2292
2293 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Don't
2294 call touchwin.
2295
2296 2019-08-30 Tom Tromey <tom@tromey.com>
2297
2298 * tui/tui-wingeneral.c (box_win): Assume win_info and
2299 win_info->handle cannot be NULL.
2300
2301 2019-08-30 Tom Tromey <tom@tromey.com>
2302
2303 * tui/tui-regs.h (struct tui_data_item_window) <rerender,
2304 refresh_window>: Declare.
2305 * tui/tui-regs.c (tui_data_window::display_registers_from): Call
2306 resize.
2307 (tui_data_item_window::rerender): Rename from
2308 tui_display_register.
2309 (tui_data_item_window::refresh_window): New method.
2310 * tui/tui-layout.c (tui_gen_win_info::resize): Do nothing on
2311 no-op.
2312
2313 2019-08-30 Tom Tromey <tom@tromey.com>
2314
2315 * tui/tui-regs.h (struct tui_data_window) <regs_content,
2316 regs_column_count, current_group>: Move later. Now private.
2317 <get_current_group>: New method.
2318 * tui/tui-regs.c (tui_reg_command): Update.
2319 * tui/tui-layout.c (tui_set_layout): Update.
2320
2321 2019-08-30 Tom Tromey <tom@tromey.com>
2322
2323 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
2324 (tui_data_window::rerender): Don't call
2325 check_and_display_highlight_if_needed.
2326 (tui_data_window::refresh_all): Remove call to
2327 erase_data_content.
2328
2329 2019-08-30 Tom Tromey <tom@tromey.com>
2330
2331 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
2332 (tui_data_window::display_registers_from)
2333 (tui_data_window::display_reg_element_at_line)
2334 (tui_data_window::display_registers_from_line): Remove checks of
2335 "empty".
2336
2337 2019-08-30 Tom Tromey <tom@tromey.com>
2338
2339 * tui/tui-regs.h (struct tui_data_window) <display_all_data>:
2340 Don't declare.
2341 * tui/tui-regs.c (tui_data_window::show_registers): Call
2342 rerender.
2343 (tui_data_window::rerender): Rename from display_all_data.
2344 (tui_data_window::rerender): Remove old implementation.
2345
2346 2019-08-30 Tom Tromey <tom@tromey.com>
2347
2348 * tui/tui-regs.c (tui_data_window::display_all_data): Change
2349 text.
2350 * tui/tui-data.h (NO_DATA_STRING): Remove define.
2351
2352 2019-08-29 Bernhard Wodok <barto@gmx.net>
2353 Sergio Durigan Junior <sergiodj@redhat.com>
2354
2355 PR win32/24284
2356 * mingw-hdep.c (gdb_select): Handle case when 'n' is zero.
2357
2358 2019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
2359
2360 * symtab.c (search_symbols): Don't include MODULE_DOMAIN symbols
2361 when searching for types.
2362
2363 2019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
2364
2365 * f-lang.c (f_language_defn): Use f_print_typedef.
2366 * f-lang.h (f_print_typedef): Declare.
2367 * f-typeprint.c (f_print_typedef): Define.
2368
2369 2019-08-27 Christian Biesinger <cbiesinger@google.com>
2370
2371 * nat/linux-namespaces.c (mnsh_main): Initialize fd (to -1).
2372
2373 2019-08-27 Andrew Burgess <andrew.burgess@embecosm.com>
2374
2375 * cli/cli-utils.c (info_print_options_defs): Delete.
2376 (make_info_print_options_def_group): Delete.
2377 (extract_info_print_options): Delete.
2378 (info_print_command_completer): Delete.
2379 (info_print_args_help): Add extra parameter, and optionally
2380 include text about -n flag.
2381 * cli/cli-utils.h (struct info_print_options): Delete.
2382 (extract_info_print_options): Delete declaration.
2383 (info_print_command_completer): Delete declaration.
2384 (info_print_args_help): Add extra parameter, extend header
2385 comment.
2386 * python/python.c (gdbpy_rbreak): Pass additional parameter to
2387 search_symbols.
2388 * stack.c (struct info_print_options): New type.
2389 (info_print_options_defs): New file scoped variable.
2390 (make_info_print_options_def_group): New static function.
2391 (info_print_command_completer): New static function.
2392 (info_locals_command): Update to use new local functions.
2393 (info_args_command): Likewise.
2394 (_initialize_stack): Add extra parameter to calls to
2395 info_print_args_help.
2396 * symtab.c (search_symbols): Add extra parameter, use this to
2397 possibly excluse non-debug symbols.
2398 (symtab_symbol_info): Add extra parameter, which is passed on to
2399 search_symbols.
2400 (struct info_print_options): New type.
2401 (info_print_options_defs): New file scoped variable.
2402 (make_info_print_options_def_group): New static function.
2403 (info_print_command_completer): New static function.
2404 (info_variables_command): Update to use local functions, and pass
2405 extra parameter through to symtab_symbol_info.
2406 (info_functions_command): Likewise.
2407 (info_types_command): Pass additional argument through to
2408 symtab_symbol_info.
2409 (rbreak_command): Pass extra argument to search_symbols.
2410 (_initialize_symtab): Add extra arguments for calls to
2411 info_print_args_help, and update help text for 'info variables',
2412 'whereis', and 'info functions' commands.
2413 * symtab.h (search_symbols): Add extra argument to declaration.
2414 * NEWS: Mention new flags.
2415
2416 2019-08-26 Christian Biesinger <cbiesinger@google.com>
2417
2418 * symtab.c (lookup_static_symbol): Call the new function (and move
2419 it down to be next to lookup_global_symbol).
2420 (struct global_sym_lookup_data): Add block_enum member and rename to...
2421 (struct global_or_static_sym_lookup_data): ...this.
2422 (lookup_symbol_global_iterator_cb): Pass block_index instead of
2423 GLOBAL_BLOCK to lookup_symbol_in_objfile and rename to...
2424 (lookup_symbol_global_or_static_iterator_cb): ...this.
2425 (lookup_global_or_static_symbol): New function.
2426 (lookup_global_symbol): Call new function.
2427
2428 2019-08-26 Tom de Vries <tdevries@suse.de>
2429
2430 PR c++/24852
2431 * break-catch-throw.c (fetch_probe_arguments): Improve error mesage
2432 when pc_probe.prob == NULL.
2433
2434 2019-08-25 Simon Marchi <simon.marchi@efficios.com>
2435
2436 * dwarf2read.c (dw2_debug_names_iterator::next): Rename local
2437 variable symbol_linkage to symbol_linkage_.
2438
2439 2019-08-25 Simon Marchi <simon.marchi@efficios.com>
2440
2441 * dwarf2read.c (dw2_debug_names_iterator::next): Use enum to
2442 represent whether the symbol is static, dynamic, or we don't
2443 know.
2444
2445 2019-08-25 Yoshinori Sato <ysato@users.sourceforge.jp>
2446
2447 * gdb/rx-tdep.c (rx_register_names): New.
2448 (rx_register_name): Delete.
2449 (rx_psw_type): Delete.
2450 (rx_fpsw_type): Delete.
2451 (rx_register_type): Delete.
2452 (rx_gdbarch_init): Convert target-descriptions.
2453 (_initialize_rx_tdep): Add initialize_tdesc_rx.
2454 * gdb/features/Makefile: Add rx.xml.
2455 * gdb/features/rx.xml: New.
2456 * gdb/features/rx.c: Generated.
2457 * gdb/NEWS: Mention target description support.
2458
2459 2019-08-22 Christian Biesinger <cbiesinger@google.com>
2460
2461 * symtab.c (symbol_cache_lookup): Always initialize *bsc_ptr and
2462 *slot_ptr.
2463
2464 2019-08-23 Sergio Durigan Junior <sergiodj@redhat.com>
2465
2466 * configure.ac: Don't check for 'dlfcn.h' (moved to
2467 gdbsupport/common.m4).
2468 * Makefile.in (COMMON_SFILES): Move 'gdb-dlfcn.c' to
2469 'gdbsupport/'.
2470 (HFILES_NO_SRCDIR): Likewise, for 'gdb-dlfcn.h'.
2471 * compile/compile-c-support.c: Include
2472 'gdbsupport/gdb-dlfcn.h'.
2473 * gdbsupport/common.m4: Check for 'dlfcn.h'.
2474 * gdb-dlfcn.c: Move to...
2475 * gdbsupport/gdb-dlfcn.c: ... here.
2476 * gdb-dlfcn.h: Move to...
2477 * gdbsupport/gdb-dlfcn.h: ... here.
2478
2479 2019-08-23 Sandra Loosemore <sandra@codesourcery.com>
2480
2481 * nios2-tdep.c (struct reg_value): Improve comments. Make
2482 the offset field signed.
2483
2484 2019-08-22 Christian Biesinger <cbiesinger@google.com>
2485
2486 * python/lib/gdb/__init__.py (_execute_file): New function.
2487 * python/python.c (python_run_simple_file): Call gdb._execute_file
2488 on Windows.
2489
2490 2019-08-22 Andrew Burgess <andrew.burgess@embecosm.com>
2491
2492 * f-exp.y (yylex): Remove is_a_field_of_this local variable, and
2493 all uses as this was never set to anything but a zero value.
2494
2495 2019-08-21 Bogdan Harjoc <harjoc@gmail.com>
2496
2497 * cli/cli-cmds.c (with_command_1): Error out if no arguments.
2498
2499 2019-08-21 Christian Biesinger <cbiesinger@google.com>
2500
2501 * tui/tui-data.h (tui_gen_win_info): Add an =default
2502 move constructor, required by some GCC versions.
2503
2504 2019-08-21 Jinke Fan <fanjinke51@yeah.net>
2505
2506 * go32-nat.c (go32_sysinfo): Add hygon_p.
2507
2508 2019-08-20 Tom Tromey <tom@tromey.com>
2509
2510 * tui/tui-regs.h (struct tui_data_window) <last_regs_line_no,
2511 line_from_reg_element_no, first_reg_element_no_inline,
2512 display_all_data, delete_data_content_windows,
2513 erase_data_content>: Now private.
2514
2515 2019-08-20 Tom Tromey <tom@tromey.com>
2516
2517 * tui/tui-wingeneral.c (box_win): Change type of highlight_flag.
2518 (tui_unhighlight_win, tui_highlight_win)
2519 (tui_win_info::make_window): Update.
2520 * tui/tui-data.h (HILITE, NO_HILITE): Remove.
2521
2522 2019-08-20 Tom Tromey <tom@tromey.com>
2523
2524 * tui/tui-data.h (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
2525 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
2526 (MAX_PID_WIDTH): Move to tui-stack.c.
2527 * tui/tui-stack.c (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
2528 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
2529 (MAX_PID_WIDTH): Move from tui-data.h.
2530
2531 2019-08-20 Tom Tromey <tom@tromey.com>
2532
2533 * tui/tui-wingeneral.h (tui_make_window): Don't declare.
2534 * tui/tui-wingeneral.c (box_win): Change type of win_info.
2535 (box_win): Update.
2536 (tui_gen_win_info::make_window): Rename from tui_make_window.
2537 (tui_win_info::make_window): New method.
2538 (tui_gen_win_info::make_visible): Update.
2539 * tui/tui-source.c (tui_source_window::set_contents): Update.
2540 * tui/tui-regs.c (tui_data_window::show_register_group): Update.
2541 (tui_data_window::display_registers_from): Update.
2542 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
2543 * tui/tui-data.h (struct tui_gen_win_info) <make_window>:
2544 Declare.
2545 <can_box>: Remove.
2546 <title>: Remove.
2547 (struct tui_win_info) <make_window>: Declare.
2548 <can_box>: Now virtual.
2549 <title>: New member.
2550 * tui/tui-data.c (~tui_gen_win_info): Don't free title.
2551 * tui/tui-command.c (tui_cmd_window::resize): Update.
2552
2553 2019-08-20 Tom Tromey <tom@tromey.com>
2554
2555 * tui/tui-regs.h (struct tui_data_window) <display_regs>: Remove.
2556 * tui/tui-regs.c (tui_data_window::show_registers): Update.
2557 (tui_data_window::check_register_values): Update.
2558
2559 2019-08-20 Tom Tromey <tom@tromey.com>
2560
2561 * tui/tui-regs.h (struct tui_data_window): Use
2562 DISABLE_COPY_AND_ASSIGN.
2563 <regs_content>: Change type, removing unique_ptr.
2564 <tui_data_window>: Add move constructor.
2565 * tui/tui-regs.c (tui_data_window::show_registers)
2566 (tui_data_window::show_register_group)
2567 (tui_data_window::display_registers_from)
2568 (tui_data_window::display_registers_from)
2569 (tui_data_window::first_data_item_displayed)
2570 (tui_data_window::delete_data_content_windows)
2571 (tui_data_window::rerender, tui_data_window::refresh_window)
2572 (tui_data_window::check_register_values): Update.
2573
2574 2019-08-20 Tom Tromey <tom@tromey.com>
2575
2576 * tui/tui-regs.h (struct tui_data_window) <show_registers,
2577 show_register_group>: Declare.
2578 (tui_show_register_group): Don't declare.
2579 * tui/tui-regs.c (tui_data_window::show_registers): Rename from
2580 tui_show_registers.
2581 (tui_data_window::show_register_group): Rename from
2582 tui_show_register_group.
2583 (tui_data_window::check_register_values, tui_reg_command):
2584 Update.
2585 * tui/tui-layout.c (tui_set_layout): Update.
2586
2587 2019-08-20 Tom Tromey <tom@tromey.com>
2588
2589 * tui/tui-regs.h (struct tui_data_window) <check_register_values>:
2590 Declare.
2591 (tui_check_register_values): Don't declare.
2592 * tui/tui-regs.c (tui_data_window::check_register_values): Rename
2593 from tui_check_register_values.
2594 * tui/tui-hooks.c (tui_register_changed): Update.
2595
2596 2019-08-20 Tom Tromey <tom@tromey.com>
2597
2598 * tui/tui-regs.c (tui_reg_layout): Move later.
2599 (tui_show_registers): Don't enable TUI mode or change layout.
2600
2601 2019-08-20 Tom Tromey <tom@tromey.com>
2602
2603 * tui/tui-regs.h (struct tui_data_item_window)
2604 <~tui_data_item_window>: Remove.
2605 <content>: Now a unique_xmalloc_ptr.
2606 * tui/tui-regs.c (tui_register_format): Return a
2607 unique_xmalloc_ptr.
2608 (tui_get_register): Update.
2609 (~tui_data_item_window): Remove.
2610 (tui_data_window::display_registers_from, tui_display_register):
2611 Update.
2612 * tui/tui-io.h (tui_expand_tabs): Update.
2613 * tui/tui-io.c (tui_expand_tabs): Return a unique_xmalloc_ptr.
2614 Remove "col" parameter.
2615
2616 2019-08-20 Tom Tromey <tom@tromey.com>
2617
2618 * tui/tui-regs.h (struct tui_data_item_window) <value>: Remove
2619 field.
2620 * tui/tui-regs.c (~tui_data_item_window): Update.
2621
2622 2019-08-20 Tom Tromey <tom@tromey.com>
2623
2624 * tui/tui-regs.c (tui_register_format, tui_get_register): Move
2625 earlier.
2626
2627 2019-08-20 Tom Tromey <tom@tromey.com>
2628
2629 * tui/tui-regs.c (tui_reg_command): Remove NULL check.
2630
2631 2019-08-20 Tom Tromey <tom@tromey.com>
2632
2633 * tui/tui-source.h (struct tui_source_window): Update.
2634 * tui/tui-regs.c (tui_show_registers): Update.
2635 * tui/tui-disasm.h (struct tui_disasm_window): Update.
2636 * tui/tui-data.h (NO_SRC_STRING, NO_DISASSEM_STRING)
2637 (NO_REGS_STRING): Remove defines.
2638
2639 2019-08-20 Conrad Meyer <cem@FreeBSD.org>
2640
2641 * remote.c (remote_target::remote_btrace_maybe_reopen): Avoid
2642 unnecessary thread walk if remote doesn't support the packet.
2643
2644 2019-08-19 Tom Tromey <tromey@adacore.com>
2645
2646 * python/py-value.c (value_has_field): Fix indentation.
2647
2648 2019-08-19 Tom Tromey <tromey@adacore.com>
2649
2650 * printcmd.c (do_one_display, info_display_command): Update.
2651 * block.h (contained_in): Return bool. Add allow_nested
2652 parameter.
2653 * block.c (contained_in): Return bool. Add allow_nested
2654 parameter.
2655
2656 2019-08-19 Tom Tromey <tom@tromey.com>
2657
2658 * configure: Rebuild.
2659 * configure.ac: Disallow the combination of -static-libstdc++ and
2660 source highlight.
2661 * source-cache.c (get_language_name): Handle rust.
2662 (source_cache::get_source_lines): Ignore highlighting exceptions.
2663
2664 2019-08-16 Tom Tromey <tom@tromey.com>
2665
2666 * tui/tui.h (enum tui_win_type) <EXEC_INFO_WIN>: Remove.
2667 * tui/tui-winsource.h (struct tui_exec_info_window): Remove.
2668 (struct tui_source_window_base) <make_visible, refresh_window,
2669 resize>: Remove methods.
2670 <execution_info>: Remove field.
2671 * tui/tui-winsource.c (tui_source_window_base::do_erase_source_content)
2672 (tui_show_source_line, tui_source_window_base)
2673 (~tui_source_window_base): Update.
2674 (tui_source_window_base::resize)
2675 (tui_source_window_base::make_visible)
2676 (tui_source_window_base::refresh_window): Remove.
2677 (tui_source_window_base::update_exec_info): Update.
2678 * tui/tui-source.c (tui_source_window::set_contents): Update.
2679 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
2680
2681 2019-08-16 Tom Tromey <tom@tromey.com>
2682
2683 * tui/tui-hooks.c (tui_remove_hooks): Don't set
2684 deprecated_query_hook.
2685
2686 2019-08-16 Tom Tromey <tom@tromey.com>
2687
2688 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
2689 (tui_update_source_windows_with_line): Update.
2690 * tui/tui-source.h (struct tui_source_window)
2691 <show_symtab_source>: Declare.
2692 (tui_show_symtab_source): Don't declare.
2693 * tui/tui-source.c (tui_show_symtab_source): Rename from
2694 tui_show_symtab_source.
2695
2696 2019-08-16 Tom Tromey <tom@tromey.com>
2697
2698 * tui/tui-winsource.h (struct tui_source_window_base)
2699 <set_contents>: Declare.
2700 * tui/tui-winsource.c
2701 (tui_source_window_base::update_source_window_as_is): Update.
2702 * tui/tui-source.h (struct tui_source_window) <set_contents>:
2703 Declare.
2704 (tui_set_source_content): Don't declare.
2705 * tui/tui-source.c (tui_source_window::set_contents): Rename from
2706 tui_set_source_content.
2707 * tui/tui-disasm.h (struct tui_disasm_window) <set_contents>:
2708 Declare.
2709 (tui_set_disassem_content): Don't declare.
2710 * tui/tui-disasm.c (tui_disasm_window::set_contents): Rename from
2711 tui_set_disassem_content.
2712
2713 2019-08-16 Tom Tromey <tom@tromey.com>
2714
2715 * tui/tui-winsource.h (struct tui_source_window_base)
2716 <update_breakpoint_info>: Declare.
2717 (tui_update_breakpoint_info): Don't declare.
2718 * tui/tui-winsource.c (tui_source_window_base::update_source_window_as_is)
2719 (tui_update_all_breakpoint_info): Update.
2720 (tui_source_window_base::update_breakpoint_info): Rename from
2721 tui_update_breakpoint_info.
2722 (tui_source_window_base::update_exec_info): Update.
2723
2724 2019-08-16 Tom Tromey <tom@tromey.com>
2725
2726 * tui/tui-winsource.h (struct tui_source_window_base)
2727 <update_source_window>: Declare.
2728 (tui_update_source_window): Don't declare.
2729 * tui/tui-winsource.c
2730 (tui_source_window_base::update_source_window): Rename from
2731 tui_update_source_window.
2732 (tui_source_window_base::rerender): Update.
2733 * tui/tui-source.c (tui_source_window::maybe_update): Update.
2734 * tui/tui-disasm.c (tui_show_disassem)
2735 (tui_show_disassem_and_update_source)
2736 (tui_disasm_window::maybe_update): Update.
2737
2738 2019-08-16 Tom Tromey <tom@tromey.com>
2739
2740 * tui/tui-winsource.h (struct tui_source_window_base)
2741 <update_source_window_as_is>: Declare.
2742 (tui_update_source_window_as_is): Don't declare.
2743 * tui/tui-winsource.c (tui_update_source_window): Update
2744 (tui_source_window_base::update_source_window_as_is): Rename from
2745 tui_update_source_window_as_is.
2746 (tui_source_window_base::refill): Update.
2747 * tui/tui-source.c (tui_show_symtab_source): Update.
2748 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical):
2749 Update.
2750
2751 2019-08-16 Tom Tromey <tom@tromey.com>
2752
2753 * tui/tui-winsource.h (tui_update_source_window)
2754 (tui_update_source_window_as_is): Remove "noerror" parameter.
2755 * tui/tui-winsource.c (tui_update_source_window)
2756 (tui_update_source_window_as_is): Remove "noerror" parameter.
2757 (tui_update_source_windows_with_addr)
2758 (tui_update_source_windows_with_line)
2759 (tui_source_window_base::rerender)
2760 (tui_source_window_base::refill): Update.
2761 * tui/tui-source.h (tui_set_source_content)
2762 (tui_show_symtab_source): Remove "noerror" parameter.
2763 * tui/tui-source.c (tui_set_source_content): Remove "noerror"
2764 parameter.
2765 (tui_show_symtab_source): Likewise.
2766 (tui_source_window::maybe_update): Update.
2767 * tui/tui-disasm.c (tui_show_disassem)
2768 (tui_show_disassem_and_update_source)
2769 (tui_disasm_window::do_scroll_vertical)
2770 (tui_disasm_window::maybe_update): Update.
2771
2772 2019-08-16 Tom Tromey <tom@tromey.com>
2773
2774 * tui/tui.c (tui_is_window_visible): Update.
2775 * tui/tui-wingeneral.c (tui_make_window)
2776 (tui_gen_win_info::make_visible, tui_refresh_all): Update.
2777 * tui/tui-win.c (window_name_completer, tui_refresh_all_win)
2778 (tui_set_focus_command, tui_all_windows_info, update_tab_width)
2779 (tui_set_win_height_command, parse_scrolling_args): Update.
2780 * tui/tui-source.c (tui_source_window::style_changed): Update.
2781 * tui/tui-regs.c (tui_show_registers)
2782 (tui_data_window::first_data_item_displayed)
2783 (tui_data_window::delete_data_content_windows)
2784 (tui_check_register_values, tui_reg_command): Update.
2785 * tui/tui-disasm.c (tui_show_disassem): Update.
2786 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: New
2787 method.
2788 <is_visible>: Remove field.
2789 * tui/tui-data.c (tui_next_win, tui_prev_win)
2790 (tui_delete_invisible_windows): Update.
2791
2792 2019-08-16 Tom Tromey <tom@tromey.com>
2793
2794 * tui/tui-winsource.h (struct tui_source_window_base)
2795 <m_has_locator>: Remove.
2796 * tui/tui-layout.c (show_source_disasm_command, show_data)
2797 (show_source_or_disasm_and_command): Update.
2798
2799 2019-08-16 Alan Hayward <alan.hayward@arm.com>
2800
2801 * NEWS (Other MI changes): New subsection.
2802 * aarch64-tdep.c (aarch64_get_pc_address_flags): New function.
2803 (aarch64_gdbarch_init): Add aarch64_get_pc_address_flags.
2804 * arch-utils.c (default_get_pc_address_flags): New function.
2805 * arch-utils.h (default_get_pc_address_flags): New declaration.
2806 * gdbarch.sh: Add get_pc_address_flags.
2807 * gdbarch.c: Regenerate.
2808 * gdbarch.h: Likewise.
2809 * stack.c (print_pc): New function.
2810 (print_frame_info) (print_frame): Call print_pc.
2811
2812 2019-08-16 Tom de Vries <tdevries@suse.de>
2813
2814 * maint.c (maintenance_info_sections): Also handle !ALLOBJ case using
2815 print_objfile_section_info.
2816
2817 2019-08-15 Tom Tromey <tom@tromey.com>
2818
2819 * tui/tui-io.c (tui_puts_internal): Check TUI_CMD_WIN before
2820 calling update_cmdwin_start_line.
2821 * tui/tui-winsource.h (struct tui_source_window_base)
2822 <do_make_visible_with_new_height, set_new_height>: Don't declare.
2823 <rerender>: Declare.
2824 * tui/tui-winsource.c (tui_source_window_base::update_tab_width):
2825 Call rerender.
2826 (tui_source_window_base::set_new_height): Remove.
2827 (tui_source_window_base::rerender): Rename from
2828 do_make_visible_with_new_height.
2829 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use
2830 resize method.
2831 (tui_win_info::make_invisible_and_set_new_height)
2832 (tui_win_info::make_visible_with_new_height): Remove.
2833 * tui/tui-stack.h (struct tui_locator_window) <rerender>:
2834 Declare.
2835 * tui/tui-stack.c (tui_locator_window::rerender): New method.
2836 * tui/tui-regs.h (struct tui_data_window) <set_new_height,
2837 do_make_visible_with_new_height>: Don't declare.
2838 <rerender>: Declare.
2839 * tui/tui-regs.c (tui_data_window::rerender): Rename from
2840 set_new_height.
2841 (tui_data_window::do_make_visible_with_new_height): Remove.
2842 * tui/tui-layout.c (show_source_disasm_command, show_data): Don't
2843 call tui_show_locator_content.
2844 (tui_gen_win_info::resize): Call rerender.
2845 (show_source_or_disasm_and_command): Don't call
2846 tui_show_locator_content.
2847 * tui/tui-data.h (struct tui_gen_win_info) <rerender>: New
2848 method.
2849 (struct tui_win_info) <rerender>: Declare.
2850 <set_new_height, make_invisible_and_set_new_height,
2851 make_visible_with_new_height>: Don't declare.
2852 * tui/tui-data.c (tui_win_list::rerender): New method.
2853 * tui/tui-command.h (struct tui_cmd_window)
2854 <do_make_visible_with_new_height>: Don't declare.
2855 * tui/tui-command.c
2856 (tui_cmd_window::do_make_visible_with_new_height): Remove.
2857
2858 2019-08-15 Tom Tromey <tromey@adacore.com>
2859
2860 * ada-exp.y (convert_char_literal): Handle "Q%c" encoding.
2861 * ada-lang.c (ada_enum_name): Likewise.
2862
2863 2019-08-15 Christian Biesinger <cbiesinger@google.com>
2864
2865 * python/lib/gdb/__init__.py (GdbOutputFile): Rename to have a
2866 leading underscore.
2867 (GdbOutputErrorFile): Likewise.
2868 (global scope): Adjust constructor calls to GdbOutput{,Error}File
2869 accordingly.
2870 (execute_unwinders): Rename to have a leading underscore.
2871 (auto_load_packages): Likewise.
2872 (global scope): Adjust call to auto_load_packages accordingly.
2873 (GdbSetPythonDirectory): Likewise.
2874 * python/py-unwind.c (pyuw_sniffer): Call _execute_unwinders
2875 instead of execute_unwinders.
2876
2877 2019-08-15 Tom Tromey <tom@tromey.com>
2878
2879 * tui/tui-layout.c (show_layout, show_source_disasm_command)
2880 (show_data): Don't change window visibility.
2881 (tui_gen_win_info::resize): Remove special case for command
2882 window. Use wresize, when available.
2883 (show_source_or_disasm_and_command): Don't change window
2884 visibility.
2885 * tui/tui-command.h (struct tui_cmd_window) <resize>: Declare.
2886 <make_visible>: New method.
2887 * tui/tui-command.c (tui_cmd_window::resize): New method.
2888
2889 2019-08-15 Tom Tromey <tom@tromey.com>
2890
2891 * tui/tui-winsource.h (struct tui_source_window_iterator): New.
2892 (struct tui_source_windows): New.
2893 * tui/tui-winsource.c (tui_display_main): Update.
2894 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
2895 (new_height_ok, parse_scrolling_args): Update.
2896 * tui/tui-layout.c (show_layout, show_data): Update.
2897 * tui/tui-data.h (tui_source_windows, tui_clear_source_windows)
2898 (tui_add_to_source_windows): Don't declare.
2899 * tui/tui-data.c (source_windows, tui_source_windows)
2900 (tui_clear_source_windows, tui_add_to_source_windows): Remove.
2901
2902 2019-08-15 Tom Tromey <tom@tromey.com>
2903
2904 * tui/tui-winsource.h (struct tui_source_window_base) <resize>:
2905 Rename from reset.
2906 * tui/tui-winsource.c (tui_source_window_base::resize): Rename.
2907 * tui/tui-layout.c (show_source_disasm_command, show_data):
2908 Update.
2909 (tui_gen_win_info::resize): Rename.
2910 (show_source_or_disasm_and_command): Update.
2911 * tui/tui-data.h (struct tui_gen_win_info) <resize>: Rename from
2912 reset.
2913
2914 2019-08-15 Tom Tromey <tom@tromey.com>
2915
2916 * tui/tui-stack.c (tui_initialize_static_data): Remove.
2917 * tui/tui-interp.c (tui_interp::init): Don't call
2918 tui_initialize_static_data.
2919 * tui/tui-data.h (tui_initialize_static_data): Don't declare.
2920
2921 2019-08-15 Tom Tromey <tom@tromey.com>
2922
2923 * tui/tui-layout.c (tui_default_win_viewport_height): Don't
2924 examine tui_win_list.
2925
2926 2019-08-15 Tom Tromey <tom@tromey.com>
2927
2928 * tui/tui-winsource.h (tui_clear_source_content): Don't declare.
2929 * tui/tui-winsource.c (tui_update_source_window_as_is): Don't call
2930 tui_clear_source_content.
2931 (tui_clear_source_content): Remove.
2932 (tui_source_window_base::do_erase_source_content): Hoist call to
2933 content.clear().
2934 * tui/tui-stack.c (tui_show_frame_info): Don't call
2935 tui_clear_source_content.
2936
2937 2019-08-15 Tom Tromey <tom@tromey.com>
2938
2939 * tui/tui-winsource.h (struct tui_source_window_base)
2940 <do_erase_source_content>: New method.
2941 <erase_source_content>: New method.
2942 (tui_erase_source_content): Don't declare.
2943 * tui/tui-winsource.c (tui_clear_source_content): Update.
2944 (tui_source_window_base::do_erase_source_content): Rename from
2945 tui_erase_source_content.
2946 (tui_source_window_base::show_source_content): Update.
2947 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
2948 * tui/tui-source.h (struct tui_source_window)
2949 <erase_source_content>: New method.
2950 * tui/tui-disasm.h (struct tui_disasm_window)
2951 <erase_source_content>: New method.
2952
2953 2019-08-15 Tom Tromey <tom@tromey.com>
2954
2955 * tui/tui-winsource.h (tui_alloc_source_buffer): Don't declare.
2956 (struct tui_source_element): Add DISABLE_COPY_AND_ASSIGN, and move
2957 constructor.
2958 * tui/tui-winsource.c (tui_alloc_source_buffer): Remove.
2959 * tui/tui-source.c (tui_set_source_content): Update.
2960 * tui/tui-disasm.c (tui_set_disassem_content): Update.
2961
2962 2019-08-15 Tom Tromey <tom@tromey.com>
2963
2964 * tui/tui-winsource.h (tui_line_is_displayed): Don't declare.
2965 * tui/tui-winsource.c (tui_line_is_displayed): Move to
2966 tui-source.c.
2967 * tui/tui-source.h (struct tui_source_window) <line_is_displayed>:
2968 Declare.
2969 * tui/tui-source.c (tui_source_window::line_is_displayed): New
2970 method.
2971 (tui_source_window::maybe_update): Update.
2972
2973 2019-08-15 Tom Tromey <tom@tromey.com>
2974
2975 * tui/tui-winsource.h (tui_addr_is_displayed): Don't declare.
2976 * tui/tui-winsource.c (tui_addr_is_displayed): Move to
2977 tui-disasm.c.
2978 * tui/tui-disasm.h (struct tui_disasm_window) <addr_is_displayed>:
2979 Declare.
2980 * tui/tui-disasm.c (tui_disasm_window::addr_is_displayed): New
2981 method.
2982 (tui_disasm_window::maybe_update): Update.
2983
2984 2019-08-15 Tom Tromey <tom@tromey.com>
2985
2986 * tui/tui-winsource.h (struct tui_source_window_base)
2987 <maybe_update>: Declare.
2988 * tui/tui-stack.c (tui_show_frame_info): Call maybe_update
2989 method.
2990 * tui/tui-source.h (struct tui_source_window) <maybe_update>:
2991 Declare.
2992 * tui/tui-source.c (tui_source_window::maybe_update): New method.
2993 * tui/tui-disasm.h (struct tui_disasm_window) <maybe_update>:
2994 Declare.
2995 * tui/tui-disasm.c (tui_disasm_window::maybe_update): New method.
2996
2997 2019-08-15 Tom Tromey <tom@tromey.com>
2998
2999 * tui/tui-stack.c (tui_make_status_line): Use string constructor.
3000
3001 2019-08-15 Tom Tromey <tom@tromey.com>
3002
3003 * tui/tui-wingeneral.c: Include tui-stack.h.
3004 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN)
3005 (struct tui_locator_window): Move from tui-data.h.
3006 * tui/tui-stack.c (_locator, tui_locator_win_info_ptr)
3007 (tui_initialize_static_data): Move from tui-data.c.
3008 * tui/tui-data.h (MAX_LOCATOR_ELEMENT_LEN)
3009 (struct tui_locator_window): Move to tui-stack.c.
3010 * tui/tui-data.c (_locator, tui_locator_win_info_ptr)
3011 (tui_initialize_static_data): Move to tui-stack.c.
3012
3013 2019-08-15 Tom Tromey <tom@tromey.com>
3014
3015 * tui/tui-layout.c (show_source_disasm_command)
3016 (show_source_or_disasm_and_command): Use make_visible method, not
3017 tui_make_window.
3018 * tui/tui-command.h (struct tui_cmd_window) <make_visible>:
3019 Remove.
3020
3021 2019-08-15 Tom Tromey <tom@tromey.com>
3022
3023 * tui/tui-wingeneral.h (tui_make_window): Update.
3024 * tui/tui-wingeneral.c (tui_make_window): Remove "box_it"
3025 parameter.
3026 (tui_gen_win_info::make_visible): Update.
3027 * tui/tui-regs.c (tui_data_window::display_registers_from):
3028 Update.
3029 * tui/tui-layout.c (show_source_disasm_command)
3030 (show_source_or_disasm_and_command): Update.
3031 * tui/tui-data.h (struct tui_gen_win_info) <can_box>: New method.
3032 (enum tui_box): Remove.
3033 (struct tui_win_info) <can_box>: New method.
3034 * tui/tui-command.h (struct tui_cmd_window) <can_box>: New
3035 method.
3036
3037 2019-08-15 Tom de Vries <tdevries@suse.de>
3038
3039 * linux-nat-trad.c: Include gdbarch.h.
3040
3041 2019-08-14 Alan Hayward <alan.hayward@arm.com>
3042
3043 * aarch64-tdep.c (aarch64_analyze_prologue): Allow any valid
3044 register sizes.
3045
3046 2019-08-14 Tom Tromey <tromey@adacore.com>
3047
3048 * darwin-nat.c: Include gdbarch.h.
3049 * darwin-nat-info.c: Include gdbarch.h.
3050
3051 2019-08-13 Tom Tromey <tom@tromey.com>
3052
3053 * tui/tui-data.h (struct tui_gen_win_info) <last_visible_line>:
3054 Remove.
3055 * tui/tui-data.c (tui_initialize_static_data): Update.
3056
3057 2019-08-13 Tom Tromey <tom@tromey.com>
3058
3059 * tui/tui-winsource.h (struct tui_exec_info_window)
3060 <~tui_exec_info_window, maybe_allocate_content, get_content,
3061 m_content>: Remove.
3062 (struct tui_source_window_base) <set_exec_info_content,
3063 show_exec_info_content>: Don't declare.
3064 * tui/tui-winsource.c
3065 (tui_exec_info_window::maybe_allocate_content): Remove.
3066 (tui_source_window_base::update_exec_info): Rename from
3067 set_exec_info_content.
3068 (tui_source_window_base::show_exec_info_content)
3069 (tui_source_window_base::update_exec_info): Remove.
3070
3071 2019-08-13 Tom Tromey <tom@tromey.com>
3072
3073 * tui/tui-winsource.h (tui_clear_exec_info_content): Don't
3074 declare.
3075 * tui/tui-winsource.c (tui_update_source_window_as_is)
3076 (tui_update_source_windows_with_addr, tui_erase_source_content):
3077 Update.
3078 (tui_clear_exec_info_content): Remove.
3079
3080 2019-08-13 Tom Tromey <tom@tromey.com>
3081
3082 * tui/tui-winsource.h (tui_erase_exec_info_content): Don't
3083 declare.
3084 * tui/tui-winsource.c (tui_source_window_base::refresh_all): Don't
3085 call tui_erase_exec_info_content.
3086 (tui_clear_exec_info_content): Rename from
3087 tui_erase_exec_info_content.
3088 (tui_clear_exec_info_content): Delete.
3089
3090 2019-08-13 Tom Tromey <tom@tromey.com>
3091
3092 * tui/tui-winsource.h (struct tui_source_window_base)
3093 <show_exec_info_content>: Declare.
3094 (tui_show_exec_info_content): Don't declare.
3095 * tui/tui-winsource.c
3096 (tui_source_window_base::show_exec_info_content): Rename from
3097 tui_show_exec_info_content.
3098 (tui_source_window_base::update_exec_info): Update.
3099
3100 2019-08-13 Tom Tromey <tom@tromey.com>
3101
3102 * tui/tui-data.h (enum tui_bp_flag, tui_bp_flags, struct tui_source_element)
3103 (TUI_BP_HIT_POS, TUI_BP_BREAK_POS, TUI_EXEC_POS)
3104 (TUI_EXECINFO_SIZE, tui_exec_info_content): Move ...
3105 * tui/tui-winsource.h (enum tui_bp_flag, tui_bp_flags, struct
3106 tui_source_element, TUI_BP_HIT_POS, TUI_BP_BREAK_POS)
3107 (TUI_EXEC_POS, TUI_EXECINFO_SIZE, tui_exec_info_content):
3108 ... here.
3109
3110 2019-08-13 Tom Tromey <tom@tromey.com>
3111
3112 * tui/tui-winsource.h (struct tui_source_window_base)
3113 <update_exec_info>: Declare.
3114 (tui_update_exec_info): Don't declare.
3115 * tui/tui-winsource.c (tui_update_source_window_as_is)
3116 (tui_source_window_base::refresh_all)
3117 (tui_update_all_breakpoint_info): Update.
3118 (tui_source_window_base::update_exec_info): Rename from
3119 tui_update_exec_info.
3120 * tui/tui-stack.c (tui_show_frame_info): Update.
3121
3122 2019-08-13 Tom Tromey <tom@tromey.com>
3123
3124 * tui/tui-winsource.h (struct tui_source_window_base)
3125 <set_exec_info_content>: Declare.
3126 (tui_set_exec_info_content): Don't declare.
3127 * tui/tui-winsource.c
3128 (tui_source_window_base::set_exec_info_content): Rename from
3129 tui_set_exec_info_content.
3130 (tui_update_exec_info): Update.
3131
3132 2019-08-13 Tom Tromey <tom@tromey.com>
3133
3134 * tui/tui-winsource.h (struct tui_source_window_base)
3135 <show_source_content>: Declare.
3136 (tui_show_source_content): Don't declare.
3137 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
3138 (tui_source_window_base::show_source_content): Rename from
3139 tui_show_source_content.
3140 (tui_source_window_base::refresh_all): Update.
3141 * tui/tui-layout.c (show_source_disasm_command)
3142 (show_source_or_disasm_and_command): Update.
3143
3144 2019-08-13 Tom Tromey <tom@tromey.com>
3145
3146 * tui/tui-winsource.c (tui_erase_source_content)
3147 (tui_show_source_content, tui_source_window_base::refresh_all):
3148 Update.
3149 * tui/tui-wingeneral.h
3150 (tui_check_and_display_highlight_if_needed): Don't declare.
3151 * tui/tui-wingeneral.c
3152 (tui_win_info::check_and_display_highlight_if_needed): Rename from
3153 check_and_display_highlight_if_needed.
3154 * tui/tui-win.c (tui_rehighlight_all)
3155 (tui_win_info::make_visible_with_new_height): Update.
3156 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
3157 (tui_data_window::erase_data_content)
3158 (tui_data_window::display_all_data): Update.
3159 * tui/tui-data.h (struct tui_win_info)
3160 <check_and_display_highlight_if_needed>: Declare.
3161
3162 2019-08-13 Tom Tromey <tom@tromey.com>
3163
3164 * tui/tui-win.c (tui_resize_all): Call
3165 tui_delete_invisible_windows.
3166 * tui/tui-layout.c (show_layout): Call
3167 tui_delete_invisible_windows.
3168 * tui/tui-data.h (tui_delete_invisible_windows): Declare.
3169 * tui/tui-data.c (tui_delete_invisible_windows): New function.
3170
3171 2019-08-13 Tom Tromey <tom@tromey.com>
3172
3173 * tui/tui-disasm.c (tui_show_disassem): Add assertion. Don't call
3174 tui_add_win_to_layout.
3175
3176 2019-08-13 Tom Tromey <tom@tromey.com>
3177
3178 * tui/tui-layout.h (tui_default_win_height): Don't declare.
3179 * tui/tui-layout.c (tui_default_win_height): Now static.
3180
3181 2019-08-13 Tom Tromey <tom@tromey.com>
3182
3183 * tui/tui-layout.c (show_layout): Unify all layout cases into a
3184 single switch.
3185 (show_source_disasm_command, show_source_or_disasm_and_command):
3186 Don't check current layout.
3187
3188 2019-08-13 Tom Tromey <tom@tromey.com>
3189
3190 * tui/tui-wingeneral.c (make_all_visible): Remove.
3191 (tui_make_all_invisible): Simplify.
3192 * tui/tui-layout.c (tui_make_all_invisible): Move from
3193 tui-wingeneral.c; simplify.
3194 (show_layout): Hoist call to tui_make_all_invisible.
3195 (show_data): Don't call tui_make_all_invisible.
3196
3197 2019-08-13 Tom Tromey <tom@tromey.com>
3198
3199 * tui/tui-wingeneral.h (tui_make_all_visible): Don't declare.
3200 * tui/tui-wingeneral.c (tui_make_all_visible): Remove.
3201
3202 2019-08-13 Tom Tromey <tom@tromey.com>
3203
3204 * tui/tui-layout.c (current_layout, tui_current_layout): Move from
3205 tui-data.c.
3206 (show_source_disasm_command, show_data)
3207 (show_source_or_disasm_and_command): Don't use
3208 tui_set_current_layout_to.
3209 * tui/tui-data.h (tui_set_current_layout_to): Don't declare.
3210 * tui/tui-data.c (current_layout, tui_current_layout): Move to
3211 tui-layout.c.
3212 (tui_set_current_layout_to): Remove.
3213
3214 2019-08-13 Tom Tromey <tom@tromey.com>
3215
3216 * tui/tui-layout.c (tui_set_layout): Update.
3217 * tui/tui-data.h (struct tui_layout_def): Remove.
3218 (tui_layout_def): Don't declare.
3219 * tui/tui-data.c (layout_def): Remove.
3220 (tui_layout_def): Remove.
3221
3222 2019-08-13 Tom Tromey <tom@tromey.com>
3223
3224 * tui/tui-winsource.h (struct tui_source_window_base)
3225 <clear_detail>: No longer "override".
3226 * tui/tui-regs.h (struct tui_data_window) <clear_detail>: Remove.
3227 * tui/tui-regs.c (tui_data_window::clear_detail): Remove.
3228 * tui/tui-data.h (struct tui_win_info) <clear_detail>: Remove.
3229 * tui/tui-command.h (struct tui_cmd_window) <clear_detail>:
3230 Remove.
3231 * tui/tui-command.c (tui_cmd_window::clear_detail): Remove.
3232
3233 2019-08-13 Tom Tromey <tromey@adacore.com>
3234
3235 * tracepoint.c: Don't include readline.h or history.h.
3236
3237 2019-08-12 Tom Tromey <tom@tromey.com>
3238
3239 * configure: Rebuild.
3240 * configure.ac: Check for readline 7.
3241 * NEWS: Mention readline 7 requirement.
3242 * README: Update.
3243
3244 2019-08-12 Tom Tromey <tom@tromey.com>
3245
3246 * mingw-hdep.c (gdb_select): Remove readline hack.
3247
3248 2019-08-09 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
3249
3250 * blockframe.c (find_pc_partial_function): Set *block to nullptr
3251 when the function fails.
3252
3253 2019-08-09 Andreas Arnez <arnez@linux.ibm.com>
3254
3255 * s390-tdep.c (s390_type_align): New function.
3256 (s390_gdbarch_init): Set it as type_align gdbarch method.
3257
3258 2019-08-09 Tom de Vries <tdevries@suse.de>
3259
3260 PR gdb/24591
3261 * dwarf2read.c (dwarf2_fetch_die_loc_sect_off): Adjust pc_high and
3262 pc_low with relocation offset.
3263
3264 2019-08-07 Tom Tromey <tromey@adacore.com>
3265
3266 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
3267 (print_frame_args): Update.
3268 * python/py-framefilter.c (py_print_single_arg, enumerate_args):
3269 Update.
3270 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
3271 * frame.h (struct frame_arg): Add initializers.
3272 <error>: Now a unique_xmalloc_ptr.
3273
3274 2019-08-07 Alan Hayward <alan.hayward@arm.com>
3275
3276 * NEWS: Expand the Pointer Authentication entry.
3277 * aarch64-tdep.c (aarch64_frame_unmask_address): Rename from this.
3278 (aarch64_frame_unmask_lr): ... to this.
3279 (aarch64_prologue_prev_register, aarch64_dwarf2_prev_register):
3280 Call aarch64_frame_unmask_lr.
3281 * frame.c (struct frame_info): Add "masked" variable.
3282 (frame_set_previous_pc_masked) (frame_get_pc_masked): New functions.
3283 (fprint_frame): Check for masked pc.
3284 * frame.h (frame_set_previous_pc_masked) (frame_get_pc_masked): New
3285 declarations.
3286 * python/py-framefilter.c (py_print_frame): Check for masked pc.
3287 * stack.c (print_frame): Check for masked pc.
3288
3289 2019-08-06 Tom Tromey <tom@tromey.com>
3290
3291 * stabsread.c (patch_block_stabs, read_one_struct_field)
3292 (read_enum_type): Use obstack_strndup.
3293 * rust-exp.y (rust_parser::copy_name): Use obstack_strndup.
3294 * gdb_obstack.h (obstack_strndup): Use obstack_strndup.
3295 * dwarf2read.c (guess_full_die_structure_name)
3296 (anonymous_struct_prefix): Use obstack_strndup.
3297 * dbxread.c (cp_set_block_scope): Use obstack_strndup.
3298 * c-exp.y (yylex): Use obstack_strndup.
3299 * ada-exp.y (write_object_renaming, write_ambiguous_var)
3300 (write_var_or_type): Use obstack_strndup.
3301
3302 2019-08-06 Tom Tromey <tom@tromey.com>
3303
3304 * symfile.c (reread_symbols): Use obstack_strdup.
3305 * stabsread.c (read_type): Use obstack_strdup.
3306 * gdb_obstack.h (obstack_strdup): New overload.
3307 * dwarf2read.c (dwarf2_compute_name, create_dwo_unit_in_dwp_v1)
3308 (create_dwo_unit_in_dwp_v2, build_error_marker_type)
3309 (dwarf2_canonicalize_name): Use obstack_strdup.
3310 * dbxread.c (read_dbx_symtab): Use obstack_strdup.
3311 * cp-support.c (inspect_type, replace_typedefs_qualified_name):
3312 Use obstack_strdup.
3313
3314 2019-08-06 Tom Tromey <tom@tromey.com>
3315
3316 * gdb_obstack.h (obstack_strdup): Define.
3317 * gdb_obstack.c (obstack_strdup): Don't define.
3318
3319 2019-08-06 Tom Tromey <tom@tromey.com>
3320
3321 * xcoffread.c (SYMNAME_ALLOC, process_xcoff_symbol): Use
3322 obstack_strdup.
3323 * typeprint.c (typedef_hash_table::find_global_typedef): Use
3324 obstack_strdup.
3325 * symfile.c (allocate_compunit_symtab): Use obstack_strdup.
3326 * stabsread.c (common_block_start): Use obstack_strdup.
3327 * objfiles.c (set_objfile_main_name, objfile): Use
3328 obstack_strdup.
3329 * namespace.c (add_using_directive): Use obstack_strdup.
3330 * mdebugread.c (parse_symbol, parse_type): Use obstack_strdup.
3331 * jit.c (finalize_symtab): Use obstack_strdup.
3332 * dwarf2read.c (fixup_go_packaging, dwarf2_physname)
3333 (guess_partial_die_structure_name, partial_die_info::fixup)
3334 (dwarf2_name): Use obstack_strdup.
3335 * coffread.c (coff_read_struct_type, coff_read_enum_type): Use
3336 obstack_strdup.
3337 * c-exp.y (scan_macro_expansion): Use obstack_strdup.
3338 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
3339 obstack_strdup.
3340 * ada-lang.c (ada_decode_symbol): Use obstack_strdup.
3341
3342 2019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3343
3344 * unittests/help-doc-selftests.c: New file.
3345 * Makefile.in: Add the new file.
3346
3347 2019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3348
3349 * cli/cli-decode.h (print_doc_line): Add for_value_prefix argument.
3350 * cli/cli-decode.c (print_doc_line): Likewise. It now prints
3351 the full first line, except when FOR_VALUE_PREFIX. In this case,
3352 the trailing '.' is not output, and the first character is uppercased.
3353 (print_help_for_command): Update call to print_doc_line.
3354 (print_doc_of_command): Likewise.
3355 * cli/cli-setshow.c (deprecated_show_value_hack): Likewise.
3356 * cli/cli-option.c (append_indented_doc): Do not append newline.
3357 (build_help_option): Append newline after first appended_indented_doc
3358 only if a second call is done.
3359 (build_help): Append 2 new lines before each option, except the first
3360 one.
3361 * compile/compile.c (_initialize_compile): Add new lines after
3362 %OPTIONS%, when not at the end of the help.
3363 Change help doc or code
3364 producing the help doc to respect the invariants.
3365 * maint-test-options.c (_initialize_maint_test_options): Likewise.
3366 Also removed the new line after 'Options:', as all other commands
3367 do not put an empty line between 'Options:' and the first option.
3368 * printcmd.c (_initialize_printcmd): Likewise.
3369 * stack.c (_initialize_stack): Likewise.
3370 * interps.c (interpreter_exec_cmd): Fix "Usage:" line that was
3371 incorrectly telling COMMAND is optional.
3372 * ada-lang.c (_initialize_ada_language): Change help doc or code
3373 producing the help doc to respect the invariants.
3374 * ada-tasks.c (_initialize_ada_tasks): Likewise.
3375 * breakpoint.c (_initialize_breakpoint): Likewise.
3376 * cli/cli-cmds.c (_initialize_cli_cmds): Likewise.
3377 * cli/cli-logging.c (_initialize_cli_logging): Likewise.
3378 * cli/cli-setshow.c (_initialize_cli_setshow): Likewise.
3379 * cli/cli-style.c (cli_style_option::add_setshow_commands,
3380 _initialize_cli_style): Likewise.
3381 * corelow.c (core_target_info): Likewise.
3382 * dwarf-index-cache.c (_initialize_index_cache): Likewise.
3383 * dwarf2read.c (_initialize_dwarf2_read): Likewise.
3384 * filesystem.c (_initialize_filesystem): Likewise.
3385 * frame.c (_initialize_frame): Likewise.
3386 * gnu-nat.c (add_task_commands): Likewise.
3387 * infcall.c (_initialize_infcall): Likewise.
3388 * infcmd.c (_initialize_infcmd): Likewise.
3389 * interps.c (_initialize_interpreter): Likewise.
3390 * language.c (_initialize_language): Likewise.
3391 * linux-fork.c (_initialize_linux_fork): Likewise.
3392 * maint-test-settings.c (_initialize_maint_test_settings): Likewise.
3393 * maint.c (_initialize_maint_cmds): Likewise.
3394 * memattr.c (_initialize_mem): Likewise.
3395 * printcmd.c (_initialize_printcmd): Likewise.
3396 * python/lib/gdb/function/strfns.py (_MemEq, _StrLen, _StrEq,
3397 _RegEx): Likewise.
3398 * ravenscar-thread.c (_initialize_ravenscar): Likewise.
3399 * record-btrace.c (_initialize_record_btrace): Likewise.
3400 * record-full.c (_initialize_record_full): Likewise.
3401 * record.c (_initialize_record): Likewise.
3402 * regcache-dump.c (_initialize_regcache_dump): Likewise.
3403 * regcache.c (_initialize_regcache): Likewise.
3404 * remote.c (add_packet_config_cmd, init_remote_threadtests,
3405 _initialize_remote): Likewise.
3406 * ser-tcp.c (_initialize_ser_tcp): Likewise.
3407 * serial.c (_initialize_serial): Likewise.
3408 * skip.c (_initialize_step_skip): Likewise.
3409 * source.c (_initialize_source): Likewise.
3410 * stack.c (_initialize_stack): Likewise.
3411 * symfile.c (_initialize_symfile): Likewise.
3412 * symtab.c (_initialize_symtab): Likewise.
3413 * target-descriptions.c (_initialize_target_descriptions): Likewise.
3414 * top.c (init_main): Likewise.
3415 * tracefile-tfile.c (tfile_target_info): Likewise.
3416 * tracepoint.c (_initialize_tracepoint): Likewise.
3417 * tui/tui-win.c (_initialize_tui_win): Likewise.
3418 * utils.c (add_internal_problem_command): Likewise.
3419 * valprint.c (value_print_option_defs): Likewise.
3420
3421 2019-08-06 Frank Ch. Eigler <fche@redhat.com>
3422
3423 PR build/24886
3424 * configure.ac: Drop enable-libmcheck support.
3425 * configure, config.in: Rebuild.
3426 * libmcheck.m4: Remove.
3427 * acinclude.m4: Don't include it.
3428 * Makefile.in: Don't distribute it.
3429 * top.c (print_gdb_configuration): Don't mention it.
3430
3431 2019-08-06 Tom Tromey <tom@tromey.com>
3432
3433 * utils.c (set_output_style): Sometimes pass stream to
3434 emit_style_escape.
3435 * ui-out.h (class ui_out) <can_emit_style_escape>: Declare.
3436 * record-btrace.c (btrace_insn_history): Update.
3437 * mi/mi-out.h (class mi_ui_out) <can_emit_style_escape>: New
3438 method.
3439 * disasm.h (gdb_pretty_print_disassembler): Add uiout parameter.
3440 Update initializers.
3441 <m_uiout>: New field.
3442 <m_di>: Move lower.
3443 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
3444 Remove "uiout" parameter.
3445 (dump_insns): Update.
3446 * cli-out.h (class cli_ui_out) <can_emit_style_escape>: Declare.
3447 * cli-out.c (cli_ui_out::can_emit_style_escape): New method.
3448
3449 2019-08-06 Christian Biesinger <cbiesinger@google.com>
3450
3451 * symtab.c (symbol_cache_lookup): Change int to enum block_enum.
3452 (error_in_psymtab_expansion): Likewise.
3453 (lookup_symbol_via_quick_fns): Likewise.
3454 (basic_lookup_transparent_type_quick): Likewise.
3455 (basic_lookup_transparent_type_1): Likewise.
3456
3457 2019-08-06 Tom Tromey <tromey@adacore.com>
3458
3459 * source.c (last_source_error): Now bool.
3460 (print_source_lines_base): Make "noprint" bool. Only open
3461 source file when last_source_visited changes.
3462
3463 2019-08-06 Tom Tromey <tromey@adacore.com>
3464
3465 * annotate.c (annotate_source_line): Use g_source_cache.
3466 * source-cache.c (source_cache::get_plain_source_lines): Change
3467 parameters. Populate m_offset_cache.
3468 (source_cache::ensure): New method.
3469 (source_cache::get_line_charpos): New method.
3470 (extract_lines): Move lower. Change parameters.
3471 (source_cache::get_source_lines): Move lower.
3472 * source-cache.h (class source_cache): Update comment.
3473 <get_line_charpos>: New method.
3474 <get_source_lines>: Update comment.
3475 <clear>: Clear m_offset_cache.
3476 <get_plain_source_lines>: Change parameters.
3477 <ensure>: New method
3478 <m_offset_cache>: New member.
3479 * source.c (forget_cached_source_info_for_objfile): Update.
3480 (info_source_command): Use g_source_cache.
3481 (find_source_lines, open_source_file_with_line_charpos): Remove.
3482 (print_source_lines_base, search_command_helper): Use g_source_cache.
3483 * source.h (open_source_file_with_line_charpos): Don't declare.
3484 * symtab.h (struct symtab) <nlines, line_charpos>: Remove.
3485 * tui/tui-source.c (tui_source_window::do_scroll_vertical):
3486 Use g_source_cache.
3487
3488 2019-08-06 Tom Tromey <tromey@adacore.com>
3489
3490 * source-cache.c (source_cache::get_plain_source_lines):
3491 Remove "first_line" and "last_line" parameters.
3492 (source_cache::get_source_lines): Cache plain text.
3493 * source-cache.h (class source_cache)
3494 <get_plain_source_lines>: Update.
3495
3496 2019-08-06 Tom Tromey <tromey@adacore.com>
3497
3498 * source-cache.c (extract_lines): No longer a method.
3499 Changed type of parameter. Include final newline.
3500 (selftests::extract_lines_test): New function.
3501 (_initialize_source_cache): Likewise.
3502 * source-cache.h (class source_cache)
3503 <extract_lines>: Don't declare.
3504
3505 2019-08-06 Tom Tromey <tromey@adacore.com>
3506
3507 * breakpoint.c (init_breakpoint_sal): Update.
3508 (breakpoint): Update.
3509 * breakpoint.h (struct breakpoint) <filter>: Now a
3510 unique_xmalloc_ptr.
3511
3512 2019-08-05 Christian Biesinger <cbiesinger@google.com>
3513
3514 * NEWS: Mention dictionary access on blocks.
3515 * python/py-block.c (blpy_getitem): New function.
3516 (block_object_as_mapping): New struct.
3517 (block_object_type): Use new struct for tp_as_mapping field.
3518
3519 2019-08-05 Christian Biesinger <cbiesinger@google.com>
3520
3521 * objfiles.h (objfile): Add a comment describing partial symbols.
3522
3523 2019-08-05 Tom Tromey <tromey@adacore.com>
3524
3525 * compile/compile.c (_initialize_compile): Use _(), not N_().
3526 * thread.c (_initialize_thread): Use _(), not N_().
3527 * stack.c (_initialize_stack): Use _(), not N_().
3528 * printcmd.c (_initialize_printcmd): Use _(), not N_().
3529
3530 2019-08-04 Simon Marchi <simon.marchi@polymtl.ca>
3531
3532 * dwarf2read.c (struct dw2_symtab_iterator):
3533 <want_specific_block>: Remove.
3534 <block_index>: Change type to gdb::optional.
3535 (dw2_symtab_iter_init): Remove WANT_SPECIFIC_BLOCK parameter,
3536 change type of BLOCK_INDEX parameter to gdb::optional.
3537 (dw2_symtab_iter_next): Re-write in function of gdb::optional.
3538 (dw2_lookup_symbol): Don't pass argument for
3539 WANT_SPECIFIC_BLOCK.
3540 (dw2_expand_symtabs_for_function): Don't pass argument for
3541 WANT_SPECIFIC_BLOCK, pass empty optional for BLOCK_INDEX.
3542 (class dw2_debug_names_iterator)
3543 <dw2_debug_names_iterator>: Remove WANT_SPECIFIC_BLOCK
3544 parameter, change BLOCK_INDEX type to gdb::optional.
3545 <m_want_specific_block>: Remove.
3546 <m_block_index>: Change type to gdb::optional.
3547 (dw2_debug_names_iterator::next): Change type of IS_STATIC to
3548 gdb::optional. Re-write in function of gdb::optional.
3549 (dw2_debug_names_lookup_symbol): Don't pass argument for
3550 WANT_SPECIFIC_BLOCK.
3551 (dw2_debug_names_expand_symtabs_for_function): Don't pass
3552 argument for WANT_SPECIFIC_BLOCK, pass empty optional for
3553 BLOCK_INDEX.
3554
3555 2019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3556
3557 * NEWS: Mention changes to "info sources" command.
3558
3559 2019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3560
3561 * symtab.c (filename_partial_match_opts): New struct type.
3562 (struct output_source_filename_data): New members
3563 regexp, c_regexp, partial_match.
3564 (output_source_filename): Use new members to decide to print file.
3565 (info_sources_option_defs): New variable.
3566 (make_info_sources_options_def_group, print_info_sources_header,
3567 info_sources_command_completer):
3568 New functions.
3569 (info_sources_command): Read new optional arguments.
3570 (_initialize_symtab): Update info sources help.
3571
3572 2019-08-02 Alexandre Oliva <oliva@adacore.com>
3573
3574 * ada-lang.c (exception_support_info_v0): Renamed from...
3575 (default_exception_support_info): ... this. Create new
3576 definition for v1.
3577 (ada_has_this_exception_support): Look up catch_handlers_sym.
3578 (ada_exception_support_info_sniffer): Try v0 after default.
3579
3580 2019-08-01 Tom Tromey <tromey@adacore.com>
3581
3582 * ia64-libunwind-tdep.h (struct libunwind_descr): Include
3583 gdbarch.h.
3584
3585 2019-08-01 Christian Biesinger <cbiesinger@google.com>
3586
3587 * s12z-tdep.c: Fix include path for s12z-opc.h.
3588
3589 2019-08-01 Alan Hayward <alan.hayward@arm.com>
3590
3591 * NEWS: Require GNU make 3.82.
3592
3593 2019-07-16 Tom Tromey <tom@tromey.com>
3594
3595 * tui/tui-wingeneral.h (tui_copy_win, tui_box_win): Don't
3596 declare.
3597
3598 2019-07-30 Tom Tromey <tromey@adacore.com>
3599
3600 * block.c (contained_in): Remove BLOCK_FUNCTION check.
3601
3602 2019-07-30 Kevin Buettner <kevinb@redhat.com>
3603
3604 * printcmd.c (print_address_symbolic): Print negative offsets.
3605 (build_address_symbolic): Force signed arithmetic when computing
3606 offset.
3607
3608 2019-07-30 Christian Biesinger <cbiesinger@google.com>
3609
3610 PR/24474: Add a function to lookup static variables.
3611 * NEWS: Mention this new function.
3612 * python/py-symbol.c (gdbpy_lookup_static_symbol): New function.
3613 * python/python-internal.h (gdbpy_lookup_static_symbol): New function.
3614 * python/python.c (python_GdbMethods): Add new function.
3615
3616 2019-07-29 Christian Biesinger <cbiesinger@google.com>
3617
3618 * NEWS: Mention new functions Objfile.lookup_{global,static}_symbol.
3619 * python/py-objfile.c (objfpy_lookup_global_symbol): New function.
3620 (objfpy_lookup_static_symbol): New function.
3621 (objfile_object_methods): Add new functions.
3622
3623 2019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3624
3625 * NEWS: Mention 'set|show print frame-info'. Mention new
3626 'presence' value for 'frame-arguments'. Mention new '-frame-info'
3627 backtrace argument. Mention that python frame filtering code
3628 is now consistent with what 'backtrace' command prints.
3629
3630 2019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3631
3632 * frame.h (enum print_what): New value 'SHORT_LOCATION', update
3633 comments.
3634 (print_frame_info_auto, print_frame_info_source_line,
3635 print_frame_info_location, print_frame_info_source_and_location,
3636 print_frame_info_location_and_address, print_frame_info_short_location):
3637 New declarations.
3638 (struct frame_print_options): New member print_frame_info.
3639 * extension.h (enum ext_lang_frame_args): New value CLI_PRESENCE.
3640 * stack.h (get_user_print_what_frame_info): New declaration.
3641 (frame_show_address): New declaration.
3642 * stack.c (print_frame_arguments_choices): New value 'presence'.
3643 (print_frame_info_auto, print_frame_info_source_line,
3644 print_frame_info_location, print_frame_info_source_and_location,
3645 print_frame_info_location_and_address, print_frame_info_short_location,
3646 print_frame_info_choices, print_frame_info_print_what): New definitions.
3647 (print_frame_args): Only print dots for args if print frame-arguments
3648 is 'presence'.
3649 (frame_print_option_defs): New element for "frame-info".
3650 (get_user_print_what_frame_info): New function.
3651 (frame_show_address): Make non static. Move comment to stack.h.
3652 (print_frame_info_to_print_what): New function.
3653 (print_frame_info): Update comment. Use fp_opts.print_frame_info
3654 to decide what to print.
3655 (backtrace_command_1): Handle the new print_frame_arguments_presence
3656 value.
3657 (_initialize_stack): Call add_setshow_enum_cmd for frame-info.
3658 * python/py-framefilter.c (py_print_args): Handle CLI_PRESENCE.
3659 (py_print_frame): In non-mi mode, use LOCATION as default for
3660 print_what, similarly to frame information printed directly by
3661 backtrace command. Handle frame-info user option in non MI mode.
3662
3663 2019-07-27 Kevin Buettner <kevinb@redhat.com>
3664
3665 * linux-thread-db.c (thread_db_target::thread_handle_to_thread_info):
3666 Add case for debugging 32-bit target on 64-bit host. Revise
3667 comment.
3668
3669 2019-07-27 Kevin Buettner <kevinb@redhat.com>
3670
3671 * infrun.c (fill_in_stop_func): Use find_pc_partial_function
3672 instead of find_function_entry_range_from_pc.
3673
3674 2019-07-27 Kevin Buettner <kevinb@redhat.com>
3675
3676 * stack.c (find_frame_funname): Remove code which preferred
3677 minsym over symtab sym in "certain pathological cases".
3678
3679 * valprint.h (build_address_symbolic): Add "prefer_sym_over_minsym"
3680 parameter. Change type of "do_demangle" to bool.
3681 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
3682 Pass suitable "prefer_sym_over_minsym" flag to
3683 build_address_symbolic(). Don't output "+" for negative offsets.
3684 * printcmd.c (print_address_symbolic): Update invocation of
3685 build_address_symbolic to include a "prefer_sym_over_minsym"
3686 flag.
3687 (build_address_symbolic): Add "prefer_sym_over_minsym" parameter.
3688 Restrict cases in which use of minimal symbol is preferred to that
3689 of a found symbol. Update comments.
3690
3691 * dwarf2-frame.c (dwarf2_frame_cache): Don't decode FDE instructions
3692 for entry pc when entry pc is out of range for that FDE.
3693
3694 2019-07-26 Brian Callahan <bcallah@openbsd.org>
3695
3696 PR gdb/24839:
3697 * gdb/obsd-nat.c (obsd_nat_target::pid_to_str): Fix typo in return
3698 type.
3699
3700 2019-07-25 Christian Biesinger <cbiesinger@google.com>
3701
3702 * python/py-objfile.c (add_separate_debug_file): Fix comment about
3703 this function's Python signature.
3704
3705
3706 2019-07-24 Christian Biesinger <cbiesinger@google.com>
3707
3708 * compile/compile-object-load.c (compile_object_load): Pass GLOBAL_SCOPE.
3709 * solib-spu.c (spu_lookup_lib_symbol): Pass GLOBAL_SCOPE.
3710 * solib-svr4.c (elf_lookup_lib_symbol): Pass GLOBAL_SCOPE.
3711 * symtab.c (lookup_global_symbol_from_objfile): Add a scope parameter.
3712 * symtab.h (lookup_global_symbol_from_objfile): Likewise.
3713
3714
3715 2019-07-24 Yoshinori Sato <ysato@users.sourceforge.jp>
3716
3717 * h8300-tdep.c (h8300_register_name_common): New.
3718 h8300_register_name): Use h8300_register_name_common.
3719 (h8300s_register_name): Likewise.
3720 (h8300sx_register_name): Likewise.
3721 (h8300h_register_nam): New.
3722 (h8300_gdbarch_init): Use h8300h_register_name in h8300h machine.
3723
3724
3725 2019-07-23 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
3726
3727 * arm-tdep.c (arm_skip_cmse_entry): New function.
3728 (arm_is_sgstubs_section): New function.
3729 (arm_skip_stub): Add call to arm_skip_cmse_entry function.
3730
3731 2019-07-22 Tom Tromey <tom@tromey.com>
3732
3733 * tui/tui-win.c (tui_win_info::make_invisible_and_set_new_height):
3734 Don't self-assign.
3735
3736 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
3737
3738 * c-typeprint.c (c_print_typedef): Pass -1 instead of 0 to
3739 type_print.
3740
3741 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
3742
3743 * symtab.c (search_symbols): Adjust msymbol matching type arrays
3744 so that GDB doesn't match any msymbols when searching in the
3745 TYPES_DOMAIN.
3746 (print_symbol_info): Print using typedef_print or type_print based
3747 on the type of the symbol. Add updated FIXME comment moved from...
3748 (_initialize_symtab): ... move and update FIXME comment to above.
3749
3750 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
3751
3752 * NEWS: Mention adding -q option to "info types".
3753 * symtab.c (struct info_types_options): New struct.
3754 (info_types_options_defs): New variable.
3755 (make_info_types_options_def_group): New function.
3756 (info_types_command): Use gdb::option framework to parse options.
3757 (info_types_command_completer): New function.
3758 (_initialize_symtab): Extend the help text on "info types" and
3759 register command completer.
3760
3761 2019-07-21 Christian Biesinger <cbiesinger@google.com>
3762
3763 * symtab.c (lookup_symbol_in_objfile_symtabs): Change int to block_enum.
3764 (lookup_symbol_in_objfile): Change int to block_enum and add a
3765 gdb_assert to make sure block_index is GLOBAL_BLOCK or STATIC_BLOCK.
3766
3767 2019-07-20 Christian Biesinger <cbiesinger@google.com>
3768
3769 * MAINTAINERS (Write After Approval): Add self.
3770
3771 2019-07-19 Andrew Burgess <andrew.burgess@embecosm.com>
3772
3773 * riscv-tdep.c (riscv_push_dummy_code): Write a 4-byte nop
3774 instruction to the dummy code region.
3775
3776 2019-07-19 Tom Tromey <tromey@adacore.com>
3777
3778 * contrib/ari/gdb_ari.sh: Mention C++11, not ISO C 90.
3779 (ARGSUSED, PARAMS, __func__): Remove rules.
3780
3781 2019-07-19 Alan Hayward <alan.hayward@arm.com>
3782
3783 * arm-tdep.c (_initialize_arm_tdep): Remove xml tests.
3784 * features/arm/arm-with-iwmmxt.c: Remove.
3785 * features/arm/arm-with-iwmmxt.xml: Remove.
3786 * features/arm/arm-with-m-fpa-layout.c: Remove.
3787 * features/arm/arm-with-m-fpa-layout.xml: Remove.
3788 * features/arm/arm-with-m-vfp-d16.c: Remove.
3789 * features/arm/arm-with-m-vfp-d16.xml: Remove.
3790 * features/arm/arm-with-m.c: Remove.
3791 * features/arm/arm-with-m.xml: Remove.
3792 * features/arm/arm-with-neon.c: Remove.
3793 * features/arm/arm-with-neon.xml: Remove.
3794 * features/arm/arm-with-vfpv2.c: Remove.
3795 * features/arm/arm-with-vfpv2.xml: Remove.
3796 * features/arm/arm-with-vfpv3.c: Remove.
3797 * features/arm/arm-with-vfpv3.xml: Remove.
3798
3799 2019-07-19 Alan Hayward <alan.hayward@arm.com>
3800
3801 * arm-tdep.c (_initialize_arm_tdep): Add xml regression tests.
3802
3803 2019-07-19 Alan Hayward <alan.hayward@arm.com>
3804
3805 * arch/aarch32.c (aarch32_create_target_description): Create
3806 target descriptions using features.
3807 * arch/arm.c (arm_create_target_description)
3808 (arm_create_mprofile_target_description): Likewise.
3809 * arm-tdep.c (_initialize_arm_tdep): Remove tdesc init calls.
3810
3811 2019-07-19 Alan Hayward <alan.hayward@arm.com>
3812
3813 * Makefile.in: Add new files.
3814 * aarch32-tdep.c: New file.
3815 * aarch32-tdep.h: New file.
3816 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
3817 Call aarch32_read_description.
3818 * arch/aarch32.c: New file.
3819 * arch/aarch32.h: New file.
3820 * arch/arm.c (arm_create_target_description)
3821 (arm_create_mprofile_target_description): New function.
3822 * arch/arm.h (arm_fp_type, arm_m_profile_type): New enum.
3823 (arm_create_target_description)
3824 (arm_create_mprofile_target_description): New declaration.
3825 * arm-fbsd-tdep.c (arm_fbsd_read_description_auxv): Call
3826 read_description functions.
3827 * arm-linux-nat.c (arm_linux_nat_target::read_description):
3828 Likewise.
3829 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
3830 * arm-tdep.c (tdesc_arm_list): New variable.
3831 (arm_register_g_packet_guesses): Call create description functions.
3832 (arm_read_description) (arm_read_mprofile_description): New
3833 function.
3834 * arm-tdep.h (arm_read_description)
3835 (arm_read_mprofile_description): Add declaration.
3836 * configure.tgt: Add new files.
3837
3838 2019-07-18 Guillaume LABARTHE <guillaume.labarthe@gmail.com>
3839
3840 * top.c (new_ui_command): Open specified terminal just once.
3841
3842 2019-07-18 Tom Tromey <tromey@adacore.com>
3843
3844 * symtab.c (main_name): Constify return type.
3845 * symfile.c (set_initial_language): Update.
3846 * symtab.h (main_name): Constify return type.
3847
3848 2019-07-17 Tom Tromey <tom@tromey.com>
3849
3850 * tui/tui-winsource.c (tui_update_source_window)
3851 (tui_update_source_window_as_is)
3852 (tui_update_source_windows_with_line): Remove return.
3853 * tui/tui-disasm.c (tui_show_disassem)
3854 (tui_show_disassem_and_update_source): Remove return.
3855 * tui/tui.c (tui_reset): Remove return.
3856 * tui/tui-wingeneral.c
3857 (tui_check_and_display_highlight_if_needed): Remove return.
3858
3859 2019-07-17 Tom Tromey <tom@tromey.com>
3860
3861 * tui/tui-win.c (parse_scrolling_args): Throw separate errors.
3862
3863 2019-07-17 Tom Tromey <tom@tromey.com>
3864
3865 * tui/tui-winsource.h (struct tui_exec_info_window)
3866 (struct tui_source_window_base): Move from tui-data.h.
3867 * tui/tui-winsource.c: Move many method definitions from
3868 elsewhere. Remove "structuring" comments.
3869 * tui/tui-wingeneral.c (tui_source_window_base::make_visible)
3870 (tui_source_window_base::refresh_window): Move to
3871 tui-winsource.c.
3872 * tui/tui-win.c (tui_source_window_base::refresh_all)
3873 (tui_source_window_base::update_tab_width)
3874 (tui_source_window_base::set_new_height)
3875 (tui_source_window_base::do_make_visible_with_new_height): Move to
3876 tui-winsource.c.
3877 * tui/tui-source.h: Update.
3878 * tui/tui-source.c (tui_source_window_base::reset): Move to
3879 tui-winsource.c.
3880 * tui/tui-disasm.h: Update.
3881 * tui/tui-data.h (struct tui_exec_info_window): Move to
3882 tui-winsource.h.
3883 (struct tui_source_window_base): Likewise.
3884 * tui/tui-data.c (tui_source_window_base::clear_detail)
3885 (tui_source_window_base, ~tui_source_window_base): Move to
3886 tui-winsource.c.
3887
3888 2019-07-17 Tom Tromey <tom@tromey.com>
3889
3890 * tui/tui-win.c (tui_resize_all)
3891 (tui_source_window_base::update_tab_width)
3892 (tui_adjust_win_heights): Update.
3893 (tui_win_info::make_invisible_and_set_new_height): Rename from
3894 make_invisible_and_set_new_height.
3895 * tui/tui-data.h (struct tui_win_info)
3896 <make_invisible_and_set_new_height>: New method.
3897
3898 2019-07-17 Tom Tromey <tom@tromey.com>
3899
3900 * tui/tui.c: Update.
3901 * tui/tui-source.h (struct tui_source_window): Move from
3902 tui-data.h.
3903 * tui/tui-layout.c: Update.
3904 * tui/tui-disasm.c: Update.
3905 * tui/tui-data.h (struct tui_source_window): Move to
3906 tui-source.h.
3907
3908 2019-07-17 Tom Tromey <tom@tromey.com>
3909
3910 * tui/tui-disasm.h (struct tui_disasm_window): Move from
3911 tui-data.h.
3912 * tui/tui-data.h (struct tui_disasm_window): Move to
3913 tui-disasm.h.
3914
3915 2019-07-17 Tom Tromey <tom@tromey.com>
3916
3917 * tui/tui-regs.h (struct tui_data_item_window): Move from
3918 tui-data.h.
3919 * tui/tui-regs.c (tui_data_item_window): Move from tui-data.c.
3920 * tui/tui-data.h (struct tui_data_item_window): Move to
3921 tui-regs.h.
3922 * tui/tui-data.c (~tui_data_item_window): Move to tui-regs.c.
3923
3924 2019-07-17 Tom Tromey <tom@tromey.com>
3925
3926 * tui/tui.c: Update.
3927 * tui/tui-win.c (tui_cmd_window::do_make_visible_with_new_height)
3928 (tui_cmd_window::max_height): Move to tui-command.c.
3929 * tui/tui-layout.c: Update.
3930 * tui/tui-data.h (struct tui_cmd_window): Move to tui-command.h.
3931 * tui/tui-data.c (tui_cmd_window::clear_detail): Move to
3932 tui-command.c.
3933 * tui/tui-command.h (struct tui_cmd_window): Move from
3934 tui-data.h.
3935 * tui/tui-command.c: Remove "structuring" comments.
3936 (tui_cmd_window::clear_detail)
3937 (tui_cmd_window::do_make_visible_with_new_height)
3938 (tui_cmd_window::max_height): Move from elsewhere.
3939
3940 2019-07-17 Tom Tromey <tom@tromey.com>
3941
3942 * tui/tui-io.c (tui_dispatch_ctrl_char): Move from tui-command.c.
3943 Now static.
3944 * tui/tui-command.h (tui_dispatch_ctrl_char): Don't declare.
3945 * tui/tui-command.c (tui_dispatch_ctrl_char): Move to tui-io.c.
3946
3947 2019-07-17 Tom Tromey <tom@tromey.com>
3948
3949 * tui/tui.c: Update.
3950 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Move to
3951 tui-regs.c.
3952 * tui/tui-windata.h: Remove file.
3953 * tui/tui-windata.c: Remove file.
3954 * tui/tui-win.c (tui_data_window::set_new_height)
3955 (tui_data_window::do_make_visible_with_new_height): Move to
3956 tui-regs.c.
3957 * tui/tui-regs.h (struct tui_data_window): Move from tui-data.h.
3958 * tui/tui-regs.c: Remove "structuring" comments.
3959 (tui_data_window::first_data_item_displayed)
3960 (tui_data_window::delete_data_content_windows)
3961 (tui_data_window::erase_data_content)
3962 (tui_data_window::display_all_data)
3963 (tui_data_window::refresh_all)
3964 (tui_data_window::do_scroll_vertical)
3965 (tui_data_window::clear_detail, tui_data_window::set_new_height)
3966 (tui_data_window::do_make_visible_with_new_height)
3967 (tui_data_window::refresh_window): Move from elsewhere.
3968 (_initialize_tui_regs): Move to end of file.
3969 * tui/tui-layout.c: Update.
3970 * tui/tui-hooks.c: Update.
3971 * tui/tui-data.h (struct tui_data_window): Move to tui-regs.h.
3972 * tui/tui-data.c (tui_data_window::clear_detail): Move to
3973 tui-regs.c.
3974 * Makefile.in (SUBDIR_TUI_SRCS): Remove tui-windata.c.
3975
3976 2019-07-17 Tom Tromey <tom@tromey.com>
3977
3978 * tui/tui-io.c (tui_puts_internal): Call wrefresh if newline is
3979 seen.
3980
3981 2019-07-17 Tom Tromey <tom@tromey.com>
3982
3983 * tui/tui-win.c (tui_source_window_base::set_new_height)
3984 (tui_source_window_base::do_make_visible_with_new_height): Use
3985 m_has_locator field directly.
3986 * tui/tui-data.h (struct tui_win_info) <has_locator>: Remove
3987 method.
3988 (struct tui_source_window_base) <has_locator>: Likewise.
3989
3990 2019-07-17 Tom Tromey <tom@tromey.com>
3991
3992 * tui/tui-wingeneral.h (tui_make_visible, tui_make_invisible):
3993 Don't declare.
3994 * tui/tui-wingeneral.c (tui_make_visible, tui_make_invisible):
3995 Remove.
3996 * tui/tui-win.c (tui_source_window_base::set_new_height)
3997 (tui_source_window_base::set_new_height)
3998 (make_invisible_and_set_new_height)
3999 (tui_source_window_base::do_make_visible_with_new_height)
4000 (tui_source_window_base::do_make_visible_with_new_height):
4001 Update.
4002 * tui/tui-layout.c (show_source_disasm_command, show_data)
4003 (show_source_or_disasm_and_command): Update.
4004 * tui/tui-layout.c (show_layout): Update.
4005
4006 2019-07-17 Tom Tromey <tom@tromey.com>
4007
4008 * tui/tui-layout.c (make_data_window): Remove.
4009 (show_data): Unify creation and re-initialization cases.
4010
4011 2019-07-17 Tom Tromey <tom@tromey.com>
4012
4013 * tui/tui-layout.c (make_source_window, make_disasm_window):
4014 Remove.
4015 (show_data): Unify creation and re-initialization cases.
4016
4017 2019-07-17 Tom Tromey <tom@tromey.com>
4018
4019 * tui/tui-layout.c (make_command_window): Remove.
4020 (show_source_disasm_command, show_source_or_disasm_and_command):
4021 Unify creation and re-initialization cases.
4022
4023 2019-07-17 Tom Tromey <tom@tromey.com>
4024
4025 * tui/tui-layout.c (show_source_or_disasm_and_command): Unify
4026 creation and re-initialization cases.
4027
4028 2019-07-17 Tom Tromey <tom@tromey.com>
4029
4030 * tui/tui-regs.c (tui_get_register): Return void.
4031
4032 2019-07-17 Tom Tromey <tom@tromey.com>
4033
4034 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible):
4035 Simplify.
4036
4037 2019-07-17 Tom Tromey <tom@tromey.com>
4038
4039 * tui/tui-layout.c (show_source_disasm_command): Simplify window
4040 resetting.
4041
4042 2019-07-17 Tom Tromey <tom@tromey.com>
4043
4044 * tui/tui.h (tui_set_layout_by_name): Don't declare.
4045 * tui/tui-regs.c (tui_reg_layout): New function.
4046 (tui_show_registers, tui_reg_command): Use it.
4047 * tui/tui-layout.c (LAYOUT_USAGE): Remove.
4048 (tui_layout_command): Rename from tui_set_layout_by_name. Change
4049 parameters.
4050 (tui_layout_command): Remove.
4051
4052 2019-07-17 Tom Tromey <tom@tromey.com>
4053
4054 * tui/tui-layout.h (tui/tui-layout): Return void.
4055 * tui/tui-layout.c (tui_set_layout): Return void. Add assert.
4056
4057 2019-07-17 Tom Tromey <tom@tromey.com>
4058
4059 * tui/tui-layout.c (show_source_disasm_command, show_data):
4060 Update.
4061 (reset_locator): Remove.
4062 (show_source_or_disasm_and_command): Update.
4063
4064 2019-07-17 Tom Tromey <tom@tromey.com>
4065
4066 * tui/tui-source.c (tui_source_window_base::reset): Remove
4067 win_type parameter.
4068 * tui/tui-layout.c (make_command_window, make_source_window)
4069 (make_disasm_window, make_data_window)
4070 (show_source_disasm_command, show_data, tui_gen_win_info::reset)
4071 (reset_locator, show_source_or_disasm_and_command): Update.
4072 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Remove
4073 win_type parameter.
4074 (struct tui_source_window_base) <reset>: Likewise.
4075
4076 2019-07-17 Tom Tromey <tom@tromey.com>
4077
4078 * tui/tui-layout.c (show_source_disasm_command): Use
4079 reset_locator.
4080 (reset_locator): New function.
4081 (init_and_make_win): Remove.
4082 (show_source_or_disasm_and_command): Use reset_locator.
4083
4084 2019-07-17 Tom Tromey <tom@tromey.com>
4085
4086 * tui/tui-winsource.c (tui_set_exec_info_content): Remove
4087 condition.
4088 * tui/tui-wingeneral.c (tui_source_window_base::make_visible):
4089 Remove condition.
4090 * tui/tui-source.c (tui_source_window_base::reset): New method.
4091 * tui/tui-layout.c (make_command_window): Don't call
4092 init_and_make_win.
4093 (make_source_window, make_disasm_window): Don't call
4094 make_source_or_disasm_window.
4095 (make_data_window): Don't call init_and_make_win. Change calling
4096 convention.
4097 (show_source_disasm_command, show_data): Simplify.
4098 (make_source_or_disasm_window): Remove.
4099 (show_source_or_disasm_and_command): Simplify.
4100 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Now virtual.
4101 (struct tui_source_window_base) <reset>: Likewise.
4102 <execution_info>: Remove initializer.
4103 * tui/tui-data.c (tui_source_window_base): Initialize
4104 execution_info.
4105
4106 2019-07-17 Tom Tromey <tom@tromey.com>
4107
4108 * tui/tui-layout.c (tui_set_layout): Remove regs_populate
4109 variable.
4110
4111 2019-07-17 Tom Tromey <tom@tromey.com>
4112
4113 * tui/tui.c (tui_rl_other_window): Update.
4114 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Call
4115 superclass method first. Always iterate over regs_content.
4116 (tui_unhighlight_win, tui_highlight_win): Use refresh_window
4117 method.
4118 * tui/tui-win.c (tui_set_focus_command): Update.
4119
4120 2019-07-17 Tom Tromey <tom@tromey.com>
4121
4122 * tui/tui-win.c (tui_set_focus_command): Rename from
4123 tui_set_focus. Call tui_enable.
4124 (tui_set_focus_command): Remove.
4125
4126 2019-07-17 Tom Tromey <tom@tromey.com>
4127
4128 * tui/tui-winsource.c (tui_show_exec_info_content): Don't call
4129 refresh_window.
4130 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Call
4131 touchwin.
4132 (tui_data_window::refresh_window): Call refresh_window on data
4133 items. Always call superclass refresh_window.
4134 (tui_win_info::refresh): Remove.
4135 (tui_source_window_base::refresh_window): Update.
4136 (tui_refresh_all): Update.
4137 * tui/tui-layout.c (show_source_disasm_command): Remove call to
4138 refresh_window.
4139 (show_source_or_disasm_and_command): Likewise.
4140 * tui/tui-data.h (struct tui_win_info) <refresh>: Remove.
4141 (struct tui_source_window_base) <refresh>: Likewise.
4142
4143 2019-07-17 Tom Tromey <tom@tromey.com>
4144
4145 * tui/tui-winsource.c (tui_clear_source_content)
4146 (tui_show_source_content): Update.
4147 * tui/tui-source.c (tui_source_window::showing_source_p): Check
4148 whether content is empty.
4149 * tui/tui-data.h (struct tui_source_window_base) <content_in_use>:
4150 Remove.
4151
4152 2019-07-17 Tom Tromey <tom@tromey.com>
4153
4154 * tui/tui-winsource.c (tui_erase_source_content): Clear the
4155 window's contents.
4156 * tui/tui-source.h (tui_set_source_content_nil): Don't declare.
4157 * tui/tui-source.c (tui_set_source_content_nil): Remove.
4158
4159 2019-07-17 Tom Tromey <tom@tromey.com>
4160
4161 * tui/tui-data.h (UNDEFINED_ITEM): Remove define.
4162 (struct tui_data_item_window): Update.
4163
4164 2019-07-17 Tom Tromey <tom@tromey.com>
4165
4166 * tui/tui-data.h (MAX_CONTENT_COUNT, TUI_NULL_STR)
4167 (DEFAULT_HISTORY_COUNT, WITH_LOCATOR, NO_LOCATOR): Remove
4168 defines.
4169
4170 2019-07-17 Tom Tromey <tom@tromey.com>
4171
4172 * tui/tui-winsource.h (tui_erase_source_content)
4173 (tui_clear_source_content): Remove "display_prompt" parameter.
4174 * tui/tui-winsource.c (tui_update_source_window_as_is)
4175 (tui_update_source_windows_with_addr): Update.
4176 (tui_clear_source_content): Remove "display_prompt" parameter.
4177 (tui_erase_source_content): Likewise. Simplify.
4178 (tui_show_source_content): Update.
4179 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
4180 * tui/tui-stack.c (tui_show_frame_info): Update.
4181 * tui/tui-data.h (EMPTY_SOURCE_PROMPT, NO_EMPTY_SOURCE_PROMPT):
4182 Remove defines.
4183
4184 2019-07-17 Tom Tromey <tom@tromey.com>
4185
4186 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
4187 * tui/tui-disasm.h (tui_set_disassem_content): Add win_info
4188 parameter.
4189 * tui/tui-disasm.c (tui_set_disassem_content): Add win_info
4190 parameter.
4191
4192 2019-07-17 Tom Tromey <tom@tromey.com>
4193
4194 * tui/tui-winsource.c (tui_clear_source_content)
4195 (tui_show_source_content, tui_show_exec_info_content)
4196 (tui_clear_exec_info_content): Update.
4197 * tui/tui-stack.c (tui_show_locator_content): Update.
4198 (tui_show_frame_info): Update.
4199 * tui/tui-source.h (tui_source_window): Don't declare.
4200 * tui/tui-source.c (tui_source_window::showing_source_p): Rename
4201 from tui_source_is_displayed.
4202 * tui/tui-data.h (struct tui_gen_win_info) <content_in_use>:
4203 Remove field.
4204 (struct tui_source_window_base) <content_in_use>: New field. Now
4205 bool.
4206 (struct tui_source_window) <showing_source_p>: New method.
4207 (TUI_SRC_WIN): Change cast.
4208 * tui/tui-data.c (tui_initialize_static_data): Update.
4209
4210 2019-07-17 Tom Tromey <tom@tromey.com>
4211
4212 * tui/tui-winsource.c (tui_update_breakpoint_info): Use
4213 location_matches_p.
4214 * tui/tui-source.c (tui_source_window::location_matches_p): New
4215 method.
4216 * tui/tui-disasm.c (tui_disasm_window::location_matches_p): New
4217 method.
4218 * tui/tui-data.h (struct tui_source_window_base)
4219 <location_matches_p>: New method.
4220 (struct tui_source_window, struct tui_disasm_window)
4221 <location_matches_p>: Likewise.
4222
4223 2019-07-17 Tom Tromey <tom@tromey.com>
4224
4225 * tui/tui-win.c (tui_set_win_height_command): Rename from
4226 tui_set_win_height.
4227 (tui_set_win_height_command): Remove.
4228
4229 2019-07-17 Tom Tromey <tom@tromey.com>
4230
4231 * tui/tui-source.c (tui_source_window): New constructor. Add
4232 observer.
4233 (~tui_source_window): New destructor.
4234 (tui_source_window::style_changed): New method.
4235 * tui/tui-hooks.c (tui_redisplay_source): Remove.
4236 (tui_attach_detach_observers): Update.
4237 * tui/tui-data.h (struct tui_source_window): Make constructor not
4238 inline. Add destructor.
4239 (struct tui_source_window) <style_changed>: New method.
4240 <m_observable>: New member.
4241
4242 2019-07-17 Tom Tromey <tom@tromey.com>
4243
4244 * tui/tui-data.c (tui_clear_source_windows_detail): Fix typo.
4245 * tui/tui-win.c (tui_resize_all): Fix typo.
4246
4247 2019-07-17 Tom Tromey <tom@tromey.com>
4248
4249 * tui/tui-wingeneral.h (tui_refresh_all): Update.
4250 * tui/tui-wingeneral.c (make_all_visible): Use foreach.
4251 (tui_refresh_all): Remove "list" parameter. Use foreach.
4252 * tui/tui-win.c (window_name_completer): Use foreach.
4253 (tui_refresh_all_win, tui_rehighlight_all, tui_all_windows_info)
4254 (update_tab_width): Likewise.
4255 * tui/tui-layout.c (show_layout): Update.
4256 * tui/tui-data.h (class tui_window_iterator): New.
4257 (struct all_tui_windows): New.
4258 * tui/tui-data.c (tui_partial_win_by_name): Use foreach.
4259
4260 2019-07-17 Tom Tromey <tom@tromey.com>
4261
4262 * tui/tui-regs.c (tui_reg_next, tui_reg_prev): Add "current_group"
4263 parameter. Don't reference globals.
4264 (tui_reg_command): Update.
4265
4266 2019-07-17 Tom Tromey <tom@tromey.com>
4267
4268 * tui/tui-regs.c (tui_show_registers): Simplify.
4269
4270 2019-07-17 Tom Tromey <tom@tromey.com>
4271
4272 * tui/tui-regs.c (tui_show_registers): Update.
4273 (tui_show_register_group): Add win_info parameter.
4274
4275 2019-07-17 Tom Tromey <tom@tromey.com>
4276
4277 * tui/tui-regs.c (tui_data_window::display_reg_element_at_line):
4278 Rename from tui_display_reg_element_at_line.
4279 (tui_data_window::display_registers_from_line): Update.
4280 * tui/tui-data.h (struct tui_data_window)
4281 <display_reg_element_at_line>: New method.
4282
4283 2019-07-17 Tom Tromey <tom@tromey.com>
4284
4285 * tui/tui-regs.h (tui_display_registers_from)
4286 (tui_display_registers_from_line): Don't declare.
4287 * tui/tui-windata.c (tui_data_window::display_all_data)
4288 (tui_data_window::refresh_all)
4289 (tui_data_window::do_scroll_vertical): Update.
4290 * tui/tui-regs.c (tui_data_window::display_registers_from): Rename
4291 from tui_display_registers_from.
4292 (tui_display_reg_element_at_line): Update.
4293 (tui_data_window::display_registers_from_line): Rename from
4294 tui_display_registers_from_line.
4295 * tui/tui-data.h (struct tui_data_window) <display_registers_from,
4296 display_registers_from_line>: New methods.
4297
4298 2019-07-17 Tom Tromey <tom@tromey.com>
4299
4300 * tui/tui-windata.h (tui_erase_data_content): Don't declare.
4301 * tui/tui-windata.c (tui_data_window::erase_data_content): Rename
4302 from tui_erase_data_content.
4303 (tui_data_window::display_all_data)
4304 (tui_data_window::refresh_all)
4305 (tui_data_window::do_scroll_vertical): Update.
4306 * tui/tui-regs.c (tui_show_registers): Update.
4307 * tui/tui-data.h (struct tui_data_window) <erase_data_content>:
4308 New method.
4309
4310 2019-07-17 Tom Tromey <tom@tromey.com>
4311
4312 * tui/tui-windata.h (tui_delete_data_content_windows): Don't
4313 declare.
4314 * tui/tui-windata.c
4315 (tui_data_window::delete_data_content_windows): Rename from
4316 tui_delete_data_content_windows.
4317 (tui_data_window::display_all_data)
4318 (tui_data_window::do_scroll_vertical): Update.
4319 * tui/tui-data.h (struct tui_data_window)
4320 <delete_data_content_windows>: New method.
4321
4322 2019-07-17 Tom Tromey <tom@tromey.com>
4323
4324 * tui/tui-windata.h (tui_refresh_data_win): Don't declare.
4325 * tui/tui-regs.h (tui_first_reg_element_inline): Don't declare.
4326
4327 2019-07-17 Tom Tromey <tom@tromey.com>
4328
4329 * tui/tui-windata.h (tui_display_all_data): Don't declare.
4330 * tui/tui-windata.c (tui_data_window::display_all_data): Rename
4331 from tui_display_all_data.
4332 * tui/tui-win.c
4333 (tui_data_window::do_make_visible_with_new_height): Update.
4334 * tui/tui-regs.c (tui_show_registers): Update.
4335 * tui/tui-layout.c (tui_set_layout): Update.
4336 * tui/tui-data.h (struct tui_data_window) <display_all_data>: New
4337 method.
4338
4339 2019-07-17 Tom Tromey <tom@tromey.com>
4340
4341 * tui/tui-windata.h (tui_display_data_from): Don't declare.
4342 * tui/tui-windata.c (tui_display_data_from): Remove.
4343 (tui_data_window::refresh_all): Update.
4344
4345 2019-07-17 Tom Tromey <tom@tromey.com>
4346
4347 * tui/tui-windata.h (tui_display_data_from_line): Don't declare.
4348 * tui/tui-windata.c (tui_display_data_from_line): Remove.
4349 (tui_display_data_from, tui_data_window::do_scroll_vertical): Call
4350 tui_display_registers_from_line.
4351 * tui/tui-regs.h (tui_display_registers_from_line): Update.
4352 * tui/tui-regs.c (tui_display_registers_from_line): Remove
4353 "force_display" parameter.
4354
4355 2019-07-17 Tom Tromey <tom@tromey.com>
4356
4357 * tui/tui-regs.h (tui_first_reg_element_no_inline): Don't
4358 declare.
4359 * tui/tui-regs.c (tui_data_window::first_reg_element_no_inline):
4360 Rename from tui_first_reg_element_no_inline.
4361 (tui_display_reg_element_at_line)
4362 (tui_display_registers_from_line): Update.
4363 * tui/tui-data.h (struct tui_data_window)
4364 <first_reg_element_no_inline>: New method.
4365
4366 2019-07-17 Tom Tromey <tom@tromey.com>
4367
4368 * tui/tui-windata.c (tui_display_data_from)
4369 (tui_data_window::do_scroll_vertical): Update.
4370 * tui/tui-regs.h (tui_line_from_reg_element_no): Don't declare.
4371 * tui/tui-regs.c (tui_data_window::line_from_reg_element_no):
4372 Rename from tui_line_from_reg_element_no.
4373 (tui_display_registers_from_line): Update.
4374 * tui/tui-data.h (struct tui_data_window)
4375 <line_from_reg_element_no>: New method.
4376
4377 2019-07-17 Tom Tromey <tom@tromey.com>
4378
4379 * tui/tui-regs.h (tui_last_regs_line_no): Don't declare.
4380 * tui/tui-regs.c (tui_data_window::last_regs_line_no): Rename from
4381 tui_last_regs_line_no.
4382 (tui_display_reg_element_at_line)
4383 (tui_display_registers_from_line): Update.
4384 * tui/tui-data.h (struct tui_data_window) <last_regs_line_no>: New
4385 method.
4386
4387 2019-07-17 Tom Tromey <tom@tromey.com>
4388
4389 PR tui/24722:
4390 * tui/tui-winsource.h (tui_update_all_breakpoint_info)
4391 (tui_update_breakpoint_info): Add "being_deleted" parameter.
4392 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
4393 (tui_update_all_breakpoint_info): Add "being_deleted" parameter.
4394 (tui_update_breakpoint_info): Likewise.
4395 * tui/tui-hooks.c (tui_event_create_breakpoint)
4396 (tui_event_delete_breakpoint, tui_event_modify_breakpoint):
4397 Update.
4398
4399 2019-07-17 Tom Tromey <tom@tromey.com>
4400
4401 * tui/tui-stack.c (tui_show_frame_info): Consolidate "if"s.
4402
4403 2019-07-17 Tom Tromey <tom@tromey.com>
4404
4405 * tui/tui-winsource.c (tui_update_source_window_as_is)
4406 (tui_update_source_windows_with_addr): Update.
4407 * tui/tui-source.h (tui_set_source_content)
4408 (tui_show_symtab_source): Add "win_info" parameter.
4409 * tui/tui-source.c (tui_set_source_content): Add "win_info"
4410 parameter.
4411 (tui_show_symtab_source): Likewise.
4412
4413 2019-07-17 Tom Tromey <tom@tromey.com>
4414
4415 * tui/tui-wingeneral.c
4416 (tui_check_and_display_highlight_if_needed): Check can_highlight.
4417
4418 2019-07-17 Tom Tromey <tom@tromey.com>
4419
4420 * tui/tui-data.h (struct tui_win_info) <can_scroll>: New method.
4421 (struct tui_cmd_window) <can_scroll>: New method.
4422 * tui/tui-command.c (tui_dispatch_ctrl_char): Use can_scroll
4423 method.
4424
4425 2019-07-17 Tom Tromey <tromey@adacore.com>
4426
4427 * ui-out.h (class ui_out) <field_signed, field_fmt_signed,
4428 do_field_signed>: Rename. Change type of "value".
4429 * ui-out.c (ui_out::field_signed): Rename from field_int.
4430 Change type of "value".
4431 (ui_out::field_fmt_signed): Rename from field_fmt_int. Change
4432 type of "value".
4433 * tui/tui-out.h (class tui_ui_out) <do_field_signed>: Rename from
4434 do_field_int. Change type of "value".
4435 * tui/tui-out.c (tui_ui_out::do_field_signed): Rename from
4436 do_field_int. Change type of "value".
4437 * tracepoint.c (trace_status_mi, tfind_1)
4438 (print_one_static_tracepoint_marker): Update.
4439 * thread.c (print_thread_info_1, print_selected_thread_frame):
4440 Update.
4441 * stack.c (print_frame, print_frame_info): Update.
4442 * spu-tdep.c (info_spu_signal_command, info_spu_dma_cmdlist):
4443 Update.
4444 * source.c (print_source_lines_base): Update.
4445 * skip.c (info_skip_command): Update.
4446 * record-btrace.c (btrace_ui_out_decode_error)
4447 (btrace_call_history_src_line): Update.
4448 * python/py-framefilter.c (py_print_single_arg, py_print_frame):
4449 Update.
4450 * progspace.c (print_program_space): Update.
4451 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Update.
4452 * mi/mi-out.h (class mi_ui_out) <do_field_signed>: Rename from
4453 do_field_int. Change type of "value".
4454 * mi/mi-out.c (mi_ui_out::do_table_begin)
4455 (mi_ui_out::do_table_header): Update.
4456 (mi_ui_out::do_field_signed): Rename from do_field_int. Change
4457 type of "value".
4458 * mi/mi-main.c (mi_cmd_thread_list_ids, print_one_inferior)
4459 (mi_cmd_data_list_changed_registers, output_register)
4460 (mi_cmd_data_read_memory, mi_load_progress)
4461 (mi_cmd_trace_frame_collected): Update.
4462 * mi/mi-interp.c (mi_on_normal_stop_1, mi_output_solib_attribs):
4463 Update.
4464 * mi/mi-cmd-var.c (print_varobj, mi_cmd_var_create)
4465 (mi_cmd_var_delete, mi_cmd_var_info_num_children)
4466 (mi_cmd_var_list_children, varobj_update_one): Update.
4467 * mi/mi-cmd-stack.c (mi_cmd_stack_info_depth)
4468 (mi_cmd_stack_list_args, list_arg_or_local): Update.
4469 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Update.
4470 * inferior.c (print_inferior): Update.
4471 * gdb_bfd.c (print_one_bfd): Update.
4472 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
4473 Update.
4474 * darwin-nat-info.c (darwin_debug_regions_recurse): Update.
4475 * cli-out.h (class cli_ui_out) <do_field_signed>: Rename from
4476 do_field_int. Change type of "value".
4477 * cli-out.c (cli_ui_out::do_field_signed): Rename from
4478 do_field_int. Change type of "value".
4479 * breakpoint.c (watchpoint_check, print_breakpoint_location)
4480 (print_one_breakpoint_location, print_it_catch_fork)
4481 (print_one_catch_fork, print_it_catch_vfork)
4482 (print_one_catch_vfork, print_it_catch_solib)
4483 (print_it_catch_exec, print_it_ranged_breakpoint)
4484 (print_mention_watchpoint, print_mention_masked_watchpoint)
4485 (bkpt_print_it, update_static_tracepoint): Update.
4486 * break-catch-throw.c (print_it_exception_catchpoint): Update.
4487 * break-catch-syscall.c (print_it_catch_syscall): Update.
4488 * ada-tasks.c (print_ada_task_info): Update.
4489 * ada-lang.c (print_it_exception, print_mention_exception):
4490 Update.
4491
4492 2019-07-17 Andrew Burgess <andrew.burgess@embecosm.com>
4493
4494 PR breakpoints/24541
4495 * gdbarch.c: Regenerate.
4496 * gdbarch.h: Regenerate.
4497 * gdbarch.sh: Adjust return type and parameter types for
4498 'stap_adjust_register'.
4499 (i386_stap_adjust_register): Adjust signature and return new
4500 register name.
4501 * stap-probe.c (stap_parse_register_operand): Adjust use of
4502 'gdbarch_stap_adjust_register'.
4503
4504 2019-07-17 Tom Tromey <tromey@adacore.com>
4505
4506 * s390-linux-nat.c (s390_watch_area): Remove typedef. Don't
4507 declare VEC.
4508 (struct s390_debug_reg_state) <watch_areas, break_areas>: Now
4509 std::vector.
4510 (struct s390_process_info): Add initializers.
4511 (s390_add_process): Use new.
4512 (s390_linux_nat_target::low_forget_process): Use delete.
4513 (s390_linux_nat_target::low_new_fork)
4514 (s390_linux_nat_target::stopped_by_watchpoint)
4515 (s390_linux_nat_target::low_prepare_to_resume)
4516 (s390_linux_nat_target::insert_watchpoint)
4517 (s390_linux_nat_target::insert_hw_breakpoint)
4518 (s390_linux_nat_target::remove_watchpoint)
4519 (s390_linux_nat_target::remove_hw_breakpoint): Update.
4520
4521 2019-07-16 John Baldwin <jhb@FreeBSD.org>
4522
4523 * aarch64-fbsd-nat.c: Include regcache.h.
4524 (getregs_supplies, getfpregs_supplies): Remove unused gdbarch
4525 argument.
4526 (aarch64_fbsd_nat_target::fetch_registers)
4527 (aarch64_fbsd_nat_target::store_registers): Remove gdbarch
4528 variable.
4529 * arm-fbsd-nat.c, riscv-fbsd-nat.c: Likewise.
4530
4531 2019-07-16 John Baldwin <jhb@FreeBSD.org>
4532
4533 * fbsd-nat.c: Include gdbarch.h.
4534
4535 2019-07-15 Tom Tromey <tromey@adacore.com>
4536
4537 * mi/mi-out.c (mi_ui_out::do_field_int): Use plongest.
4538
4539 2019-07-15 Tom Tromey <tromey@adacore.com>
4540
4541 * mi/mi-out.h (class mi_ui_out) <do_field_unsigned>: Declare.
4542 * mi/mi-out.c (mi_ui_out::do_field_unsigned): New method.
4543 * cli-out.h (class cli_ui_out) <do_field_unsigned>: Declare.
4544 * cli-out.c (cli_ui_out::do_field_int): New method.
4545 * ui-out.c (ui_out::field_unsigned): New method.
4546 * symfile.c (generic_load): Use field_unsigned.
4547 (print_transfer_performance): Likewise.
4548 * record-btrace.c (ui_out_field_uint): Remove.
4549 (btrace_call_history_insn_range, btrace_call_history): Use
4550 field_unsigned.
4551 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn): Use
4552 field_unsigned.
4553 * ui-out.h (class ui_out) <field_unsigned>: New method.
4554 <do_field_unsigned>: Likewise.
4555
4556 2019-07-15 Tom Tromey <tromey@adacore.com>
4557
4558 * mi/mi-main.c (list_available_thread_groups): Use field_string.
4559 * mi/mi-interp.c (mi_memory_changed): Use field_string.
4560 * target.c (flash_erase_command): Use field_string.
4561 * infrun.c (print_signal_received_reason): Use field_string.
4562 * i386-tdep.c (i386_mpx_print_bounds): Use field_string.
4563 * breakpoint.c (maybe_print_thread_hit_breakpoint): Use
4564 field_string.
4565 * ada-tasks.c (print_ada_task_info): Use field_string.
4566
4567 2019-07-15 Tom Tromey <tromey@adacore.com>
4568
4569 * target.c (flash_erase_command): Use field_core_addr.
4570 * symfile.c (generic_load): Use field_core_addr.
4571 * sparc64-linux-tdep.c (sparc64_linux_handle_segmentation_fault):
4572 Use field_core_addr.
4573 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): Use
4574 field_core_addr.
4575
4576 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
4577
4578 * dwarf2loc.c (dwarf2_evaluate_property): Sign extend property
4579 value if its desired type is smaller than a CORE_ADDR and signed.
4580
4581 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
4582
4583 * dwarf2loc.c (dwarf2_evaluate_property): Update to take account
4584 of changes to field names, and use new is_reference field to
4585 decide if a property is a reference or not.
4586 * dwarf2loc.h (struct dwarf2_locexpr_baton): Add 'is_reference'
4587 field.
4588 (struct dwarf2_property_baton): Update header comment, rename
4589 'referenced_type' to 'property_type' and update comments.
4590 * dwarf2read.c (attr_to_dynamic_prop): Add extra parameter to hold
4591 default property type, store in property baton, update to take
4592 accound of renamed field.
4593 (read_func_scope): Update call to attr_to_dynamic_prop.
4594 (read_array_type): Likewise.
4595 (dwarf2_per_cu_addr_sized_int_type): New function.
4596 (read_subrange_index_type): Move type finding code to
4597 dwarf2_per_cu_addr_sized_int_type.
4598 (read_subrange_type): Update calls to attr_to_dynamic_prop.
4599 (dwarf2_per_cu_addr_type): New function.
4600 (set_die_type): Update calls to attr_to_dynamic_prop.
4601
4602 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
4603
4604 * dwarf2read.c (read_subrange_index_type): New function.
4605 (read_subrange_type): Move code into new function and call it.
4606 * gdbtypes.c (create_range_type): Add some asserts.
4607
4608 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
4609
4610 * dwarf2loc.c (dwarf2_evaluate_property): Change return type, and
4611 update return statements.
4612 * dwarf2loc.h (dwarf2_evaluate_property): Update return type on
4613 declaration, and update comment to match.
4614 * gdbtypes.c (resolve_dynamic_array): Update call to
4615 dwarf2_evaluate_property to match new return type.
4616
4617 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
4618
4619 * valarith.c (value_subscripted_rvalue): Change lowerbound
4620 parameter type from int to LONGEST.
4621 * value.h (value_subscripted_rvalue): Likewise in declaration.
4622
4623 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
4624
4625 * cli/cli-utils.c (info_print_command_completer): New function.
4626 * cli/cli-utils.h: Add 'completer.h' include, and forward
4627 declaration for 'struct cmd_list_element'.
4628 (info_print_command_completer): Declare.
4629 * stack.c (_initialize_stack): Add completer for 'info locals' and
4630 'info args'.
4631 * symtab.c (_initialize_symtab): Add completer for 'info
4632 variables' and 'info functions'.
4633 * NEWS: Mention completion for additional info commands.
4634
4635 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
4636
4637 * cli/cli-utils.c (extract_info_print_args): Delete.
4638 (extract_arg_maybe_quoted): Delete.
4639 (info_print_options_defs): New variable.
4640 (make_info_print_options_def_group): New function.
4641 (extract_info_print_options): Define new function.
4642 * cli/cli-utils.h (extract_info_print_args): Delete.
4643 (struct info_print_options): New structure.
4644 (extract_info_print_options): Declare new function.
4645 * stack.c (info_locals_command): Update to use new
4646 extract_info_print_options, also add a header comment.
4647 (info_args_command): Likewise.
4648 * symtab.c (info_variables_command): Likewise.
4649 (info_functions_command): Likewise.
4650
4651 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
4652
4653 * cli/cli-option.c (parse_option): Use extract_string_maybe_quoted
4654 to extract string arguments.
4655 * common/common-utils.c (extract_string_maybe_quoted): New function.
4656 * common/common-utils.h (extract_string_maybe_quoted): Declare.
4657
4658 2019-07-11 Tom Tromey <tromey@adacore.com>
4659
4660 * main.c (get_init_files): Use GDBINIT, not gdbinit.
4661 * auto-load.c (file_is_auto_load_safe): Use GDBINIT, not gdbinit.
4662 * top.h (gdbinit): Don't declare.
4663 * cli/cli-cmds.c (init_cli_cmds): Remove, merging contents
4664 into...
4665 (_initialize_cli_cmds): ...here. Use GDBINIT, not gdbinit.
4666 * top.c (gdb_init): Don't call init_cli_cmds.
4667 (gdbinit): Remove.
4668 * cli/cli-cmds.h (init_cli_cmds): Don't declare.
4669
4670 2019-07-11 Tom Tromey <tromey@adacore.com>
4671
4672 * python/py-inferior.c (add_thread_object): Don't use thread_obj
4673 after it has been moved.
4674
4675 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
4676
4677 * valops.c (value_must_coerce_to_target): Change return type to
4678 bool.
4679 * value.h (value_must_coerce_to_target): Likewise.
4680
4681 2019-07-10 Simon Marchi <simon.marchi@efficios.com>
4682
4683 * breakpoint.c (is_hardware_watchpoint): Remove
4684 forward-declaration.
4685 (is_masked_watchpoint): Change return type to bool.
4686 (is_tracepoint): Likewise.
4687 (is_breakpoint): Likewise.
4688 (is_hardware_watchpoint): Likewise.
4689 (is_watchpoint): Likewise.
4690 (is_no_memory_software_watchpoint): Likewise.
4691 (is_catchpoint): Likewise.
4692 (breakpoint_1): Make FILTER parameter's return type bool.
4693 is_masked_watchpoint): Change return type to bool.
4694 (save_breakpoints): Make FILTER parameter's return type bool.
4695 * breakpoint.h (is_breakpoint): Change return type to bool.
4696 (is_watchpoint): Likewise.
4697 (is_catchpoint): Likewise.
4698 (is_tracepoint): Likewise.
4699
4700 2019-07-10 Tom Tromey <tom@tromey.com>
4701
4702 * defs.h: Don't include gdbarch.h.
4703 * aarch64-ravenscar-thread.c, aarch64-tdep.c, alpha-bsd-tdep.h,
4704 alpha-linux-tdep.c, alpha-mdebug-tdep.c, arch-utils.h, arm-tdep.h,
4705 ax-general.c, btrace.c, buildsym-legacy.c, buildsym.h, c-lang.c,
4706 cli/cli-decode.h, cli/cli-dump.c, cli/cli-script.h,
4707 cli/cli-style.h, coff-pe-read.h, compile/compile-c-support.c,
4708 compile/compile-cplus.h, compile/compile-loc2c.c, corefile.c,
4709 cp-valprint.c, cris-linux-tdep.c, ctf.c, d-lang.c, d-namespace.c,
4710 dcache.c, dicos-tdep.c, dictionary.c, disasm-selftests.c,
4711 dummy-frame.c, dummy-frame.h, dwarf2-frame-tailcall.c,
4712 dwarf2expr.c, expression.h, f-lang.c, frame-base.c,
4713 frame-unwind.c, frv-linux-tdep.c, gdbarch-selftests.c, gdbtypes.h,
4714 go-lang.c, hppa-nbsd-tdep.c, hppa-obsd-tdep.c, i386-dicos-tdep.c,
4715 i386-tdep.h, ia64-vms-tdep.c, interps.h, language.c,
4716 linux-record.c, location.h, m2-lang.c, m32r-linux-tdep.c,
4717 mem-break.c, memattr.c, mn10300-linux-tdep.c, nios2-linux-tdep.c,
4718 objfiles.h, opencl-lang.c, or1k-linux-tdep.c, p-lang.c,
4719 parser-defs.h, ppc-tdep.h, probe.h, python/py-record-btrace.c,
4720 record-btrace.c, record.h, regcache-dump.c, regcache.h,
4721 riscv-fbsd-tdep.c, riscv-linux-tdep.c, rust-exp.y,
4722 sh-linux-tdep.c, sh-nbsd-tdep.c, source-cache.c,
4723 sparc-nbsd-tdep.c, sparc-obsd-tdep.c, sparc-ravenscar-thread.c,
4724 sparc64-fbsd-tdep.c, std-regs.c, target-descriptions.h,
4725 target-float.c, tic6x-linux-tdep.c, tilegx-linux-tdep.c, top.c,
4726 tracefile.c, trad-frame.c, type-stack.h, ui-style.c, utils.c,
4727 utils.h, valarith.c, valprint.c, varobj.c, x86-tdep.c,
4728 xml-support.h, xtensa-linux-tdep.c, cli/cli-cmds.h: Update.
4729 * s390-linux-nat.c, procfs.c, inf-ptrace.c: Likewise.
4730
4731 2019-07-10 Tom Tromey <tromey@adacore.com>
4732
4733 * ada-lang.h (is_ada_exception_catchpoint): Declare.
4734 * breakpoint.c (init_ada_exception_breakpoint): Register as
4735 bp_catchpoint.
4736 (print_one_breakpoint_location, print_one_breakpoint): Use
4737 is_ada_exception_catchpoint.
4738 * ada-lang.c (class ada_catchpoint_location): Pass
4739 bp_loc_software_breakpoint to bp_location constructor.
4740 (is_ada_exception_catchpoint): New function.
4741
4742 2019-07-10 Tom Tromey <tromey@adacore.com>
4743
4744 * arm-tdep.c (arm_exidx_entry_s): Remove typedef. Don't define
4745 VEC.
4746 (struct arm_exidx_entry): New method operator<.
4747 (struct arm_exidx_data) <section_maps>: Change type.
4748 (arm_exidx_data_free): Remove.
4749 (arm_exidx_data_key): Change type. Move lower.
4750 (arm_exidx_new_objfile): Update.
4751 (arm_compare_exidx_entries): Remove.
4752 (arm_find_exidx_entry, _initialize_arm_tdep)
4753
4754 2019-07-10 Tom Tromey <tromey@adacore.com>
4755
4756 * solib-spu.c (ocl_program_data_key): Change type.
4757 (append_ocl_sos, ocl_enable_break, _initialize_spu_solib):
4758 Update.
4759
4760 2019-07-10 Tom Tromey <tromey@adacore.com>
4761
4762 * solib-aix.c (lm_info_aix_p): Remove typedef. Don't define VEC.
4763 (struct solib_aix_inferior_data) <library_list>: Change type.
4764 (solib_aix_inferior_data_handle): Change type.
4765 (get_solib_aix_inferior_data): Update.
4766 (solib_aix_free_library_list): Remove.
4767 (library_list_start_library): Update.
4768 (solib_aix_parse_libraries, solib_aix_get_library_list): Change
4769 return type.
4770 (solib_aix_get_library_list)
4771 (solib_aix_solib_create_inferior_hook, solib_aix_current_sos)
4772 (solib_aix_normal_stop_observer, _initialize_solib_aix): Update.
4773
4774 2019-07-10 Tom Tromey <tromey@adacore.com>
4775
4776 * solib-dsbt.c (struct dsbt_info): Add initializers.
4777 (solib_dsbt_pspace_data): Change type.
4778 (dsbt_pspace_data_cleanup): Remove.
4779 (get_dsbt_info, _initialize_dsbt_solib): Update.
4780
4781 2019-07-10 Tom Tromey <tromey@adacore.com>
4782
4783 * spu-tdep.c (spu_overlay_data): Change type.
4784 (spu_get_overlay_table, spu_overlay_new_objfile)
4785 (_initialize_spu_tdep): Update.
4786
4787 2019-07-10 Tom Tromey <tromey@adacore.com>
4788
4789 * gdb-stabs.h (struct dbx_symfile_info): Add initializers and
4790 destructor.
4791 (dbx_objfile_data_key): Change type and declare later.
4792 (DBX_SYMFILE_INFO): Rewrite.
4793 * dbxread.c (dbx_objfile_data_key): Change type.
4794 (dbx_symfile_init): Update.
4795 (~dbx_symfile_info): Rename from dbx_free_symfile_info. Update.
4796 (coffstab_build_psymtabs, elfstab_build_psymtabs)
4797 (stabsect_build_psymtabs, _initialize_dbxread): Update.
4798
4799 2019-07-10 Tom Tromey <tromey@adacore.com>
4800
4801 * jit.c (jit_program_space_key): Change type. Move lower.
4802 (get_jit_program_space_data): Update.
4803 (jit_program_space_data_cleanup): Remove.
4804 (jit_breakpoint_deleted, free_objfile_data, _initialize_jit):
4805 Update.
4806 (struct jit_program_space_data): Add initializers.
4807
4808 2019-07-10 Tom Tromey <tromey@adacore.com>
4809
4810 * solib-darwin.c (struct darwin_info): Add initializers.
4811 (solib_darwin_pspace_data): Change type.
4812 (darwin_pspace_data_cleanup): Remove.
4813 (get_darwin_info, _initialize_darwin_solib): Update.
4814
4815 2019-07-10 Tom Tromey <tromey@adacore.com>
4816
4817 * remote-sim.c (struct sim_inferior_data): Add initializers,
4818 constructor, and destructor.
4819 (sim_inferior_data_key): Change type. Move lower.
4820 (check_for_duplicate_sim_descriptor): Update.
4821 (get_sim_inferior_data): Use new. Update.
4822 (~sim_inferior_data_cleanup): Rename from
4823 sim_inferior_data_cleanup. Simplify.
4824 (gdbsim_close_inferior, simulator_command)
4825 (sim_command_completer, _initialize_remote_sim): Update.
4826 (next_pid, INITIAL_PID): Move earlier.
4827
4828 2019-07-10 Tom Tromey <tromey@adacore.com>
4829
4830 * python/python-internal.h (create_thread_object): Return
4831 gdbpy_ref.
4832 * python/py-infthread.c (create_thread_object): Return gdbpy_ref.
4833 * python/py-inferior.c (struct threadlist_entry): Add
4834 constructor.
4835 <thread_obj>: Now a gdbpy_ref.
4836 (thread_to_thread_object): Update.
4837 (add_thread_object): Use new.
4838 (delete_thread_object): Use delete.
4839 (infpy_threads): Update.
4840 (py_free_inferior): Update. Construct "inf_obj" after acquiring
4841 GIL.
4842
4843 2019-07-10 Tom Tromey <tromey@adacore.com>
4844
4845 * valops.c (value_cast): Specialize error message for Ada.
4846
4847 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
4848
4849 * breakpoint.c (breakpoint_1): Update doc and parameter names.
4850
4851 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
4852
4853 * breakpoint.h (bpstat_explains_signal, bpstat_causes_stop,
4854 bpstat_should_step): Return bool, adjust comments.
4855 * breakpoint.c (bpstat_explains_signal, bpstat_causes_stop,
4856 bpstat_should_step): Likewise.
4857
4858 2019-07-10 Alan Hayward <alan.hayward@arm.com>
4859
4860 * features/Makefile: Use feature target descriptions for Arm.
4861 * features/arm/arm-core.c: Generate new file.
4862 * features/arm/arm-fpa.c: Likewise.
4863 * features/arm/arm-m-profile-with-fpa.xml: Likewise.
4864 * features/arm/arm-m-profile.c: Likewise.
4865 * features/arm/arm-vfpv2.c: Likewise.
4866 * features/arm/arm-vfpv3.c: Likewise.
4867 * features/arm/xscale-iwmmxt.c: Likewise.
4868 * target-descriptions.c (maint_print_c_tdesc_cmd): Add Arm.
4869
4870 2019-07-10 Alan Hayward <alan.hayward@arm.com>
4871
4872 * arm-linux-nat.c (arm_linux_nat_target::read_description): Check
4873 ptrace earlier.
4874
4875 2019-07-10 Alan Hayward <alan.hayward@arm.com>
4876
4877 * features/aarch64-pauth.c: Regenerate.
4878
4879 2019-07-09 Simon Marchi <simon.marchi@polymtl.ca>
4880
4881 * breakpoint.h (struct bpstat_what) <is_longjmp>: Change type to
4882 bool.
4883 (bpstat_what): Use false instead of 0.
4884
4885 2019-07-09 Pedro Alves <palves@redhat.com>
4886
4887 * break-catch-throw.c (is_exception_catchpoint): New.
4888 * breakpoint.c (print_one_breakpoint_location): New parameter
4889 'raw_loc'. Handle it. Use
4890 is_watchpoint/is_catchpoint/is_exception_catchpoint instead of
4891 looking at the breakpoint's type.
4892 (print_one_breakpoint): If handling "maint info breakpoints", also
4893 print locations of exception catchpoints.
4894 * breakpoint.h (is_exception_catchpoint): Declare.
4895
4896 2019-07-09 Pedro Alves <palves@redhat.com>
4897
4898 * break-catch-throw.c (print_one_exception_catchpoint): Skip the
4899 "addr" field.
4900 (allocate_location_exception_catchpoint): New.
4901 (handle_gnu_v3_exceptions): Don't reset 'type' to bp_breakpoint.
4902 (initialize_throw_catchpoint_ops): Install
4903 allocate_location_exception_catchpoint as allocate_location
4904 method.
4905 * breakpoint.c (bpstat_what) <bp_catch>: Set action to
4906 BPSTAT_WHAT_SINGLE if not stopping and the location's type is not
4907 bp_loc_other.
4908 (breakpoint_address_is_meaningful): Delete.
4909 (bl_address_is_meaningful): New.
4910 (breakpoint_locations_match): Adjust comment.
4911 (bp_location_from_bp_type): New, factored out of...
4912 (bp_location::bp_location(breakpoint *)): ... this.
4913 (bp_location::bp_location(breakpoint *, bp_loc_type)): New,
4914 factored out of...
4915 (bp_location::bp_location(breakpoint *)): ... this. Reimplement.
4916 (bp_loc_is_permanent): Use bl_address_is_meaningful instead of
4917 breakpoint_address_is_meaningful.
4918 (bp_locations_compare): Adjust comment.
4919 (update_global_location_list): Use bl_address_is_meaningful
4920 instead of breakpoint_address_is_meaningful.
4921 * breakpoint.h (bp_location::bp_location(breakpoint *)): New
4922 explicit.
4923 (bp_location::bp_location(breakpoint *, bp_loc_type)): Declare.
4924 * python/py-breakpoint.c (bppy_get_location): No longer check
4925 whether location is null.
4926
4927 2019-07-09 Pedro Alves <palves@redhat.com>
4928
4929 PR c++/15468
4930 * breakpoint.c (print_one_breakpoint_location): Remove
4931 single-location assert.
4932
4933 2019-07-09 Tom Tromey <tom@tromey.com>
4934
4935 * contrib/ari/gdb_ari.sh: Change common to gdbsupport.
4936 * configure: Rebuild.
4937 * configure.ac: Change common to gdbsupport.
4938 * gdbsupport: Rename from common.
4939 * acinclude.m4: Change common to gdbsupport.
4940 * Makefile.in (CONFIG_SRC_SUBDIR, COMMON_SFILES)
4941 (HFILES_NO_SRCDIR, stamp-version, ALLDEPFILES): Change common to
4942 gdbsupport.
4943 * aarch64-tdep.c, ada-lang.c, ada-lang.h, agent.c, alloc.c,
4944 amd64-darwin-tdep.c, amd64-dicos-tdep.c, amd64-fbsd-nat.c,
4945 amd64-fbsd-tdep.c, amd64-linux-nat.c, amd64-linux-tdep.c,
4946 amd64-nbsd-tdep.c, amd64-obsd-tdep.c, amd64-sol2-tdep.c,
4947 amd64-tdep.c, amd64-windows-tdep.c, arch-utils.c,
4948 arch/aarch64-insn.c, arch/aarch64.c, arch/aarch64.h, arch/amd64.c,
4949 arch/amd64.h, arch/arm-get-next-pcs.c, arch/arm-linux.c,
4950 arch/arm.c, arch/i386.c, arch/i386.h, arch/ppc-linux-common.c,
4951 arch/riscv.c, arch/riscv.h, arch/tic6x.c, arm-tdep.c, auto-load.c,
4952 auxv.c, ax-gdb.c, ax-general.c, ax.h, breakpoint.c, breakpoint.h,
4953 btrace.c, btrace.h, build-id.c, build-id.h, c-lang.h, charset.c,
4954 charset.h, cli/cli-cmds.c, cli/cli-cmds.h, cli/cli-decode.c,
4955 cli/cli-dump.c, cli/cli-option.h, cli/cli-script.c,
4956 coff-pe-read.c, command.h, compile/compile-c-support.c,
4957 compile/compile-c.h, compile/compile-cplus-symbols.c,
4958 compile/compile-cplus-types.c, compile/compile-cplus.h,
4959 compile/compile-loc2c.c, compile/compile.c, completer.c,
4960 completer.h, contrib/ari/gdb_ari.sh, corefile.c, corelow.c,
4961 cp-support.c, cp-support.h, cp-valprint.c, csky-tdep.c, ctf.c,
4962 darwin-nat.c, debug.c, defs.h, disasm-selftests.c, disasm.c,
4963 disasm.h, dtrace-probe.c, dwarf-index-cache.c,
4964 dwarf-index-cache.h, dwarf-index-write.c, dwarf2-frame.c,
4965 dwarf2expr.c, dwarf2loc.c, dwarf2read.c, event-loop.c,
4966 event-top.c, exceptions.c, exec.c, extension.h, fbsd-nat.c,
4967 features/aarch64-core.c, features/aarch64-fpu.c,
4968 features/aarch64-pauth.c, features/aarch64-sve.c,
4969 features/i386/32bit-avx.c, features/i386/32bit-avx512.c,
4970 features/i386/32bit-core.c, features/i386/32bit-linux.c,
4971 features/i386/32bit-mpx.c, features/i386/32bit-pkeys.c,
4972 features/i386/32bit-segments.c, features/i386/32bit-sse.c,
4973 features/i386/64bit-avx.c, features/i386/64bit-avx512.c,
4974 features/i386/64bit-core.c, features/i386/64bit-linux.c,
4975 features/i386/64bit-mpx.c, features/i386/64bit-pkeys.c,
4976 features/i386/64bit-segments.c, features/i386/64bit-sse.c,
4977 features/i386/x32-core.c, features/riscv/32bit-cpu.c,
4978 features/riscv/32bit-csr.c, features/riscv/32bit-fpu.c,
4979 features/riscv/64bit-cpu.c, features/riscv/64bit-csr.c,
4980 features/riscv/64bit-fpu.c, features/tic6x-c6xp.c,
4981 features/tic6x-core.c, features/tic6x-gp.c, filename-seen-cache.h,
4982 findcmd.c, findvar.c, fork-child.c, gcore.c, gdb_bfd.c, gdb_bfd.h,
4983 gdb_proc_service.h, gdb_regex.c, gdb_select.h, gdb_usleep.c,
4984 gdbarch-selftests.c, gdbthread.h, gdbtypes.h, gnu-nat.c,
4985 go32-nat.c, guile/guile.c, guile/scm-ports.c,
4986 guile/scm-safe-call.c, guile/scm-type.c, i386-fbsd-nat.c,
4987 i386-fbsd-tdep.c, i386-go32-tdep.c, i386-linux-nat.c,
4988 i386-linux-tdep.c, i386-tdep.c, i387-tdep.c,
4989 ia64-libunwind-tdep.c, ia64-linux-nat.c, inf-child.c,
4990 inf-ptrace.c, infcall.c, infcall.h, infcmd.c, inferior-iter.h,
4991 inferior.c, inferior.h, inflow.c, inflow.h, infrun.c, infrun.h,
4992 inline-frame.c, language.h, linespec.c, linux-fork.c, linux-nat.c,
4993 linux-tdep.c, linux-thread-db.c, location.c, machoread.c,
4994 macrotab.h, main.c, maint.c, maint.h, memattr.c, memrange.h,
4995 mi/mi-cmd-break.h, mi/mi-cmd-env.c, mi/mi-cmd-stack.c,
4996 mi/mi-cmd-var.c, mi/mi-interp.c, mi/mi-main.c, mi/mi-parse.h,
4997 minsyms.c, mips-linux-tdep.c, namespace.h,
4998 nat/aarch64-linux-hw-point.c, nat/aarch64-linux-hw-point.h,
4999 nat/aarch64-linux.c, nat/aarch64-sve-linux-ptrace.c,
5000 nat/amd64-linux-siginfo.c, nat/fork-inferior.c,
5001 nat/linux-btrace.c, nat/linux-btrace.h, nat/linux-namespaces.c,
5002 nat/linux-nat.h, nat/linux-osdata.c, nat/linux-personality.c,
5003 nat/linux-procfs.c, nat/linux-ptrace.c, nat/linux-ptrace.h,
5004 nat/linux-waitpid.c, nat/mips-linux-watch.c,
5005 nat/mips-linux-watch.h, nat/ppc-linux.c, nat/x86-dregs.c,
5006 nat/x86-dregs.h, nat/x86-linux-dregs.c, nat/x86-linux.c,
5007 nto-procfs.c, nto-tdep.c, objfile-flags.h, objfiles.c, objfiles.h,
5008 obsd-nat.c, observable.h, osdata.c, p-valprint.c, parse.c,
5009 parser-defs.h, ppc-linux-nat.c, printcmd.c, probe.c, proc-api.c,
5010 procfs.c, producer.c, progspace.h, psymtab.h,
5011 python/py-framefilter.c, python/py-inferior.c, python/py-ref.h,
5012 python/py-type.c, python/python.c, record-btrace.c, record-full.c,
5013 record.c, record.h, regcache-dump.c, regcache.c, regcache.h,
5014 remote-fileio.c, remote-fileio.h, remote-sim.c, remote.c,
5015 riscv-tdep.c, rs6000-aix-tdep.c, rust-exp.y, s12z-tdep.c,
5016 selftest-arch.c, ser-base.c, ser-event.c, ser-pipe.c, ser-tcp.c,
5017 ser-unix.c, skip.c, solib-aix.c, solib-target.c, solib.c,
5018 source-cache.c, source.c, source.h, sparc-nat.c, spu-linux-nat.c,
5019 stack.c, stap-probe.c, symfile-add-flags.h, symfile.c, symfile.h,
5020 symtab.c, symtab.h, target-descriptions.c, target-descriptions.h,
5021 target-memory.c, target.c, target.h, target/waitstatus.c,
5022 target/waitstatus.h, thread-iter.h, thread.c, tilegx-tdep.c,
5023 top.c, top.h, tracefile-tfile.c, tracefile.c, tracepoint.c,
5024 tracepoint.h, tui/tui-io.c, ui-file.c, ui-out.h,
5025 unittests/array-view-selftests.c,
5026 unittests/child-path-selftests.c, unittests/cli-utils-selftests.c,
5027 unittests/common-utils-selftests.c,
5028 unittests/copy_bitwise-selftests.c, unittests/environ-selftests.c,
5029 unittests/format_pieces-selftests.c,
5030 unittests/function-view-selftests.c,
5031 unittests/lookup_name_info-selftests.c,
5032 unittests/memory-map-selftests.c, unittests/memrange-selftests.c,
5033 unittests/mkdir-recursive-selftests.c,
5034 unittests/observable-selftests.c,
5035 unittests/offset-type-selftests.c, unittests/optional-selftests.c,
5036 unittests/parse-connection-spec-selftests.c,
5037 unittests/ptid-selftests.c, unittests/rsp-low-selftests.c,
5038 unittests/scoped_fd-selftests.c,
5039 unittests/scoped_mmap-selftests.c,
5040 unittests/scoped_restore-selftests.c,
5041 unittests/string_view-selftests.c, unittests/style-selftests.c,
5042 unittests/tracepoint-selftests.c, unittests/unpack-selftests.c,
5043 unittests/utils-selftests.c, unittests/xml-utils-selftests.c,
5044 utils.c, utils.h, valarith.c, valops.c, valprint.c, value.c,
5045 value.h, varobj.c, varobj.h, windows-nat.c, x86-linux-nat.c,
5046 xml-support.c, xml-support.h, xml-tdesc.h, xstormy16-tdep.c,
5047 xtensa-linux-nat.c, dwarf2read.h: Change common to gdbsupport.
5048
5049 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
5050
5051 * linespec.c (decode_digits_list_mode): Set explicit_line to a
5052 bool value.
5053 (decode_digits_ordinary): Set explicit_line field in sal.
5054 * symtab.c (skip_prologue_sal): Don't skip prologue for a
5055 symtab_and_line that was set on an explicit line number in
5056 assembler code. Do always update the recorded symtab and line if
5057 we do skip the prologue.
5058
5059 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
5060
5061 * breakpoint.c (set_breakpoint_location_function): Remove
5062 explicit_loc parameter.
5063 (momentary_breakpoint_from_master): Update call to
5064 set_breakpoint_location_function.
5065 (add_location_to_breakpoint): Likewise.
5066
5067 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
5068
5069 * riscv-tdep.c (riscv_features_from_gdbarch_info): Don't modify
5070 required features based on default bfd type when no specific bfd
5071 is present.
5072
5073 2019-07-08 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5074
5075 * NEWS: Mention that GDB printf and eval commands can now print
5076 C-style and Ada-style convenience var strings without
5077 calling the inferior.
5078 * printcmd.c (printf_c_string): Locally print GDB internal var
5079 instead of transiting via the inferior.
5080 (printf_wide_c_string): Likewise.
5081
5082 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5083
5084 PR breakpoints/25011
5085 * symfile.c (symbol_file_command): Call solib_create_inferior_hook.
5086
5087 2019-07-04 Tom Tromey <tom@tromey.com>
5088
5089 PR tui/24724:
5090 * tui/tui-winsource.c (tui_clear_source_content): Update.
5091 (tui_source_window_base::set_is_exec_point_at): Fix comment.
5092 (tui_update_breakpoint_info): Update.
5093 (tui_set_exec_info_content): Update.
5094 * tui/tui-source.c (tui_set_source_content_nil): Update.
5095 * tui/tui-disasm.c (tui_set_disassem_content): Don't set
5096 has_break.
5097 * tui/tui-data.h (enum tui_bp_flag): New.
5098 (tui_bp_flags): New enum flags type.
5099 (struct tui_source_element) <break_mode>: Change type. Rename
5100 from has_break.
5101 (TUI_BP_ENABLED, TUI_BP_DISABLED, TUI_BP_HIT)
5102 (TUI_BP_CONDITIONAL, TUI_BP_HARDWARE): Don't define. Now enum
5103 constants.
5104 * tui/tui-winsource.h: Fix comment.
5105
5106 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5107
5108 * aarch32-linux-nat.h (VFP_REGS_SIZE): Remove define.
5109 * aarch64-linux-nat.c (fetch_fpregs_from_thread)
5110 (store_fpregs_to_thread)
5111 (aarch64_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
5112 * arch/arm.h (IWMMXT_VEC_REGISTER_SIZE, ARM_CORE_REGS_SIZE)
5113 (ARM_FP_REGS_SIZE, ARM_VFP2_REGS_SIZE, ARM_VFP3_REGS_SIZE)
5114 (IWMMXT_REGS_SIZE): Add define.
5115 * arm-linux-nat.c (IWMMXT_REGS_SIZE): Remove define.
5116 (fetch_vfp_regs, store_vfp_regs)
5117 (arm_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
5118 * arm-tdep.c (arm_register_g_packet_guesses): Use new defines.
5119
5120 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5121
5122 * arch/arm-get-next-pcs.c (thumb_get_next_pcs_raw): Use ARM_
5123 defines.
5124 * arch/arm-linux.c (arm_linux_sigreturn_next_pc_offset): Likewise.
5125 * arch/arm.h (INT_REGISTER_SIZE) Rename from...
5126 (ARM_INT_REGISTER_SIZE): ...to this.
5127 (ARM_FP_REGISTER_SIZE) (ARM_VFP_REGISTER_SIZE): Add define.
5128 * arm-linux-tdep.c (ARM_LINUX_JB_ELEMENT_SIZE)
5129 (ARM_LINUX_SIZEOF_GREGSET, arm_linux_supply_gregset)
5130 (arm_linux_collect_gregset, supply_nwfpe_register)
5131 (collect_nwfpe_register, arm_linux_collect_nwfpe): Use ARM_
5132 defines.
5133 * arm-linux-tdep.h (ARM_LINUX_SIZEOF_NWFPE, NWFPE_FPSR_OFFSET)
5134 (NWFPE_FPCR_OFFSET, NWFPE_TAGS_OFFSET): Likewise
5135 * arm-nbsd-tdep.c (ARM_NBSD_JB_ELEMENT_SIZE): Likewise.
5136 * arm-tdep.c (arm_push_dummy_call, arm_extract_return_value)
5137 (arm_return_in_memory, arm_store_return_value)
5138 (arm_get_longjmp_target, arm_register_g_packet_guesses)
5139 (arm_record_ld_st_multiple): Likewise.
5140 * arm-tdep.h (FP_REGISTER_SIZE, VFP_REGISTER_SIZE): Remove.
5141 * arm-wince-tdep.c (ARM_WINCE_JB_ELEMENT_SIZE): Use ARM_ defines.
5142
5143 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5144
5145 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Use
5146 AARCH64_DISPLACED_MODIFIED_INSNS.
5147 * aarch64-tdep.c (struct aarch64_displaced_step_data)
5148 (aarch64_displaced_step_copy_insn): Likewise.
5149 * aarch64-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
5150 (AARCH64_DISPLACED_MODIFIED_INSNS): ...to this.
5151 * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
5152 ARM_DISPLACED_MODIFIED_INSNS.
5153 * arm-tdep.c (arm_gdbarch_init): Likewise.
5154 * arm-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
5155 (ARM_DISPLACED_MODIFIED_INSNS): ...to this.
5156 (struct arm_displaced_step_closure): Use
5157 ARM_DISPLACED_MODIFIED_INSNS.
5158
5159 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5160
5161 * features/Makefile: Remove unused xml files.
5162 * features/aarch64.xml: Remove.
5163 * features/i386/amd64-avx-avx512-linux.xml: Remove.
5164 * features/i386/amd64-avx-avx512.xml: Remove.
5165 * features/i386/amd64-avx-linux.xml: Remove.
5166 * features/i386/amd64-avx-mpx-avx512-pku-linux.xml: Remove.
5167 * features/i386/amd64-avx-mpx-avx512-pku.xml: Remove.
5168 * features/i386/amd64-avx-mpx-linux.xml: Remove.
5169 * features/i386/amd64-avx-mpx.xml: Remove.
5170 * features/i386/amd64-avx.xml: Remove.
5171 * features/i386/amd64-linux.xml: Remove.
5172 * features/i386/amd64-mpx-linux.xml: Remove.
5173 * features/i386/amd64-mpx.xml: Remove.
5174 * features/i386/amd64.xml: Remove.
5175 * features/i386/i386-avx-avx512-linux.xml: Remove.
5176 * features/i386/i386-avx-avx512.xml: Remove.
5177 * features/i386/i386-avx-linux.xml: Remove.
5178 * features/i386/i386-avx-mpx-avx512-pku-linux.xml: Remove.
5179 * features/i386/i386-avx-mpx-avx512-pku.xml: Remove.
5180 * features/i386/i386-avx-mpx-linux.xml: Remove.
5181 * features/i386/i386-avx-mpx.xml: Remove.
5182 * features/i386/i386-avx.xml: Remove.
5183 * features/i386/i386-linux.xml: Remove.
5184 * features/i386/i386-mmx-linux.xml: Remove.
5185 * features/i386/i386-mmx.xml: Remove.
5186 * features/i386/i386-mpx-linux.xml: Remove.
5187 * features/i386/i386-mpx.xml: Remove.
5188 * features/i386/i386.xml: Remove.
5189 * features/i386/x32-avx-avx512-linux.xml: Remove.
5190 * features/i386/x32-avx-linux.xml: Remove.
5191 * features/i386/x32-linux.xml: Remove.
5192
5193 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5194
5195 * regformats/aarch64.dat: Remove.
5196 * regformats/i386/amd64-avx-avx512-linux.dat: Remove.
5197 * regformats/i386/amd64-avx-linux.dat: Remove.
5198 * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Remove.
5199 * regformats/i386/amd64-avx-mpx-linux.dat: Remove.
5200 * regformats/i386/amd64-linux.dat: Remove.
5201 * regformats/i386/amd64-mpx-linux.dat: Remove.
5202 * regformats/i386/amd64.dat: Remove.
5203 * regformats/i386/i386-avx-avx512-linux.dat: Remove.
5204 * regformats/i386/i386-avx-linux.dat: Remove.
5205 * regformats/i386/i386-avx-mpx-avx512-pku-linux.dat: Remove.
5206 * regformats/i386/i386-avx-mpx-linux.dat: Remove.
5207 * regformats/i386/i386-linux.dat: Remove.
5208 * regformats/i386/i386-mmx-linux.dat: Remove.
5209 * regformats/i386/i386-mpx-linux.dat: Remove.
5210 * regformats/i386/i386.dat: Remove.
5211 * regformats/i386/x32-avx-avx512-linux.dat: Remove.
5212 * regformats/i386/x32-avx-linux.dat: Remove.
5213 * regformats/i386/x32-linux.dat: Remove.
5214
5215 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5216
5217 * aarch64-tdep.c: Remove xml self tests.
5218 * amd64-linux-tdep.c: Likewise.
5219 * amd64-tdep.c: Likewise.
5220 * i386-linux-tdep.c: Likewise.
5221 * i386-tdep.c: Likewise.
5222
5223 2019-07-03 Pedro Alves <palves@redhat.com>
5224
5225 PR cli/24732
5226 * cli/cli-cmds.c (struct pipe_cmd_opts): New.
5227 (pipe_cmd_option_defs): New.
5228 (make_pipe_cmd_options_def_group): New.
5229 (pipe_command): Use gdb::option::process_options.
5230 (pipe_command_completer): New function.
5231 (_initialize_cli_cmds): Install completer for "pipe" command.
5232
5233 2019-07-03 Pedro Alves <palves@redhat.com>
5234
5235 * cli/cli-option.c (union option_value) <string>: New field.
5236 (struct option_def_and_value): Add ctor, move ctor, dtor and
5237 use DISABLE_COPY_AND_ASSIGN.
5238 (option_def_and_value::clear_value): New.
5239 (parse_option, save_option_value_in_ctx, get_val_type_str)
5240 (add_setshow_cmds_for_options): Handle var_string.
5241 * cli-option.h (union option_def::var_address) <string>: New
5242 field.
5243 (struct string_option_def): New.
5244 * maint-test-options.c (struct test_options_opts): Add default
5245 ctor and use DISABLE_COPY_AND_ASSIGN.
5246 <string_opt>: New field.
5247 (test_options_opts::~test_options_opts): New.
5248 (test_options_opts::dump): Also dump "-string".
5249 (test_options_option_defs): Install "string.
5250
5251 2019-07-03 Pedro Alves <palves@redhat.com>
5252
5253 * cli/cli-option.c (parse_option) <var_enum>: Don't return an
5254 option_value with a null enumeration.
5255 (complete_options): Save the option values in the context.
5256 (save_option_value_in_ctx): New, factored out from ...
5257 (process_options): ... here.
5258 * cli/cli-utils.c (get_ulongest): Don't advance PP until the end
5259 of the function.
5260 * maint-test-options.c (test_options_opts::dump): New, factored
5261 out from ...
5262 (maintenance_test_options_command_mode): ... here.
5263 (maintenance_test_options_command_completion_result): Delete.
5264 (maintenance_test_options_command_completion_text): Update
5265 comment.
5266 (maintenance_show_test_options_completion_result): Change
5267 prototype. Just print
5268 maintenance_test_options_command_completion_text.
5269 (save_completion_result): New.
5270 (maintenance_test_options_completer_mode): Pass options context to
5271 complete_options, and then save a dump.
5272 (_initialize_maint_test_options): Use add_cmd to install "maint
5273 show test-options-completion-result".
5274
5275 2019-07-03 Pedro Alves <palves@redhat.com>
5276
5277 * NEWS (New commands): Mention "with" and "maint with".
5278 * cli/cli-cmds.c (with_command_1, with_command_completer_1)
5279 (with_command, with_command_completer): New.
5280 (pipe_command): Adjust to new repeat_previous
5281 interface.
5282 (_initialize_cli_cmds): Install the "with" command and its "w"
5283 alias.
5284 * cli/cli-cmds.h (with_command_1, with_command_completer_1): New
5285 declarations.
5286 * cli/cli-setshow.c (parse_cli_var_uinteger)
5287 (parse_cli_var_zuinteger_unlimited, do_set_command): Handle empty
5288 argument strings for all var_types.
5289 (get_setshow_command_value_string): New, factored out from ...
5290 (do_show_command): ... this.
5291 * cli/cli-setshow.h: Include <string>.
5292 (get_setshow_command_value_string): Declare.
5293 * command.h (repeat_previous): Now returns const char *. Adjust
5294 comment.
5295 * maint.c: Include "cli/cli-cmds.h".
5296 (maintenance_with_cmd, maintenance_with_cmd_completer): New.
5297 (_initialize_maint_cmds): Register the "maintenance with" command.
5298 * top.c (repeat_previous): Move bits from pipe_command here:
5299 Return the saved command line, if any; error out if there's no
5300 command to relaunch.
5301
5302 2019-07-03 Pedro Alves <palves@redhat.com>
5303
5304 * NEWS (New commands): Mention "maint set/show test-settings"
5305 instead of "maint test-settings".
5306 * maint-test-settings.c (maintenance_test_settings_list): Delete.
5307 (maintenance_test_settings_set_list): Rename to ...
5308 (maintenance_set_test_settings_list): ... this.
5309 (maintenance_test_settings_show_list): Rename to ...
5310 (maintenance_show_test_settings_list): ... this.
5311 (maintenance_test_settings_cmd): Delete.
5312 (maintenance_test_settings_set_cmd): ...
5313 (maintenance_set_test_settings_cmd): ... this.
5314 (maintenance_test_settings_show_cmd): ...
5315 (maintenance_show_test_settings_cmd): ... this.
5316 (maintenance_test_settings_show_value_cmd):
5317 (maintenance_show_test_settings_value_cmd): ... this.
5318 (_initialize_maint_test_settings): No longer install the "maint
5319 test-settings" prefix command. Rename "maint test-settings set"
5320 to "maint set test-settings", and "maint test-settings show" to
5321 "maint show test-settings". Adjust all subcommands.
5322
5323 2019-07-03 Pedro Alves <palves@redhat.com>
5324
5325 * maint-test-settings.c: Fix file's intro comment. Replace all
5326 references to "test-options" with references to "test-settings",
5327 in comments.
5328
5329 2019-07-03 Pedro Alves <palves@redhat.com>
5330
5331 * maint-test-settings.c (maintenance_test_settings_xxx)
5332 (maintenance_test_settings_yyy, maintenance_test_settings_zzz):
5333 New.
5334 (maintenance_test_settings_enums): Use them.
5335 (maintenance_test_settings_enum): Default to
5336 maintenance_test_settings_xxx.
5337 (_initialize_maint_test_settings): Initialize
5338 MAINTENANCE_TEST_SETTINGS_FILENAME.
5339
5340 2019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
5341
5342 * breakpoint.h (remove_breakpoints_inf): Change return type to
5343 void, move function documentation here.
5344 * breakpoint.c (remove_breakpoints_inf): Change return type to
5345 void, move function documentation to header.
5346
5347 2019-07-02 Pedro Alves <palves@redhat.com>
5348
5349 * NEWS (Completion improvements): Mention "info threads".
5350 * thread.c (struct info_threads_opts, info_threads_option_defs)
5351 (make_info_threads_options_def_group): New.
5352 (info_threads_command): Use gdb::option::process_options.
5353 (info_threads_command_completer): New.
5354 (_initialize_thread): Use gdb::option::build_help to build the
5355 help text for "info threads".
5356
5357 2019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
5358
5359 * defs.h (generic_load): Move from here...
5360 * symfile.h (generic_load): ... to here. Rename name parameter
5361 to args.
5362 * symfile.c (generic_load): Add comment.
5363
5364 2019-07-01 Tom Tromey <tromey@adacore.com>
5365
5366 * dwarf2read.c
5367 (dw2_debug_names_iterator::find_vec_in_debug_names): Hoist
5368 declaration of without_params. Fix formatting.
5369
5370 2019-07-01 Tom Tromey <tromey@adacore.com>
5371
5372 * ada-exp.y (find_primitive_type): Update.
5373 * ada-lang.h (ada_lookup_symbol): Update.
5374 * ada-lang.c (ada_lookup_symbol): Remove "is_a_field_of_this"
5375 parameter.
5376 (ada_lookup_encoded_symbol, ada_lookup_symbol_nonlocal): Update.
5377
5378 2019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
5379
5380 PR breakpoints/24541
5381 * gdbarch.c: Regenerate.
5382 * gdbarch.h: Regenerate.
5383 * gdbarch.sh: Add 'stap_adjust_register'.
5384 * i386-tdep.c: Include '<unordered_set>'.
5385 (i386_stap_adjust_register): New function.
5386 (i386_elf_init_abi): Register 'i386_stap_adjust_register'.
5387 * stap-probe.c (stap_parse_register_operand): Call
5388 'gdbarch_stap_adjust_register'.
5389
5390 2019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
5391
5392 PR python/24742
5393 https://bugzilla.redhat.com/show_bug.cgi?id=1723564
5394 * python/python.c (do_start_initialization): Use 'xmalloc'
5395 instead of 'PyMem_Malloc'.
5396
5397 2019-06-28 Tom Tromey <tromey@adacore.com>
5398
5399 * dwarf2read.c (partial_die_info::read): Prefer the linkage name
5400 for Ada.
5401
5402 2019-06-27 Tom Tromey <tromey@adacore.com>
5403
5404 * arm-tdep.c (arm_objfile_data_key): Move lower. Change type to
5405 objfile_key.
5406 (arm_find_mapping_symbol, arm_record_special_symbol)
5407 (_initialize_arm_tdep): Update.
5408 (arm_objfile_data_free): Remove.
5409
5410 2019-06-27 Tom Tromey <tromey@adacore.com>
5411
5412 * cp-valprint.c (cp_print_value_fields): Pass opts, not options,
5413 to cp_print_static_field.
5414
5415 2019-06-26 Tom Tromey <tromey@adacore.com>
5416
5417 * minsyms.c (lookup_minimal_symbol_solib_trampoline): Remove.
5418 * minsyms.h (lookup_minimal_symbol_solib_trampoline): Don't
5419 declare.
5420
5421 2019-06-26 Alan Hayward <alan.hayward@arm.com>
5422
5423 * features/aarch64-core.c (create_feature_aarch64_core):
5424 Regenerate.
5425 * features/aarch64-core.xml: Add cpsr flags.
5426
5427 2019-06-26 Alan Hayward <alan.hayward@arm.com>
5428
5429 * arm-tdep.c (arm_gnu_triplet_regexp): New function.
5430 (arm_gdbarch_init): Add arm_gnu_triplet_regexp.
5431
5432 2019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
5433
5434 * arm-tdep.c (struct arm_per_objfile) <section_maps_sorted>: New
5435 field.
5436 (arm_find_mapping_symbol): Sort mapping symbol vectors on first
5437 use.
5438 (arm_record_special_symbol): Don't insert new symbol in sorted
5439 position, push it at the end.
5440
5441 2019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
5442
5443 * arm-tdep.c (struct arm_mapping_symbol) (operator <): New.
5444 (arm_mapping_symbol_s): Remove.
5445 (DEF_VEC_O(arm_mapping_symbol_s)): Remove.
5446 (arm_mapping_symbol_vec): New typedef.
5447 (struct arm_per_objfile): Add constructor.
5448 <section_maps>: Change type to
5449 std::unique_ptr<arm_mapping_symbol_vec[]>.
5450 (arm_compare_mapping_symbols): Remove.
5451 (arm_find_mapping_symbol): Adjust to section_maps type change.
5452 (arm_objfile_data_free): Call delete on arm_per_objfile.
5453 (arm_record_special_symbol): Adjust to section_maps type change.
5454 Allocate arm_per_objfile with new.
5455
5456 2019-06-25 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5457
5458 * cli/cli-cmds.c (alias_command): Compare the alias prefix
5459 with the command prefix.
5460
5461 2019-06-25 Tom Tromey <tom@tromey.com>
5462
5463 * tui/tui-wingeneral.c (tui_delete_win): Remove "return".
5464 * tui/tui-data.c (~tui_gen_win_info): Remove "if".
5465
5466 2019-06-25 Tom Tromey <tom@tromey.com>
5467
5468 * tui/tui-layout.c (init_and_make_win): Assert on unrecognized
5469 type.
5470 * tui/tui-data.h (struct tui_gen_win_info): Make constructor
5471 protected.
5472
5473 2019-06-25 Tom Tromey <tom@tromey.com>
5474
5475 * tui/tui-winsource.c
5476 (tui_source_window_base::set_is_exec_point_at): Add check against
5477 LOA_ADDRESS.
5478
5479 2019-06-25 Tom Tromey <tom@tromey.com>
5480
5481 * tui/tui-source.c (tui_set_source_content): Don't check before
5482 xfree.
5483 * tui/tui-disasm.c (tui_disassemble): Don't check before xfree.
5484
5485 2019-06-25 Tom Tromey <tom@tromey.com>
5486
5487 * tui/tui-winsource.h (tui_update_source_window_as_is)
5488 (tui_alloc_source_buffer, tui_line_is_displayed)
5489 (tui_addr_is_displayed): Change type of win_info.
5490 * tui/tui-winsource.c (tui_update_source_window_as_is)
5491 (tui_clear_source_content, tui_show_source_line)
5492 (tui_show_source_content, tui_source_window_base::refill)
5493 (tui_source_window_base::set_is_exec_point_at)
5494 (tui_source_window_base::set_is_exec_point_at)
5495 (tui_update_breakpoint_info, tui_set_exec_info_content): Update.
5496 (tui_alloc_source_buffer, tui_line_is_displayed)
5497 (tui_addr_is_displayed): Change type of win_info. Update.
5498 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
5499 (tui_source_window_base::do_make_visible_with_new_height):
5500 Update.
5501 * tui/tui-source.c (tui_set_source_content)
5502 (tui_set_source_content_nil)
5503 (tui_source_window::do_scroll_vertical): Update.
5504 * tui/tui-layout.c (show_layout): Update.
5505 * tui/tui-disasm.c (tui_set_disassem_content)
5506 (tui_disasm_window::do_scroll_vertical): Update.
5507 * tui/tui-data.h (tui_win_content): Remove.
5508 (struct tui_gen_win_info) <content, content_size>: Remove.
5509 (struct tui_source_element): Add initializers and destructor.
5510 (union tui_which_element, struct tui_win_element): Remove.
5511 (struct tui_source_window_base) <content>: New field.
5512 (struct tui_data_window): Remove destructor.
5513 (tui_alloc_content, tui_free_win_content)
5514 (tui_free_all_source_wins_content): Don't declare.
5515 * tui/tui-data.c (tui_initialize_static_data): Update.
5516 (init_content_element, tui_alloc_content): Remove.
5517 (~tui_gen_win_info): Update.
5518 (~tui_data_window, tui_free_all_source_wins_content)
5519 (tui_free_win_content, free_content, free_content_elements):
5520 Remove.
5521
5522 2019-06-25 Tom Tromey <tom@tromey.com>
5523
5524 * tui/tui-winsource.h (tui_clear_source_content)
5525 (tui_erase_source_content, tui_show_source_content): Change type
5526 of win_info.
5527 * tui/tui-winsource.c (tui_clear_source_content)
5528 (tui_erase_source_content, tui_show_source_content): Change type
5529 of win_info.
5530 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
5531 * tui/tui-source.h (tui_set_source_content_nil): Change type of
5532 win_info.
5533 * tui/tui-source.c (tui_set_source_content_nil): Change type of
5534 win_info.
5535 * tui/tui-layout.c (show_source_or_disasm_and_command): Update.
5536
5537 2019-06-25 Tom Tromey <tom@tromey.com>
5538
5539 * tui/tui-winsource.c (tui_clear_source_content)
5540 (tui_source_window_base::set_is_exec_point_at): Update.
5541 * tui/tui-source.c (tui_set_source_content_nil): Update.
5542 * tui/tui-data.h (struct tui_source_element) <is_exec_point>: Now
5543 a bool.
5544 * tui/tui-data.c (init_content_element): Update.
5545
5546 2019-06-25 Tom Tromey <tom@tromey.com>
5547
5548 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Update.
5549 * tui/tui-win.c (make_invisible_and_set_new_height): Update.
5550 * tui/tui-layout.c (init_and_make_win): Update.
5551 * tui/tui.h (enum tui_win_type): Update.
5552 * tui/tui-data.h (tui_win_is_auxiliary): Rename from
5553 tui_win_is_auxillary.
5554 * tui/tui-data.c (tui_win_is_auxiliary): Rename from
5555 tui_win_is_auxillary.
5556
5557 2019-06-25 Tom Tromey <tom@tromey.com>
5558
5559 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Update.
5560 * tui/tui-windata.c (tui_data_window::first_data_item_displayed)
5561 (tui_delete_data_content_windows, tui_display_all_data)
5562 (tui_data_window::do_scroll_vertical, tui_display_data_from):
5563 Update.
5564 * tui/tui-win.c (tui_data_window::set_new_height): Simplify.
5565 * tui/tui-regs.c (tui_last_regs_line_no)
5566 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
5567 (tui_show_registers): Update.
5568 (tui_show_register_group): Return void. Update.
5569 (tui_display_registers_from, tui_display_reg_element_at_line)
5570 (tui_display_registers_from_line, tui_check_register_values):
5571 Update.
5572 * tui/tui-data.h (union tui_which_element) <data_window>: Remove
5573 member.
5574 (struct tui_data_window) <regs_content>: Now a std::vector.
5575 <regs_content_count>: Remove.
5576 (tui_add_content_elements, tui_free_data_content): Don't declare.
5577 * tui/tui-data.c (tui_data_window::clear_detail): Update.
5578 (init_content_element): Remove DATA_WIN case. Add assert.
5579 (tui_add_content_elements): Remove.
5580 (tui_data_window): Update.
5581 (tui_free_data_content): Remove.
5582 (free_content_elements): Remove DATA_WIN case.
5583
5584 2019-06-25 Tom Tromey <tom@tromey.com>
5585
5586 * tui/tui-data.c (tui_data_item_window): Update.
5587 * tui/tui-windata.h (tui_check_data_values): Don't declare.
5588 * tui/tui-windata.c (tui_display_all_data)
5589 (tui_display_data_from_line): Update.
5590 (tui_check_data_values): Remove.
5591 * tui/tui-regs.c (tui_show_register_group)
5592 (tui_display_reg_element_at_line): Update.
5593 * tui/tui-hooks.c (tui_register_changed)
5594 (tui_refresh_frame_and_register_information): Call
5595 tui_check_register_values.
5596 * tui/tui-data.h (struct tui_data_window) <data_content,
5597 data_content_count, data_type>: Remove.
5598 (enum tui_data_type): Remove.
5599
5600 * tui/tui-data.c (tui_data_window::clear_detail)
5601 (~tui_data_window): Update.
5602
5603 2019-06-25 Tom Tromey <tom@tromey.com>
5604
5605 * tui/tui-windata.h (tui_first_data_item_displayed): Don't
5606 declare.
5607 * tui/tui-windata.c (tui_data_window::first_data_item_displayed):
5608 Rename from tui_first_data_item_displayed. Update.
5609 (tui_data_window::refresh_all)
5610 (tui_data_window::do_scroll_vertical): Update.
5611 * tui/tui-data.h (struct tui_data_window)
5612 <first_data_item_displayed>: Declare new method.
5613
5614 2019-06-25 Tom Tromey <tom@tromey.com>
5615
5616 * tui/tui-data.h (tui_init_generic_part): Don't declare.
5617 * tui/tui-data.c (tui_init_generic_part): Remove, moving
5618 contents...
5619 (tui_initialize_static_data): ...here.
5620
5621 2019-06-25 Tom Tromey <tom@tromey.com>
5622
5623 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
5624 (tui_display_registers_from, tui_check_register_values): Update.
5625 (tui_display_register): Remove win_info parameter; update.
5626 (tui_get_register): Change type of parameters.
5627 * tui/tui-data.h (struct tui_data_element): Remove.
5628 (union tui_which_element) <data>: Remove.
5629 <data_window>: Change type.
5630 (struct tui_data_item_window): New.
5631 * tui/tui-data.c (init_content_element): Remove DATA_ITEM_WIN
5632 case. Add assert.
5633 (~tui_data_item_window): New destructor.
5634 (free_content_elements): Remove DATA_ITEM_WIN case.
5635
5636 2019-06-25 Tom Tromey <tom@tromey.com>
5637
5638 * tui/tui.h (enum tui_win_type) <MAX_WINDOWS, UNDEFINED_WIN>:
5639 Remove.
5640
5641 2019-06-25 Tom Tromey <tom@tromey.com>
5642
5643 * tui/tui-data.h (struct tui_command_element): Remove.
5644 (union tui_which_element) <command>: Remove.
5645 * tui/tui-data.c (init_content_element): Remove CMD_WIN case. Add
5646 assert.
5647 (free_content_elements): Remove CMD_WIN case.
5648
5649 2019-06-25 Tom Tromey <tom@tromey.com>
5650
5651 * tui/tui-layout.c (tui_set_layout): Update.
5652 * tui/tui-data.h (struct tui_layout_def) <split>: Remove.
5653 * tui/tui-data.c (layout_def): Update.
5654
5655 2019-06-25 Tom Tromey <tom@tromey.com>
5656
5657 * tui/tui-wingeneral.c (tui_refresh_all): Update.
5658 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
5659 (tui_source_window_base::set_new_height): Update.
5660 * tui/tui-stack.c (tui_make_status_line): Change parameter type.
5661 Update.
5662 (tui_set_locator_fullname, tui_set_locator_info)
5663 (tui_show_frame_info): Update.
5664 * tui/tui-source.c (tui_set_source_content)
5665 (tui_source_is_displayed): Update.
5666 * tui/tui-layout.c (show_source_disasm_command, show_data)
5667 (show_source_or_disasm_and_command): Update.
5668 * tui/tui-disasm.c (tui_set_disassem_content)
5669 (tui_get_begin_asm_address): Update.
5670 * tui/tui-data.h (struct tui_locator_element): Remove.
5671 (union tui_which_element) <locator>: Remove.
5672 (struct tui_locator_window): New.
5673 (tui_locator_win_info_ptr): Change return type.
5674 * tui/tui-data.c (_locator): Change type.
5675 (tui_locator_win_info_ptr): Change return type.
5676 (init_content_element): Remove LOCATOR_WIN case. Add assert.
5677 (tui_alloc_content): Add assert.
5678
5679 2019-06-25 Tom Tromey <tom@tromey.com>
5680
5681 * tui/tui-winsource.c
5682 (tui_exec_info_window::maybe_allocate_content): New method.
5683 (tui_set_exec_info_content, tui_show_exec_info_content): Update.
5684 * tui/tui-layout.c (init_and_make_win): Add EXEC_INFO_WIN case.
5685 (make_source_or_disasm_window): Add cast.
5686 * tui/tui-data.h (union tui_which_element) <simple_string>:
5687 Remove.
5688 (struct tui_source_info): New.
5689 (struct tui_source_window_base) <execution_info>: Change type.
5690 * tui/tui-data.c (init_content_element): Remove EXEC_INFO_WIN
5691 case, and add assert.
5692 (tui_alloc_content): Add assert.
5693
5694 2019-06-25 Tom Tromey <tom@tromey.com>
5695
5696 * tui/tui-data.h (tui_alloc_win_info): Don't declare.
5697 * tui/tui-layout.c (init_and_make_win): Use "new" directly.
5698 * tui/tui-data.c (tui_alloc_win_info): Remove.
5699
5700 2019-06-25 Tom Tromey <tom@tromey.com>
5701
5702 * tui/tui-win.c (tui_set_win_focus_to): Don't check window type.
5703 * tui/tui-wingeneral.c (tui_unhighlight_win): Check
5704 can_highlight.
5705
5706 2019-06-25 Tom Tromey <tom@tromey.com>
5707
5708 * tui/tui-win.c (tui_source_window_base::update_tab_width): Call
5709 make_visible_with_new_height method.
5710 (tui_win_info::make_visible_with_new_height): New method.
5711 (tui_source_window_base::do_make_visible_with_new_height)
5712 (tui_data_window::do_make_visible_with_new_height)
5713 (tui_cmd_window::do_make_visible_with_new_height): New methods.
5714 (make_visible_with_new_height): Remove.
5715 (tui_resize_all, tui_adjust_win_heights): Use
5716 make_visible_with_new_height method.
5717 * tui/tui-data.h (struct tui_win_info)
5718 <do_make_visible_with_new_height, make_visible_with_new_height>:
5719 New methods.
5720 (struct tui_source_window_base, struct tui_data_window)
5721 (struct tui_cmd_window) <do_make_visible_with_new_height>: New
5722 methods.
5723
5724 2019-06-25 Tom Tromey <tom@tromey.com>
5725
5726 * tui/tui-win.c (tui_source_window_base::update_tab_width): New
5727 method.
5728 (update_tab_width): Call update_tab_width method.
5729 * tui/tui-data.h (struct tui_win_info)
5730 (struct tui_source_window_base) <update_tab_width>: New methods.
5731
5732 2019-06-25 Tom Tromey <tom@tromey.com>
5733
5734 * tui/tui-wingeneral.h (tui_make_window): Change type of "box_it"
5735 parameter.
5736 * tui/tui-wingeneral.c (tui_make_window): Change type of "box_it"
5737 parameter.
5738 (tui_gen_win_info::make_visible): Update.
5739 * tui/tui-layout.c (init_and_make_win): Change type of "box_it"
5740 parameter.
5741 * tui/tui-data.h (enum tui_box): New enum.
5742 (BOX_WINDOW, DONT_BOX_WINDOW): Remove defines.
5743
5744 2019-06-25 Tom Tromey <tom@tromey.com>
5745
5746 * tui/tui-layout.c (make_source_or_disasm_window): Always use
5747 init_and_make_win for EXEC_INFO_WIN.
5748 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>: No
5749 longer inline.
5750 (struct tui_win_info) <~tui_win_info>: Inline.
5751 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
5752 Don't declare.
5753 * tui/tui-data.c (source_win, disasm_win): Remove globals.
5754 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
5755 Remove.
5756 (tui_initialize_static_data): Update.
5757 (~tui_gen_win_info): Handle more cleanup here.
5758 (~tui_source_window_base): Delete "execution_info".
5759 (~tui_win_info): Move code to ~tui_gen_win_info; remove.
5760
5761 2019-06-25 Tom Tromey <tom@tromey.com>
5762
5763 * tui/tui-layout.c (make_command_window): Don't set
5764 can_highlight.
5765 (show_source_disasm_command): Call the reset method.
5766 (show_data): Don't set can_highlight. Call the reset method.
5767 (tui_gen_win_info::reset): Rename from init_gen_win_info
5768 (init_and_make_win): Simplify. Return tui_gen_win_info.
5769 (show_source_or_disasm_and_command): Call the reset method.
5770 * tui/tui-data.h (struct tui_gen_win_info) <reset>: New method.
5771 (struct tui_cmd_window): Set can_highlight.
5772
5773 2019-06-25 Tom Tromey <tom@tromey.com>
5774
5775 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Rename
5776 from make_visible.
5777 (tui_make_visible, tui_make_invisible): Rewrite.
5778 (tui_win_info::make_visible): Remove.
5779 (tui_source_window_base::make_visible): Update.
5780 * tui/tui-data.h (struct tui_gen_win_info) <make_visible>: New
5781 method. Moved from...
5782 (struct tui_win_info) <make_visible>: ...here.
5783
5784 2019-06-25 Tom Tromey <tom@tromey.com>
5785
5786 * tui/tui-winsource.c
5787 (tui_source_window_base::do_scroll_horizontal): Remove direction
5788 parameter.
5789 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Remove
5790 direction parameter.
5791 * tui/tui-win.c (tui_win_info::forward_scroll)
5792 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
5793 (tui_win_info::right_scroll): Update.
5794 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Remove
5795 direction parameter.
5796 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Remove
5797 direction parameter.
5798 * tui/tui-data.h (enum tui_scroll_direction): Remove.
5799 (struct tui_win_info) <do_scroll_vertical, do_scroll_horizontal>:
5800 Remove direction parameter.
5801 (struct tui_source_window_base, struct tui_source_window)
5802 (struct tui_disasm_window, struct tui_data_window)
5803 (struct tui_cmd_window): Update.
5804
5805 2019-06-25 Tom Tromey <tom@tromey.com>
5806
5807 * tui/tui-winsource.h (tui_set_exec_info_content)
5808 (tui_show_exec_info_content, tui_erase_exec_info_content)
5809 (tui_clear_exec_info_content, tui_update_exec_info): Change
5810 argument to tui_source_window_base.
5811 * tui/tui-winsource.c (tui_set_exec_info_content)
5812 (tui_show_exec_info_content, tui_erase_exec_info_content)
5813 (tui_clear_exec_info_content, tui_update_exec_info): Change
5814 argument to tui_source_window_base.
5815
5816 2019-06-25 Tom Tromey <tom@tromey.com>
5817
5818 * tui/tui-winsource.h (tui_set_exec_info_content): Return void.
5819 * tui/tui-winsource.c (tui_set_exec_info_content): Return void.
5820
5821 2019-06-25 Tom Tromey <tom@tromey.com>
5822
5823 * tui/tui-winsource.c (tui_set_exec_info_content): Remove NULL
5824 check.
5825
5826 2019-06-25 Tom Tromey <tom@tromey.com>
5827
5828 * tui/tui-winsource.h (tui_alloc_source_buffer): Change return
5829 type to void.
5830 * tui/tui-winsource.c (tui_alloc_source_buffer): Change return
5831 type to void.
5832 * tui/tui-source.c (tui_set_source_content): Update.
5833 * tui/tui-disasm.c (tui_set_disassem_content): Update.
5834
5835 2019-06-25 Tom Tromey <tom@tromey.com>
5836
5837 * tui/tui-win.c (window_name_completer, tui_set_focus)
5838 (tui_all_windows_info): Use name method.
5839 * tui/tui-data.h (struct tui_gen_win_info)
5840 (struct tui_source_window, struct tui_disasm_window)
5841 (struct tui_data_window, struct tui_cmd_window) <name>: New
5842 method.
5843 (tui_win_name): Don't declare.
5844 * tui/tui-data.c (tui_partial_win_by_name): Use name method.
5845 (tui_win_name): Remove.
5846
5847 2019-06-25 Tom Tromey <tom@tromey.com>
5848
5849 * tui/tui-winsource.h (tui_update_source_window)
5850 (tui_update_source_window_as_is): Change parameter type.
5851 * tui/tui-winsource.c (tui_update_source_window): Change win_info
5852 to be a tui_source_window_base.
5853 (tui_update_source_window_as_is): Likewise.
5854 * tui/tui-win.c (make_visible_with_new_height): Update.
5855
5856 2019-06-25 Tom Tromey <tom@tromey.com>
5857
5858 * tui/tui-winsource.c (tui_erase_source_content)
5859 (tui_show_source_content, tui_show_exec_info_content)
5860 (tui_erase_exec_info_content): Use refresh_window method.
5861 * tui/tui-wingeneral.h (tui_refresh_win): Don't declare.
5862 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Rename
5863 from tui_refresh_win.
5864 (tui_data_window::refresh_window): New method.
5865 (tui_win_info::refresh, tui_source_window_base::refresh)
5866 (tui_refresh_all): Use refresh_window method.
5867 * tui/tui-stack.c (tui_show_locator_content): Call refresh_window
5868 method.
5869 * tui/tui-regs.c (tui_display_register): Call refresh_window
5870 method.
5871 * tui/tui-layout.c (show_source_disasm_command)
5872 (show_source_or_disasm_and_command): Call refresh_window method.
5873 * tui/tui-data.h (struct tui_gen_win_info)
5874 (struct tui_data_window, struct tui_cmd_window) <refresh_window>:
5875 New method.
5876
5877 2019-06-25 Tom Tromey <tom@tromey.com>
5878
5879 * tui/tui.c (tui_rl_other_window, tui_enable)
5880 (tui_is_window_visible, tui_get_command_dimension): Update.
5881 * tui/tui-winsource.c (tui_update_source_window_as_is)
5882 (tui_clear_source_content, tui_erase_source_content)
5883 (tui_show_source_line, tui_source_window_base::refill)
5884 (tui_source_window_base::do_scroll_horizontal)
5885 (tui_source_window_base::set_is_exec_point_at)
5886 (tui_update_breakpoint_info, tui_set_exec_info_content)
5887 (tui_alloc_source_buffer, tui_line_is_displayed)
5888 (tui_addr_is_displayed): Update.
5889 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
5890 (tui_check_and_display_highlight_if_needed)
5891 (tui_win_info::make_visible, tui_win_info::refresh)
5892 (tui_refresh_all): Update.
5893 * tui/tui-windata.c (tui_first_data_item_displayed)
5894 (tui_delete_data_content_windows, tui_erase_data_content)
5895 (tui_display_all_data, tui_data_window::refresh_all)
5896 (tui_check_data_values): Update.
5897 * tui/tui-win.c (window_name_completer, tui_update_gdb_sizes)
5898 (tui_set_win_focus_to, tui_win_info::forward_scroll)
5899 (tui_win_info::backward_scroll, tui_refresh_all_win)
5900 (tui_resize_all, tui_set_focus, tui_all_windows_info)
5901 (update_tab_width, tui_set_win_height, tui_adjust_win_heights)
5902 (tui_source_window_base::set_new_height)
5903 (tui_data_window::set_new_height)
5904 (make_invisible_and_set_new_height)
5905 (make_visible_with_new_height, new_height_ok)
5906 (parse_scrolling_args): Update.
5907 * tui/tui-stack.c (tui_show_frame_info): Update.
5908 * tui/tui-source.c (tui_set_source_content)
5909 (tui_set_source_content_nil, tui_source_is_displayed)
5910 (tui_source_window::do_scroll_vertical): Update.
5911 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
5912 (tui_display_registers_from, tui_display_reg_element_at_line)
5913 (tui_check_register_values, tui_reg_command): Update.
5914 * tui/tui-layout.c (tui_default_win_height)
5915 (show_source_disasm_command, show_data, init_and_make_win)
5916 (show_source_or_disasm_and_command): Update.
5917 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
5918 (tui_redisplay_readline, tui_mld_flush)
5919 (tui_mld_erase_entire_line, tui_mld_getc, tui_cont_sig)
5920 (tui_getc): Update.
5921 * tui/tui-disasm.c (tui_set_disassem_content)
5922 (tui_disasm_window::do_scroll_vertical): Update.
5923 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>:
5924 Now virtual.
5925 (struct tui_win_info): Derive from tui_gen_win_info.
5926 <~tui_win_info>: Mark as override.
5927 <generic>: Remove member.
5928 * tui/tui-data.c (tui_cmd_window::clear_detail, tui_next_win)
5929 (tui_prev_win, tui_partial_win_by_name, tui_win_info)
5930 (~tui_data_window, ~tui_win_info)
5931 (tui_free_all_source_wins_content): Update.
5932 * tui/tui-command.c (tui_refresh_cmd_win): Update.
5933
5934 2019-06-25 Tom Tromey <tom@tromey.com>
5935
5936 * tui/tui-layout.c (init_and_make_win): Use new.
5937 * tui/tui-data.h (struct tui_gen_win_info): Add constructor,
5938 destructor, initializers.
5939 (tui_alloc_generic_win_info): Don't declare.
5940 * tui/tui-data.c (_locator): Add argument to constructor.
5941 (source_win, disasm_win): New globals.
5942 (exec_info): Remove.
5943 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
5944 Update.
5945 (tui_alloc_generic_win_info): Remove.
5946 (init_content_element): Use new.
5947 (tui_win_info::tui_win_info): Update.
5948 (free_content_elements) <case DATA_WIN>: Use delete.
5949
5950 2019-06-25 Tom Tromey <tom@tromey.com>
5951
5952 * tui/tui-wingeneral.c (tui_refresh_win): Update.
5953 * tui/tui-windata.c (tui_first_data_item_displayed)
5954 (tui_delete_data_content_windows): Update.
5955 * tui/tui-win.c (tui_data_window::set_new_height): Update.
5956 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
5957 (tui_display_registers_from, tui_check_register_values): Update.
5958 * tui/tui-data.h (union tui_which_element) <data_window>: Now a
5959 pointer.
5960 * tui/tui-data.c (init_content_element): Update. Allocate the new
5961 window.
5962 (tui_free_data_content): Update.
5963 (free_content_elements) <case DATA_WIN>: Free the window.
5964
5965 2019-06-25 Tom Tromey <tom@tromey.com>
5966
5967 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win):
5968 Update.
5969 * tui/tui-layout.c (make_command_window)
5970 (show_source_disasm_command, show_data, init_and_make_win)
5971 (show_source_or_disasm_and_command): Update.
5972 * tui/tui-data.h (struct tui_win_info) <set_highlight>: New
5973 method.
5974 <can_highight, is_highlighted>: Now bool.
5975 (tui_set_win_highlight): Don't declare.
5976 * tui/tui-data.c (tui_set_win_highlight): Remove.
5977
5978 2019-06-25 Tom Tromey <tom@tromey.com>
5979
5980 * tui/tui-wingeneral.c (make_visible): Remove check of window
5981 type.
5982
5983 2019-06-25 Tom Tromey <tom@tromey.com>
5984
5985 * tui/tui-win.c (tui_win_info::max_height)
5986 (tui_cmd_window::max_height): New methods.
5987 (new_height_ok): Call max_height.
5988 * tui/tui-data.h (struct tui_win_info, struct tui_cmd_window)
5989 <max_height>: New method.
5990
5991 2019-06-25 Tom Tromey <tom@tromey.com>
5992
5993 * tui/tui-win.c (tui_source_window_base::set_new_height)
5994 (tui_data_window::set_new_height): New methods.
5995 (make_invisible_and_set_new_height): Call set_new_height method.
5996 * tui/tui-data.h (struct tui_win_info)
5997 (struct tui_source_window_base, struct tui_data_window)
5998 <set_new_height>: New method.
5999
6000 2019-06-25 Tom Tromey <tom@tromey.com>
6001
6002 * tui/tui.c (tui_rl_other_window): Call the refresh_all method.
6003 * tui/tui-windata.c (tui_data_window::refresh_all): Rename from
6004 tui_refresh_data_win.
6005 * tui/tui-win.c (tui_source_window_base::refresh_all): New
6006 method.
6007 (tui_refresh_all_win): Call the refresh_all method.
6008 (tui_set_focus): Likewise.
6009 * tui/tui-data.h (struct tui_win_info) <refresh_all>: New method.
6010 (struct tui_source_window_base, struct tui_data_window) <refresh>:
6011 Likewise.
6012
6013 2019-06-25 Tom Tromey <tom@tromey.com>
6014
6015 * tui/tui-winsource.h (tui_refill_source_window)
6016 (tui_set_is_exec_point_at): Don't declare.
6017 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
6018 (tui_source_window_base::refill): Rename from
6019 tui_refill_source_window.
6020 (tui_source_window_base::do_scroll_horizontal): Update.
6021 (tui_source_window_base::set_is_exec_point_at): Rename from
6022 tui_set_is_exec_point_at.
6023 (tui_update_all_breakpoint_info): Update.
6024 * tui/tui-stack.c (tui_show_frame_info): Update.
6025 * tui/tui-layout.c (show_data): Add cast.
6026 * tui/tui-hooks.c (tui_redisplay_source): Call refill method.
6027 * tui/tui-data.h (struct tui_source_window_base) <refill,
6028 set_is_exec_point_at>: New methods.
6029 (tui_source_windows, tui_add_to_source_windows): Update types.
6030 (tui_add_to_source_windows): Remove redundant declaration.
6031 * tui/tui-data.c (source_windows): Store tui_source_window_base.
6032 (tui_source_windows): Change return type.
6033 (tui_clear_source_windows_detail): Update.
6034 (tui_add_to_source_windows): Change type of parameter.
6035 (tui_free_all_source_wins_content): Update.
6036
6037 2019-06-25 Tom Tromey <tom@tromey.com>
6038
6039 * tui/tui-wingeneral.c (tui_win_info::refresh)
6040 (tui_source_window_base::refresh): New methods.
6041 (tui_refresh_all): Call the refresh method.
6042 * tui/tui-data.h (struct tui_win_info)
6043 (struct tui_source_window_base) <refresh>: New method.
6044
6045 2019-06-25 Tom Tromey <tom@tromey.com>
6046
6047 * tui/tui.h (tui_is_window_visible): Return bool.
6048 * tui/tui.c (tui_is_window_visible): Return bool.
6049 * tui/tui-wingeneral.c (tui_make_window, make_visible)
6050 (tui_make_visible, tui_make_invisible)
6051 (tui_win_info::make_visible)
6052 (tui_source_window_base::make_visible, make_all_visible)
6053 (tui_make_all_visible, tui_make_all_invisible): Update.
6054 * tui/tui-windata.c (tui_delete_data_content_windows): Update.
6055 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: Now
6056 bool.
6057 (struct tui_win_info, struct tui_source_window_base)
6058 (struct tui_cmd_window) <make_visible>: Change parameter to bool.
6059 * tui/tui-data.c (tui_init_generic_part): Update.
6060
6061 2019-06-25 Tom Tromey <tom@tromey.com>
6062
6063 * tui/tui-wingeneral.c (tui_win_info::make_visible)
6064 (tui_source_window_base::make_visible): New methods.
6065 (make_all_visible): Make method call.
6066 * tui/tui-data.h (struct tui_win_info) <make_visible>: New method.
6067 (struct tui_source_window_base, struct tui_cmd_window): Override
6068 make_visible.
6069 (tui_win_is_source_type): Don't declare.
6070 * tui/tui-data.c (tui_win_is_source_type): Remove.
6071
6072 2019-06-25 Tom Tromey <tom@tromey.com>
6073
6074 * tui/tui-layout.c (show_source_or_disasm_and_command): Remove
6075 NULL check.
6076
6077 2019-06-25 Tom Tromey <tom@tromey.com>
6078
6079 * tui/tui-data.h (struct tui_data_window, struct tui_cmd_window):
6080 Inline constructor. Add initializers for members.
6081 * tui/tui-data.c (tui_data_window, tui_cmd_window): Remove
6082 constructors; now inline in class.
6083
6084 2019-06-25 Tom Tromey <tom@tromey.com>
6085
6086 * tui/tui-regs.c (tui_show_registers): Update.
6087 * tui/tui-data.h (struct tui_data_window) <display_regs>: Now
6088 bool.
6089 * tui/tui-data.c (tui_data_window::clear_detail)
6090 (tui_data_window): Update.
6091
6092 2019-06-25 Tom Tromey <tom@tromey.com>
6093
6094 * tui/tui-windata.c (tui_display_all_data)
6095 (tui_display_data_from_line, tui_display_data_from)
6096 (tui_check_data_values, tui_data_window::do_scroll_vertical):
6097 Update.
6098 * tui/tui-regs.c (tui_last_regs_line_no)
6099 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
6100 (tui_show_registers, tui_show_register_group)
6101 (tui_display_registers_from, tui_display_reg_element_at_line)
6102 (tui_display_registers_from_line, tui_check_register_values)
6103 (tui_reg_next, tui_reg_prev): Update.
6104 * tui/tui-layout.c (tui_set_layout, show_data): Update.
6105 * tui/tui-data.h (struct tui_data_info): Remove. Move contents to
6106 tui_data_window.
6107 (struct tui_win_info) <detail>: Remove. Add new fields from
6108 tui_data_info.
6109 (TUI_DATA_WIN): Add cast.
6110 * tui/tui-data.c (tui_data_window::clear_detail, tui_data_window)
6111 (~tui_data_window): Simplify.
6112
6113 2019-06-25 Tom Tromey <tom@tromey.com>
6114
6115 * tui/tui-layout.c (show_source_disasm_command)
6116 (show_source_or_disasm_and_command): Update.
6117 * tui/tui-io.c (update_cmdwin_start_line)
6118 (tui_redisplay_readline): Update.
6119 * tui/tui-data.h (struct tui_command_info): Remove.
6120 (struct tui_win_info) <detail>: Remove command_info member.
6121 (struct tui_data_window) <start_line>: New member, from
6122 tui_command_info.
6123 (TUI_CMD_WIN): Add casts.
6124
6125 2019-06-25 Tom Tromey <tom@tromey.com>
6126
6127 * tui/tui-winsource.c (tui_update_source_window)
6128 (tui_refill_source_window)
6129 (tui_source_window_base::do_scroll_horizontal)
6130 (tui_update_breakpoint_info, tui_set_exec_info_content)
6131 (tui_show_exec_info_content, tui_erase_exec_info_content)
6132 (tui_clear_exec_info_content): Update.
6133 * tui/tui-wingeneral.c (make_all_visible, tui_refresh_all):
6134 Update.
6135 * tui/tui-win.c (make_invisible_and_set_new_height)
6136 (make_visible_with_new_height): Update.
6137 * tui/tui-source.c (tui_set_source_content)
6138 (tui_show_symtab_source): Update.
6139 * tui/tui-layout.c (extract_display_start_addr)
6140 (show_source_disasm_command, show_data)
6141 (make_source_or_disasm_window)
6142 (show_source_or_disasm_and_command): Update.
6143 * tui/tui-disasm.c (tui_set_disassem_content): Simplify.
6144 (tui_disasm_window::do_scroll_vertical): Remove shadowing
6145 "gdbarch".
6146 * tui/tui-data.h (struct tui_source_info): Remove. Move contents
6147 to tui_source_window_base.
6148 (struct tui_win_info) <detail>: Remove source_info member.
6149 (struct tui_source_window_base) <has_locator>: Inline.
6150 Move contents from tui_source_info; rename has_locator member to
6151 m_has_locator.
6152 (TUI_SRC_WIN, TUI_DISASM_WIN): Add casts.
6153 * tui/tui-data.c (tui_source_window_base::has_locator): Move to
6154 header file.
6155 (tui_source_window_base::clear_detail, ~tui_source_window_base):
6156 Simplify.
6157 (tui_free_all_source_wins_content): Cast to
6158 tui_source_window_base.
6159
6160 2019-06-25 Tom Tromey <tom@tromey.com>
6161
6162 * tui/tui-win.c (make_invisible_and_set_new_height)
6163 (make_visible_with_new_height): Call has_locator method.
6164 * tui/tui-layout.c (show_source_disasm_command, show_data)
6165 (show_source_or_disasm_and_command): Update for bool change.
6166 * tui/tui-data.h (struct tui_source_info) <has_locator>: Now bool.
6167 (tui_win_info) <has_locator>: New method.
6168 (struct tui_source_window_base) <has_locator>: New method.
6169 (tui_win_has_locator): Don't declare.
6170 * tui/tui-data.c (tui_source_window_base::has_locator): Rename
6171 from tui_win_has_locator.
6172 (tui_source_window_base): Use false, not FALSE.
6173
6174 2019-06-25 Tom Tromey <tom@tromey.com>
6175
6176 * tui/tui-data.h (tui_clear_win_detail): Don't declare.
6177 * tui/tui-data.c (tui_clear_source_windows_detail): Call the
6178 clear_detail method directly.
6179 (tui_clear_win_detail): Remove.
6180
6181 2019-06-25 Tom Tromey <tom@tromey.com>
6182
6183 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Use
6184 "this", not TUI_DISASM_WIN.
6185
6186 2019-06-25 Tom Tromey <tom@tromey.com>
6187
6188 * tui/tui-winsource.h (tui_horizontal_source_scroll): Don't
6189 declare.
6190 * tui/tui-winsource.c
6191 (tui_source_window_base::do_scroll_horizontal): Rename from
6192 tui_horizontal_source_scroll.
6193 * tui/tui-windata.h (tui_vertical_data_scroll): Don't declare.
6194 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Rename
6195 from tui_vertical_data_scroll.
6196 * tui/tui-win.h (tui_scroll): Don't declare.
6197 * tui/tui-win.c (tui_win_info::forward_scroll)
6198 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
6199 (tui_win_info::right_scroll): Rename and update.
6200 (tui_scroll_forward_command, tui_scroll_backward_command)
6201 (tui_scroll_left_command, tui_scroll_right_command): Update.
6202 (tui_scroll): Remove.
6203 * tui/tui-source.h: Don't declare tui_vertical_source_scroll.
6204 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Rename
6205 from tui_vertical_source_scroll.
6206 * tui/tui-disasm.h (tui_vertical_disassem_scroll): Don't declare.
6207 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Rename
6208 from tui_vertical_disassem_scroll.
6209 * tui/tui-data.h (struct tui_win_info) <do_scroll_vertical,
6210 do_scroll_horizontal>: New methods.
6211 <forward_scroll, backward_scroll, left_scroll, right_scroll>:
6212 Likewise.
6213 (struct tui_source_window_base): Add do_scroll_horizontal.
6214 (struct tui_source_window, struct tui_disasm_window): Add
6215 do_scroll_vertical.
6216 (struct tui_data_window, struct tui_cmd_window): Add
6217 do_scroll_horizontal and do_scroll_vertical.
6218 * tui/tui-command.c (tui_dispatch_ctrl_char): Use method calls.
6219
6220 2019-06-25 Tom Tromey <tom@tromey.com>
6221
6222 * tui/tui-data.h (struct tui_source_window_base): New struct.
6223 (struct tui_source_window): Derive from tui_source_window_base.
6224 (struct tui_disasm_window): New struct.
6225 * tui/tui-data.c (tui_source_window_base::clear_detail): Rename
6226 from tui_source_window::clear_detail.
6227 (tui_source_window_base): Rename from tui_source_window.
6228 (~tui_source_window_base): Rename from ~tui_source_window.
6229 (tui_alloc_win_info): Create a tui_disasm_window.
6230
6231 2019-06-25 Tom Tromey <tom@tromey.com>
6232
6233 * tui/tui-data.h (struct tui_source_window)
6234 (struct tui_data_window): Declare destructors.
6235 * tui/tui-data.c (~tui_source_window, ~tui_data_window): New
6236 destructors.
6237 (tui_win_info): Simplify.
6238
6239 2019-06-25 Tom Tromey <tom@tromey.com>
6240
6241 * tui/tui-winsource.c (tui_display_main)
6242 (tui_update_source_windows_with_addr)
6243 (tui_update_all_breakpoint_info): Update.
6244 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
6245 (new_height_ok, parse_scrolling_args): Update.
6246 * tui/tui-stack.c (tui_show_frame_info): Update.
6247 * tui/tui-data.h (struct tui_list): Remove.
6248 (tui_source_windows): Return a reference to a std::vector.
6249 * tui/tui-data.c (source_windows): Now a std::vector.
6250 (tui_source_windows): Change return type.
6251 (tui_clear_source_windows): Rewrite.
6252 (tui_clear_source_windows_detail, tui_add_to_source_windows)
6253 (tui_free_all_source_wins_content): Rewrite.
6254
6255 2019-06-25 Tom Tromey <tom@tromey.com>
6256
6257 * tui/tui-data.h (struct tui_win_info, struct tui_source_window)
6258 (struct tui_data_window, struct tui_cmd_window): Declare
6259 clear_detail method.
6260 * tui/tui-data.c (tui_source_window::clear_detail)
6261 (tui_cmd_window::clear_detail, tui_data_window::clear_detail): New
6262 methods.
6263 (tui_clear_win_detail): Simplify.
6264
6265 2019-06-25 Tom Tromey <tom@tromey.com>
6266
6267 * tui/tui-layout.c (make_source_window, make_disasm_window)
6268 (make_source_or_disasm_window): Remove win_info_ptr parameter.
6269 Return the new window.
6270 (show_source_disasm_command, show_data)
6271 (show_source_or_disasm_and_command): Update.
6272
6273 2019-06-25 Tom Tromey <tom@tromey.com>
6274
6275 * tui/tui-layout.c (make_command_window): Remove win_info_ptr
6276 parameter. Return the new window.
6277 (show_source_disasm_command): Update and remove NULL check.
6278 (show_source_or_disasm_and_command): Update.
6279
6280 2019-06-25 Tom Tromey <tom@tromey.com>
6281
6282 * tui/tui-layout.c (init_and_make_win): Remove NULL check.
6283
6284 2019-06-25 Tom Tromey <tom@tromey.com>
6285
6286 * tui/tui-data.h (struct tui_win_info): Make constructor
6287 protected. Make destructor virtual. Add initializers.
6288 (tui_source_window, tui_data_window, tui_cmd_window): New
6289 classes.
6290 * tui/tui-data.c (tui_win_info): Rename from init_win_info. Now a
6291 constructor. Add "type" parameter.
6292 (tui_source_window, tui_data_window, tui_cmd_window): New
6293 constructors.
6294 (tui_alloc_win_info): Instantiate the appropriate subclass.
6295
6296 2019-06-25 Tom Tromey <tom@tromey.com>
6297
6298 * tui/tui-win.c (tui_resize_all): Use delete.
6299 * tui/tui-data.h (struct tui_win_info) <~tui_win_info>: Declare
6300 destructor.
6301 (tui_free_window): Don't declare.
6302 * tui/tui-data.c (~tui_win_info): Rename from tui_free_window.
6303 Update.
6304
6305 2019-06-25 Tom Tromey <tom@tromey.com>
6306
6307 * tui/tui-data.h (struct tui_win_info): Add constructor.
6308 * tui/tui-data.c (tui_alloc_win_info): Use new.
6309 (tui_free_window): Use delete.
6310
6311 2019-06-22 Tom Tromey <tom@tromey.com>
6312
6313 * tui/tui-windata.h (tui_first_data_element_no_in_line): Don't
6314 declare.
6315 * tui/tui-windata.c (tui_first_data_element_no_in_line): Remove.
6316
6317 2019-06-22 Tom Tromey <tom@tromey.com>
6318
6319 * tui/tui-data.h (tui_del_window, tui_del_data_windows): Don't
6320 declare.
6321 * tui/tui-data.c (tui_del_window, tui_del_data_windows): Remove.
6322
6323 2019-06-22 Tom de Vries <tdevries@suse.de>
6324
6325 * dwarf2read.c (create_addrmap_from_aranges)
6326 (read_debug_names_from_section): Print ptrdiff_t using '%s' and plongest
6327 instead of '%zu'.
6328
6329 2019-06-21 Simon Marchi <simon.marchi@efficios.com>
6330
6331 * dwarf2read.h (dwarf2_section_info_def): Remove.
6332 (DEF_VEC_O (dwarf2_section_info_def)): Remove.
6333 * dwarf2read.c (struct dwo_sections) <types>: Change type to
6334 std::vector<dwarf2_section_info>.
6335 (struct dwo_file) <~dwo_file>: Remove.
6336 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't manually free
6337 types field.
6338 (dwarf2_per_objfile::locate_sections): Adjust to std::vector.
6339 (dwarf2_read_debug_names): Likewise.
6340 (create_debug_types_hash_table): Change parameter type to
6341 array_view, adjust code accordingly.
6342 (dwarf2_locate_dwo_sections): Adjust to std::vector.
6343 (partial_die_info::fixup): Likewise.
6344 (determine_prefix): Likewise.
6345 * dwarf-index-write.c (write_psymtabs_to_index): Adjust.
6346
6347 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
6348
6349 * dwarf2read.c (struct dwo_file) <dbfd>: Change type to
6350 gdb_bfd_ref_ptr.
6351 <~dwo_file>: Remove call to gdb_bfd_unref.
6352 (open_and_init_dwo_file): Move gdb_bfd_ref_ptr into dbfd field. Call
6353 gdb_bfd_ref_ptr::get.
6354
6355 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
6356
6357 * dwarf2read.h (struct dwarf2_per_objfile) <dwo_files>: Change
6358 type to htab_up.
6359 * dwarf2read.c (struct dwo_file): Initialize fields.
6360 <~dwo_file>: New.
6361 (free_dwo_file): Remove, move content to ~dwo_file.
6362 (struct dwo_file_deleter): Remove.
6363 (dwo_file_up>: Remove custom deleter.
6364 (free_dwo_files): Remove.
6365 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't explicitly free
6366 dwo_files.
6367 (process_skeletonless_type_units): Call unique_ptr::get.
6368 (allocate_dwo_file_hash_table): Add deleter to created hash
6369 table. Change return type to htab_up.
6370 (lookup_dwo_file_slot): Don't memset dwo_file, call
6371 unique_ptr::get.
6372 (create_dwo_unit_in_dwp_v1): Allocate dwo_file with new.
6373 (create_dwo_unit_in_dwp_v2): Likewise.
6374 (open_and_init_dwo_file): Likewise.
6375 (free_dwo_file_from_slot): Remove.
6376
6377 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
6378
6379 * dwarf2read.h (struct dwarf2_section_info) <readin,
6380 is_virtual>: Change type to bool.
6381 * dwarf2read.c (dwarf2_read_section, create_dwp_v2_section): Use
6382 true instead of 1.
6383
6384 2019-06-19 Tom Tromey <tom@tromey.com>
6385
6386 * tui/tui-data.h (tui_init_content_element): Don't declare.
6387
6388 2019-06-19 Tom Tromey <tom@tromey.com>
6389
6390 * tui/tui-data.h (tui_init_win_info): Don't declare.
6391
6392 2019-06-19 Tom de Vries <tdevries@suse.de>
6393
6394 * dwarf2read.h (abstract_to_concrete): Change type to
6395 std::unordered_map<sect_offset, std::vector<sect_offset>,
6396 gdb::hash_enum<sect_offset>>.
6397
6398 2019-06-19 Tom Tromey <tromey@adacore.com>
6399
6400 * ada-lang.c (ada_evaluate_subexp) <case OP_ATR_FIRST>: Handle
6401 EVAL_AVOID_SIDE_EFFECTS specially.
6402
6403 2019-06-19 Tom Tromey <tromey@adacore.com>
6404
6405 * source-cache.c (highlighter): New global.
6406 (source_cache::get_source_lines): Create a highlighter on demand.
6407
6408 2019-06-18 Andrew Burgess <andrew.burgess@embecosm.com>
6409
6410 * defs.h (deprecated_interactive_hook): Delete declaration.
6411 * interps.c (clear_interpreter_hooks): Remove use of
6412 deprecated_interactive_hook.
6413 * top.c (deprecated_interactive_hook): Delete definition.
6414 * utils.c (maybe_quit): Remove use of deprecated_interactive_hook.
6415
6416 2019-06-18 Tom de Vries <tdevries@suse.de>
6417
6418 PR gdb/24515
6419 * dwarf2read.h (abstract_to_concrete): Change type from
6420 std::unordered_map<die_info_ptr, std::vector<die_info_ptr>> to
6421 std::unordered_map<sect_offset, std::vector<sect_offset>>.
6422 * dwarf2read.c (read_variable): Update.
6423 (dwarf2_fetch_die_loc_sect_off): Update.
6424
6425 2019-06-17 Tom de Vries <tdevries@suse.de>
6426
6427 PR gdb/24617
6428 * common/pathstuff.c (child_path): Make sure parent_len > 0 before
6429 accessing parent[parent_len - 1].
6430
6431 2019-06-17 Paul Pluzhnikov <ppluzhnikov@google.com>
6432
6433 PR gdb/24364
6434 * gdb/dtrace-probe.c (dtrace_static_probe_ops::get_probe): Don't
6435 call dtrace_process_dof with NULL dof.
6436
6437 2019-06-16 Tom de Vries <tdevries@suse.de>
6438
6439 PR gdb/24445
6440 * contrib/gdb-add-index.sh: Update to handle dwz-m-ed executable.
6441
6442 2019-06-16 Tom Tromey <tom@tromey.com>
6443
6444 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
6445 (make_all_visible): Use address of member.
6446
6447 2019-06-16 Tom Tromey <tom@tromey.com>
6448
6449 * tui/tui-data.c (tui_clear_win_detail, init_win_info)
6450 (tui_free_window, free_content, free_content_elements): Remove
6451 unnecessary cast.
6452 * tui/tui-windata.c (tui_display_all_data): Remove unnecessary
6453 cast.
6454 * tui/tui-regs.c (tui_show_register_group)
6455 (tui_display_registers_from, tui_display_reg_element_at_line):
6456 Remove unnecessary cast.
6457
6458 2019-06-16 Andrew Burgess <andrew.burgess@embecosm.com>
6459
6460 * linux-nat.c (normal_mask): Delete.
6461 (_initialize_linux_nat): Don't initialise normal_mask.
6462
6463 2019-06-16 Simon Marchi <simon.marchi@polymtl.ca>
6464
6465 PR gdb/24445
6466 * dwarf-index-write.h (write_psymtabs_to_index): Add
6467 dwz_basename parameter.
6468 * dwarf-index-write.c (write_gdbindex): Move file writing to
6469 write_gdbindex_1. Change return type void.
6470 (assert_file_size): Move up, remove filename parameter.
6471 (write_gdbindex_1): New function.
6472 (write_debug_names): Change return type to void, call
6473 assert_file_size.
6474 (struct index_wip_file): New struct.
6475 (write_psymtabs_to_index): Add dwz_basename parameter. Move
6476 file logic to index_wip_file. Write index for dwz file if
6477 needed.
6478 (save_gdb_index_command): Pass basename of dwz file, if present.
6479 * dwarf-index-cache.c (index_cache::store): Obtain and pass
6480 build-id of dwz file, if present.
6481 * dwarf2read.c (struct dwz_file): Move to dwarf2read.h.
6482 (dwarf2_get_dwz_file): Likewise.
6483 * dwarf2read.h (struct dwz_file): Move from dwarf2read.c.
6484 (dwarf2_get_dwz_file): Likewise.
6485
6486 2019-06-16 Tom Tromey <tom@tromey.com>
6487
6488 * coffread.c (process_coff_symbol): Use xstrdup.
6489 * value.c (create_internalvar): Use xstrdup.
6490
6491 2019-06-16 Tom Tromey <tom@tromey.com>
6492
6493 * valops.c (value_cast, value_slice): Remove unnecessary cast.
6494 * breakpoint.c (stopin_command, stopat_command)
6495 (until_break_command, decode_location_default): Remove unnecessary
6496 cast.
6497 * utils.c (subset_compare): Remove unnecessary cast.
6498 * ada-lang.c (ada_update_initial_language): Remove unnecessary
6499 cast.
6500 * linespec.c (decode_line_with_last_displayed): Remove unnecessary
6501 cast.
6502 * infcmd.c (path_command): Remove unnecessary cast.
6503 * coffread.c (decode_type): Remove unnecessary cast.
6504 * xcoffread.c (read_xcoff_symtab): Remove unnecessary cast.
6505 * mipsread.c (mipscoff_symfile_read): Remove unnecessary cast.
6506 * tui/tui-stack.c (tui_show_locator_content)
6507 (tui_show_frame_info): Remove unnecessary cast.
6508 * tui/tui-win.c (tui_scroll_forward_command)
6509 (tui_scroll_backward_command, tui_set_focus, tui_set_win_height)
6510 (parse_scrolling_args): Remove unnecessary cast.
6511 * tui/tui-data.c (init_win_info, tui_del_window)
6512 (tui_free_window, tui_del_data_windows, tui_free_data_content)
6513 (free_content_elements): Remove unnecessary cast.
6514 * tui/tui-windata.c (tui_first_data_item_displayed): Remove
6515 unnecessary cast.
6516 * tui/tui-source.c (tui_set_source_content)
6517 (tui_vertical_source_scroll): Remove unnecessary cast.
6518 * tui/tui-layout.c (tui_default_win_height): Remove unnecessary
6519 cast.
6520 * tui/tui-io.c (tui_initialize_io): Remove unnecessary cast.
6521 * tui/tui-regs.c (tui_display_registers_from)
6522 (tui_display_register): Remove unnecessary cast.
6523 * tui/tui-wingeneral.c (tui_refresh_win, tui_delete_win)
6524 (tui_unhighlight_win, tui_highlight_win, tui_make_window)
6525 (make_visible): Remove unnecessary cast.
6526 * tui/tui-winsource.c (tui_erase_source_content)
6527 (tui_update_breakpoint_info, tui_set_exec_info_content): Remove
6528 unnecessary cast.
6529 * ax-gdb.c (agent_command_1): Remove unnecessary cast.
6530 * cli/cli-setshow.c (cmd_show_list): Remove unnecessary cast.
6531 * stabsread.c (read_type, read_array_type, read_range_type):
6532 Remove unnecessary cast.
6533 * mdebugread.c (mdebug_build_psymtabs): Remove unnecessary cast.
6534 (parse_symbol, parse_type, upgrade_type, parse_external)
6535 (parse_partial_symbols, psymtab_to_symtab_1, cross_ref): Remove
6536 unnecessary cast.
6537 * gdb_bfd.c (gdb_bfd_map_section): Remove unnecessary cast.
6538
6539 2019-06-16 Tom Tromey <tom@tromey.com>
6540
6541 * tui/tui-data.c (tui_alloc_generic_win_info)
6542 (tui_alloc_win_info, tui_add_content_elements): Remove NULL
6543 checks.
6544
6545 2019-06-16 Bernhard Heckel <bernhard.heckel@intel.com>
6546 Andrew Burgess <andrew.burgess@embecosm.com>
6547
6548 * f-typeprint.c (f_print_type): Don't return early for not
6549 associated or not allocated types.
6550 (f_type_print_varspec_suffix): Add print_rank parameter and print
6551 ranks of array types in case they dangling.
6552 (f_type_print_base): Add print_rank parameter.
6553
6554 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
6555
6556 * NEWS: Mention new MI commands.
6557 * break-catch-throw.c (enum exception_event_kind): Move to
6558 breakpoint.h.
6559 (print_mention_exception_catchpoint): Output text as a single
6560 message.
6561 (catch_exception_command_1): Rename to...
6562 (catch_exception_event): ...this, make non-static, update header
6563 command, and change some parameter types.
6564 (catch_catch_command): Update for changes to
6565 catch_exception_command_1.
6566 (catch_throw_command): Likewise.
6567 (catch_rethrow_command): Likewise.
6568 * breakpoint.c (enum exception_event_kind): Delete.
6569 * breakpoint.h (enum exception_event_kind): Moved here from
6570 break-catch-throw.c.
6571 (catch_exception_event): Declare.
6572 * mi/mi-cmd-catch.c (mi_cmd_catch_exception_event): New function.
6573 (mi_cmd_catch_throw): New function.
6574 (mi_cmd_catch_rethrow): New function.
6575 (mi_cmd_catch_catch): New function.
6576 * mi/mi-cmds.c (mi_cmds): Add 'catch-throw', 'catch-rethrow', and
6577 'catch-catch' entries.
6578 * mi/mi-cmds.h (mi_cmd_catch_throw): Declare.
6579 (mi_cmd_catch_rethrow): Declare.
6580 (mi_cmd_catch_catch): Declare.
6581
6582 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
6583
6584 * annotate.c (annotate_source_line): Change return type to void,
6585 update implementation to match.
6586 * annotate.h (annotate_source_line): Change return type to void,
6587 update header comment.
6588 * stack.c (print_frame_info): Don't change what frame information
6589 is printed based on whether annotations are on or not.
6590
6591 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
6592
6593 * annotate.c: Add 'source.h' and 'objfiles.h' includes.
6594 (annotate_source): Make static.
6595 (annotate_source_line): Moved from source.c and renamed from
6596 identify_source_line. Update the return type.
6597 * annotate.h (annotate_source): Delete declaration.
6598 (annotate_source_line): Declaration moved from source.h, and
6599 renamed from identify_source_line. Return type updated.
6600 * source.c (identify_source_line): Moved to annotate.c and renamed
6601 to annotate_source_line.
6602 (info_line_command): Remove check of annotation_level.
6603 * source.h (identify_source_line): Move declaration to annotate.h
6604 and rename to annotate_source_line.
6605 * stack.c: Add 'annotate.h' include.
6606 (print_frame_info): Remove check of annotation_level before
6607 calling annotate_source_line.
6608
6609 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
6610
6611 * source-cache.c (source_cache::get_plain_source_lines): Use
6612 open_source_file_with_line_charpos instead of just
6613 open_source_file, remove call to find_source_lines.
6614 (source_cache::get_source_lines): Likewise.
6615 * source.c (find_source_lines): Make static.
6616 (get_filename_and_charpos): Renamed into...
6617 (open_source_file_with_line_charpos): ..this along with changes to
6618 return a scoped_fd, and some other minor clean ups.
6619 (identify_source_line): Use open_source_file_with_line_charpos.
6620 (search_command_helper): Use open_source_file_with_line_charpos
6621 instead of just open_source_file, remove call to
6622 find_source_lines.
6623 * source.h (open_source_file_with_line_charpos): Declare new
6624 function.
6625 (find_source_lines): Delete declaration.
6626
6627 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
6628
6629 * source.c (get_filename_and_charpos): Remove fullname
6630 parameter.
6631 (identify_source_line): Update call to get_filename_and_charpos.
6632
6633 2019-06-14 Tom Tromey <tromey@adacore.com>
6634
6635 PR gdb/24502:
6636 * ui-style.h (skip_ansi_escape): Update comment.
6637 * ui-file.h (class no_terminal_escape_file): New class.
6638 * ui-file.c (no_terminal_escape_file::write)
6639 (no_terminal_escape_file::puts): New methods.
6640 * cli/cli-logging.c (handle_redirections): Use
6641 no_terminal_escape_file.
6642
6643 2019-06-14 Tom Tromey <tromey@adacore.com>
6644
6645 * NEWS: Move convenience variable news above Python news.
6646
6647 2019-06-14 Tom Tromey <tom@tromey.com>
6648
6649 * gnulib: Move directory to top-level.
6650 * configure.ac: Don't configure gnulib.
6651 * configure: Rebuild.
6652 * common/common-defs.h: Use new path to gnulib.
6653 * Makefile.in (GNULIB_BUILDDIR): Now ../gnulib.
6654 (GNULIB_H): Remove.
6655 (INCGNU): Look in new gnulib location.
6656 (HFILES_NO_SRCDIR): Remove gnulib files.
6657 (SUBDIR, REQUIRED_SUBDIRS): Remove gnulib.
6658 (generated_files): Remove GNULIB_H.
6659 ($(LIBGNU), all-lib): Remove targets.
6660 (distclean): Don't mention GNULIB_BUILDDIR.
6661 ($(GNULIB_BUILDDIR)/Makefile): Remove target.
6662
6663 2019-06-14 Tom Tromey <tromey@adacore.com>
6664
6665 * symfile.c (add_symbol_file_command): Remove obsolete comment.
6666 Warn if symbol file does not provide any symbols.
6667
6668 2019-06-14 Tom Tromey <tromey@adacore.com>
6669
6670 * source.c (find_and_open_source): Respect basenames_may_differ.
6671
6672 2019-06-14 Andrew Burgess <andrew.burgess@embecosm.com>
6673
6674 * annotate.c (annotate_breakpoints_invalid): Make use of
6675 scoped_restore_terminal_state.
6676 (annotate_frames_invalid): Likewise.
6677
6678 2019-06-14 Tom Tromey <tromey@adacore.com>
6679
6680 * ada-lang.c (ada_evaluate_subexp) <case BINOP_ASSIGN>: Always
6681 allow assignment to an internalvar.
6682
6683 2019-06-14 Tom Tromey <tromey@adacore.com>
6684
6685 * ada-lex.l: Allow "_" in attribute names.
6686
6687 2019-06-14 Tom Tromey <tromey@adacore.com>
6688
6689 PR gdb/24653:
6690 * regcache.c (registers_changed): Don't call alloca.
6691 * top.c (execute_command): Don't call alloca.
6692
6693 2019-06-13 Pedro Alves <palves@redhat.com>
6694
6695 * cli/cli-setshow.c (cli/cli-setshow.c): New parameter
6696 'expression'. When parsing an expression, error out if there's
6697 junk after "unlimited".
6698 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
6699 (do_set_command): Adjust calls to is_unlimited_literal.
6700
6701 2019-06-13 Pedro Alves <palves@redhat.com>
6702
6703 * compile/compile.c (make_compile_options_def_group): Add braces
6704 around array_view initializer.
6705 * thread.c (make_thread_apply_all_options_def_group)
6706 (make_thread_apply_all_options_def_group): Likewise.
6707
6708 2019-06-13 Pedro Alves <palves@redhat.com>
6709
6710 * NEWS (New commands): Mention "maint test-options
6711 require-delimiter", "maint test-options unknown-is-error", "maint
6712 test-options unknown-is-operand" and "maint show
6713 test-options-completion-result".
6714 (New command options, command completion): New section.
6715 (Completion improvements): New section.
6716 Mention that you can abbreviate "unlimited".
6717
6718 2019-06-13 Pedro Alves <palves@redhat.com>
6719
6720 * cli/cli-utils.c (parse_flags, parse_flags_qcs): Delete.
6721 * cli/cli-utils.h (parse_flags, parse_flags_qcs): Delete.
6722 * unittests/cli-utils-selftests.c (test_parse_flags)
6723 (test_parse_flags_qcs): Delete.
6724 (test_cli_utils): Don't call deleted functions.
6725
6726 2019-06-13 Pedro Alves <palves@redhat.com>
6727
6728 * thread.c: Include "cli/cli-option.h".
6729 (tp_array_compar_ascending): Global.
6730 (tp_array_compar): Delete function.
6731 (tp_array_compar_ascending, tp_array_compar_descending): New
6732 functions.
6733 (ascending_option_def, qcs_flag_option_def)
6734 (thr_qcs_flags_option_defs)
6735 (make_thread_apply_all_options_def_group)
6736 (make_thread_apply_options_def_group): New.
6737 (thread_apply_all_command): Use gdb::option::process_options.
6738 (thread_apply_command_completer)
6739 (thread_apply_all_command_completer): New.
6740 (thread_apply_command): Use gdb::option::process_options.
6741 (_initialize_thread): Delete THREAD_APPLY_FLAGS_HELP, replace it
6742 with a new THREAD_APPLY_OPTION_HELP. Use gdb::option::build_help
6743 to generate help text of "thread apply". Adjust "taas"'s help.
6744 * tid-parse.c (tid_range_parser::in_thread_range): New method.
6745 * tid-parse.h (tid_range_parser::in_thread_range): New method.
6746
6747 2019-06-13 Pedro Alves <palves@redhat.com>
6748
6749 * thread.c (thread_apply_command): Check for invalid TID with
6750 isdigit instead of !isalpha.
6751
6752 2019-06-13 Pedro Alves <palves@redhat.com>
6753
6754 * cli/cli-utils.c (parse_flags_qcs): Use validate_flags_qcs.
6755 (validate_flags_qcs): New.
6756 * cli/cli-utils.h (struct qcs_flags): Change field types to int.
6757 (validate_flags_qcs): Declare.
6758 * stack.c (qcs_flag_option_def, fr_qcs_flags_option_defs): New.
6759 (make_frame_apply_options_def_group): New.
6760 (frame_apply_command_count): Process options with
6761 gdb::option::process_options.
6762 (frame_apply_completer): New.
6763 (frame_apply_level_completer, frame_apply_all_completer)
6764 (frame_apply_completer): New.
6765 (_initialize_stack): Update help of "frame apply", "frame apply
6766 level", "frame apply all" and "faas" to mention supported options
6767 and install command completers.
6768 * stack.h (frame_apply_all_completer): Declare.
6769 * thread.c: Include "stack.h".
6770 (tfaas_command): Add "--".
6771 (_initialize_thread): Update help "tfaas" to mention supported
6772 options and install command completer.
6773
6774 2019-06-13 Pedro Alves <palves@redhat.com>
6775
6776 * completer.c (complete_nested_command_line): New.
6777 (gdb_completion_word_break_characters_throw): Add assertion.
6778 * completer.h (complete_nested_command_line): Declare.
6779
6780 2019-06-13 Pedro Alves <palves@redhat.com>
6781
6782 * stack.c (parse_backtrace_qualifiers): New.
6783 (backtrace_command): Use it.
6784 (backtrace_command_completer): Complete on qualifiers.
6785
6786 2019-06-13 Pedro Alves <palves@redhat.com>
6787
6788 * frame.c: Include "cli/cli-option.h.
6789 (user_set_backtrace_options): New.
6790 (backtrace_past_main, backtrace_past_entry, backtrace_limit):
6791 Delete.
6792 (get_prev_frame): Adjust.
6793 (boolean_option_def, uinteger_option_def)
6794 (set_backtrace_option_defs): New.
6795 (_initialize_frame): Adjust and use
6796 gdb::option::add_setshow_cmds_for_options to install "set
6797 backtrace past-main" and "set backtrace past-entry".
6798 * frame.h: Include "cli/cli-option.h".
6799 (struct frame_print_options): Forward declare.
6800 (print_frame_arguments_all, print_frame_arguments_scalars)
6801 (print_frame_arguments_none): Declare.
6802 (print_entry_values): Delete declaration.
6803 (struct frame_print_options, user_frame_print_options): New.
6804 (struct set_backtrace_options): New.
6805 (set_backtrace_option_defs, user_set_backtrace_options): Declare.
6806 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
6807 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
6808 (mi_cmd_stack_list_variables): Pass down USER_FRAME_PRINT_OPTIONS.
6809 (list_args_or_locals): Add frame_print_options parameter.
6810 (mi_cmd_stack_info_frame): Pass down USER_FRAME_PRINT_OPTIONS.
6811 * python/py-framefilter.c (enumerate_args): Pass down
6812 USER_FRAME_PRINT_OPTIONS.
6813 * stack.c: Include "cli/cli-option.h".
6814 (print_frame_arguments_all, print_frame_arguments_scalars)
6815 (print_frame_arguments_none): Declare.
6816 (print_raw_frame_arguments, print_entry_values): Delete.
6817 (user_frame_print_options): New.
6818 (boolean_option_def, enum_option_def, frame_print_option_defs):
6819 New.
6820 (struct backtrace_cmd_options): New.
6821 (bt_flag_option_def): New.
6822 (backtrace_command_option_defs): New.
6823 (print_stack_frame): Pass down USER_FRAME_PRINT_OPTIONS.
6824 (print_frame_arg, read_frame_arg, print_frame_args)
6825 (print_frame_info, print_frame): Add frame_print_options parameter
6826 and use it.
6827 (info_frame_command_core): Pass down USER_FRAME_PRINT_OPTIONS.
6828 (backtrace_command_1): Add frame_print_options and
6829 backtrace_cmd_options parameters and use them.
6830 (make_backtrace_options_def_group): New.
6831 (backtrace_command): Process command options with
6832 gdb::option::process_options.
6833 (backtrace_command_completer): New.
6834 (_initialize_stack): Extend "backtrace"'s help to mention
6835 supported options. Install completer for "backtrace".
6836 Install some settings commands with add_setshow_cmds_for_options.
6837
6838 2019-06-13 Pedro Alves <palves@redhat.com>
6839
6840 * NEWS (Changed commands): Mention set/show print raw-frame-arguments,
6841 and that "set/show print raw frame-arguments" are now deprecated.
6842
6843 * cli/cli-decode.c (add_setshow_boolean_cmd): Now returns the
6844 command.
6845 * command.h (add_setshow_boolean_cmd): Return cmd_list_element *.
6846 * stack.c (_initialize_stack): Install "set/show print
6847 raw-frame-arguments", and deprecate "set/show print raw
6848 frame-arguments".
6849 * valprint.c (_initialize_valprint): Deprecate "set/show print
6850 raw".
6851
6852 2019-06-13 Pedro Alves <palves@redhat.com>
6853
6854 * compile/compile.c (struct compile_options): New.
6855 (compile_flag_option_def, compile_command_option_defs)
6856 (make_compile_options_def_group): New.
6857 (compile_file_command): Handle options with
6858 gdb::option::process_options.
6859 (compile_file_command_completer): New function.
6860 (compile_code_command): Handle options with
6861 gdb::option::process_options.
6862 (compile_code_command_completer): New function.
6863 (_initialize_compiler): Install completers for "compile code" and
6864 "compile file". Mention available options in "compile code" and
6865 "compile code"'s help.
6866 * completer.c (advance_to_completion_word): New, factored out from
6867 ...
6868 (advance_to_expression_complete_word_point): ... this.
6869 (advance_to_filename_complete_word_point): New.
6870 * completer.h (advance_to_filename_complete_word_point): New
6871 declaration.
6872
6873 2019-06-13 Pedro Alves <palves@redhat.com>
6874
6875 * compile/compile.c: Include "cli/cli-option.h".
6876 (compile_print_value): Scope data pointer is now a
6877 value_print_options pointer; adjust.
6878 (compile_print_command): Process options. Scope data pointer is
6879 now a value_print_options pointer; adjust.
6880 (_initialize_compile): Update "compile print"'s help to include
6881 supported options. Install a completer for "compile print".
6882 * cp-valprint.c (show_vtblprint, show_objectprint)
6883 (show_static_field_print): Delete.
6884 (_initialize_cp_valprint): Don't install "set print
6885 static-members", "set print vtbl", "set print object" here.
6886 * printcmd.c: Include "cli/cli-option.h" and
6887 "common/gdb_optional.h".
6888 (print_command_parse_format): Rework to fill in a
6889 value_print_options instead of a format_data.
6890 (print_value): Change parameter type from format_data pointer to
6891 value_print_options reference. Adjust.
6892 (print_command_1): Process options. Adjust to pass down a
6893 value_print_options.
6894 (print_command_completer): New.
6895 (_initialize_printcmd): Install print_command_completer as
6896 handle_brkchars completer for the "print" command. Update
6897 "print"'s help to include supported options.
6898 * valprint.c: Include "cli/cli-option.h".
6899 (show_vtblprint, show_objectprint, show_static_field_print): Moved
6900 here from cp-valprint.c.
6901 (boolean_option_def, uinteger_option_def)
6902 (value_print_option_defs, make_value_print_options_def_group):
6903 New. Use gdb::option::add_setshow_cmds_for_options to install
6904 "set print elements", "set print null-stop", "set print repeats",
6905 "set print pretty", "set print union", "set print array", "set
6906 print address", "set print symbol", "set print array-indexes".
6907 * valprint.h: Include <string> and "cli/cli-option.h".
6908 (make_value_print_options_def_group): Declare.
6909 (print_value): Change parameter type from format_data pointer to
6910 value_print_options reference.
6911 (print_command_completer): Declare.
6912
6913 2019-06-13 Pedro Alves <palves@redhat.com>
6914
6915 * Makefile.in (SUBDIR_CLI_SRCS): Add cli/cli-option.c.
6916 (COMMON_SFILES): Add maint-test-settings.c.
6917 * cli/cli-decode.c (boolean_enums): New global, factored out from
6918 ...
6919 (add_setshow_boolean_cmd): ... here.
6920 * cli/cli-decode.h (boolean_enums): Declare.
6921 * cli/cli-option.c: New file.
6922 * cli/cli-option.h: New file.
6923 * cli/cli-setshow.c (parse_cli_boolean_value(const char **)): New,
6924 factored out from ...
6925 (parse_cli_boolean_value(const char *)): ... this.
6926 (is_unlimited_literal): Change parameter type to pointer to
6927 pointer. Adjust and advance ARG pointer.
6928 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
6929 (parse_cli_var_enum): New, factored out from ...
6930 (do_set_command): ... this. Adjust.
6931 * cli/cli-setshow.h (parse_cli_boolean_value)
6932 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
6933 (parse_cli_var_enum): Declare.
6934 * cli/cli-utils.c: Include "cli/cli-option.h".
6935 (get_ulongest): New.
6936 * cli/cli-utils.h (get_ulongest): Declare.
6937 (check_for_argument): New overloads.
6938 * maint-test-options.c: New file.
6939
6940 2019-06-13 Pedro Alves <palves@redhat.com>
6941
6942 * cli/cli-utils.c (number_or_range_parser::get_number): Do not
6943 parse a range if "-" is at the end of the string.
6944
6945 2019-06-13 Pedro Alves <palves@redhat.com>
6946
6947 * cli/cli-setshow.c (parse_auto_binary_operation)
6948 (parse_cli_boolean_value): Don't allow "o".
6949
6950 2019-06-13 Pedro Alves <palves@redhat.com>
6951
6952 * Makefile.in (COMMON_SFILES): Add maint-test-settings.c.
6953 * NEWS: Mention maint test-settings KIND.
6954 * maint-test-settings.c: New file.
6955
6956 2019-06-13 Pedro Alves <palves@redhat.com>
6957
6958 * cli/cli-decode.c (add_setshow_cmd_full): Remove "show"
6959 completer.
6960 (add_setshow_string_cmd, add_setshow_string_noescape_cmd): Remove
6961 "set" completers.
6962
6963 2019-06-13 Pedro Alves <palves@redhat.com>
6964
6965 * cli/cli-setshow.c (do_set_command) <var_enum>: Detect junk
6966 after item.
6967
6968 2019-06-13 Pedro Alves <palves@redhat.com>
6969
6970 * cli/cli-setshow.c (is_unlimited_literal): Allow abbreviations.
6971
6972 2019-06-13 Pedro Alves <palves@redhat.com>
6973
6974 * ax-gdb.c (agent_command_1): Remove skip_spaces call.
6975 * breakpoint.c (watch_maybe_just_location): Remove skip_spaces
6976 call.
6977 * cli/cli-cmds.c (apropos_command): Remove skip_spaces call.
6978 * cli/cli-utils.c (extract_info_print_args): Remove skip_spaces
6979 calls.
6980 (check_for_argument): Skip spaces after argument.
6981
6982 2019-06-13 Pedro Alves <palves@redhat.com>
6983
6984 * thread.c (thread_apply_command): Adjust TID parsing.
6985 * tid-parse.c (tid_range_parser::finished): Ensure parsing end is
6986 detected before end of string.
6987 (tid_is_in_list): Error out if LIST is invalid.
6988
6989 2019-06-13 Pedro Alves <palves@redhat.com>
6990
6991 * completer.c (complete_line_internal_1): Rewind completion word
6992 point.
6993 (completion_tracker::advance_custom_word_point_by): Change
6994 parameter type to int.
6995 * completer.h (completion_tracker::advance_custom_word_point_by):
6996 Likewise.
6997
6998 2019-06-13 Pedro Alves <palves@redhat.com>
6999
7000 * completer.c (advance_to_completion_word): Handle delimiters.
7001
7002 2019-06-11 Bernhard Heckel <bernhard.heckel@intel.com>
7003
7004 * dwarf2read.c (add_partial_symbol): Skip nameless modules.
7005
7006 2019-06-11 Tom Tromey <tom@tromey.com>
7007
7008 * common/common-utils.c (xmalloc, xrealloc, xcalloc)
7009 (xmalloc_failed): Move to alloc.c.
7010 * alloc.c: New file.
7011 * Makefile.in (COMMON_SFILES): Add alloc.c.
7012
7013 2019-06-11 Tom Tromey <tom@tromey.com>
7014
7015 * nat/linux-waitpid.c: Don't include server.h.
7016 (linux_debug): Remove.
7017 (my_waitpid): Update.
7018
7019 2019-06-11 Tom Tromey <tromey@adacore.com>
7020
7021 * infcall.c (_initialize_infcall): Remove trailing newline from
7022 help.
7023 * user-regs.c (_initialize_user_regs): Remove trailing newline
7024 from help.
7025 * typeprint.c (_initialize_typeprint): Remove trailing newline
7026 from help.
7027 * reverse.c (_initialize_reverse): Remove trailing newlines from
7028 help.
7029 * tracepoint.c (_initialize_tracepoint): Remove trailing newlines
7030 from help.
7031 * language.c (add_set_language_command): Remove trailing newline
7032 from help.
7033 * infcmd.c (_initialize_infcmd): Remove trailing newlines from
7034 help.
7035 * disasm.c (_initialize_disasm): Remove trailing newline from
7036 help.
7037 * top.c (init_main): Remove trailing newline from help.
7038 * interps.c (_initialize_interpreter): Remove trailing newline
7039 from help.
7040 * btrace.c (_initialize_btrace): Remove trailing newlines from
7041 help.
7042 * breakpoint.c (_initialize_breakpoint): Remove trailing newline
7043 from help.
7044 * python/python.c (_initialize_python): Remove trailing newline
7045 from help.
7046 * spu-tdep.c (_initialize_spu_tdep): Remove trailing newlines from
7047 help.
7048 * tui/tui-win.c (_initialize_tui_win): Remove trailing newlines
7049 from help. Reformat some text.
7050 * tui/tui-stack.c (_initialize_tui_stack): Remove trailing newline
7051 from help.
7052 * tui/tui-layout.c (_initialize_tui_layout): Remove trailing
7053 newline from help.
7054
7055 2019-06-11 Tom Tromey <tromey@adacore.com>
7056
7057 * darwin-nat.c (darwin_decode_exception_message)
7058 (darwin_decode_message, darwin_nat_target::kill): Fix shadowing.
7059
7060 2019-06-10 Andrew Burgess <andrew.burgess@embecosm.com>
7061
7062 * valops.c (value_slice): Check for not allocated or not
7063 associated values.
7064
7065 2019-06-10 Tom de Vries <tdevries@suse.de>
7066
7067 PR gdb/24618
7068 * dwarf2read.c (struct mapped_index::symbol_name_slot_invalid): Make
7069 sure an empty slot (defined by a 32-bit zero pair) is recognized as
7070 invalid.
7071
7072 2019-06-10 Tom de Vries <tdevries@suse.de>
7073
7074 PR gdb/24611
7075 * linespec.c (linespec_lexer_lex_string): Remove incorrect
7076 "++(PARSER_STREAM (parser))" for "[abi"-prefixed colon. Add assert.
7077
7078 2019-06-10 Tom de Vries <tdevries@suse.de>
7079
7080 PR symtab/24545
7081 * symtab.c (struct demangled_name_entry): Add language field.
7082 (symbol_set_names): Revert "[gdb/symtab] Fix language of duplicate
7083 static minimal symbol". Set and use language field.
7084
7085 2019-06-10 Tom Tromey <tromey@adacore.com>
7086
7087 * ada-lang.c (_initialize_ada_language): Update help text.
7088
7089 2019-06-10 Tom Tromey <tromey@adacore.com>
7090
7091 * m32c-tdep.c (m32c_m16c_address_to_pointer): Don't end warning
7092 with a newline.
7093 * guile/guile.c (handle_boot_error): Don't end warning with a
7094 newline.
7095 * cli/cli-cmds.c (exit_status_set_internal_vars): Don't end
7096 warning with a newline.
7097 * s12z-tdep.c (s12z_skip_prologue): Don't end warning with a
7098 newline.
7099 (s12z_frame_cache): Likewise.
7100 * dwarf-index-cache.c (index_cache::store): Don't end warning with
7101 a newline.
7102 * solib-svr4.c (disable_probes_interface): Don't end warning with
7103 a newline.
7104 * nat/fork-inferior.c (fork_inferior): Don't end warning with a
7105 newline.
7106 * python/python.c (do_finish_initialization): Don't end warning
7107 with a newline.
7108
7109 2019-06-10 Tom Tromey <tom@tromey.com>
7110
7111 * python/py-breakpoint.c (gdbpy_breakpoint_created)
7112 (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
7113 gdbpy_enter.
7114
7115 2019-06-10 Tom Tromey <tromey@adacore.com>
7116
7117 * elfread.c (elf_read_minimal_symbols): Don't set the dbx objfile
7118 data.
7119 (elf_new_init): Don't call stabsread_new_init.
7120 * dbxread.c (coffstab_build_psymtabs): Set dbx objfile data.
7121 (elfstab_build_psymtabs): Likewise. Call stabsread_new_init.
7122 * coffread.c (coff_symfile_init): Don't set the dbx objfile data.
7123
7124 2019-06-10 Tom de Vries <tdevries@suse.de>
7125
7126 PR symtab/16264
7127 PR symtab/24517
7128 * dwarf2read.c (read_func_scope): Handle DW_AT_main_subprogram.
7129
7130 2019-06-06 Руслан Ижбулатов <lrn1986@gmail.com>
7131
7132 * source.c (find_and_open_source): Also rewrite relative file
7133 names.
7134
7135 2019-04-26 Amos Bird <amosbird@gmail.com>
7136
7137 * annotate.c (annotate_thread_exited): Add "thread-exited"
7138 annotation.
7139
7140 2019-06-06 Tom Tromey <tromey@adacore.com>
7141
7142 * maint.h (class scoped_command_stats): Use
7143 DISABLE_COPY_AND_ASSIGN.
7144 <print_time>: New method.
7145 * maint.c (scoped_command_stats, ~scoped_command_stats): Call
7146 print_time.
7147 (scoped_command_stats::print_time): New method.
7148
7149 2019-06-05 Andrew Burgess <andrew.burgess@embecosm.com>
7150
7151 * riscv-tdep.c (riscv_insn::decode): Gracefully ignore
7152 instructions of lengths 6 or 8 bytes.
7153
7154 2019-06-04 Pedro Alves <palves@redhat.com>
7155
7156 * common/gdb_unique_ptr.h (make_unique_xstrdup): New.
7157
7158 * ada-lang.c (catch_ada_completer): Use make_unique_xstrdup.
7159 * breakpoint.c (condition_completer): Likewise.
7160 * cli/cli-dump.c (scan_expression): Likewise.
7161 * common/filestuff.c (mkdir_recursive): Likewise.
7162 * common/gdb_tilde_expand.c (gdb_tilde_expand_up)
7163 * common/pathstuff.c (gdb_realpath, gdb_realpath_keepfile)
7164 (gdb_abspath): Likewise.
7165 * compile/compile-cplus-types.c
7166 (compile_cplus_instance::decl_name): Likewise.
7167 * completer.c (complete_explicit_location):
7168 (signal_completer, reg_or_group_completer_1): Likewise.
7169 * cp-support.c (cp_remove_params_if_any): Likewise.
7170 * fbsd-tdep.c (fbsd_core_vnode_path): Likewise.
7171 * guile/scm-safe-call.c (gdbscm_safe_eval_string): Likewise.
7172 * infcmd.c (strip_bg_char): Likewise.
7173 * linespec.c (copy_token_string): Likewise.
7174 * mi/mi-main.c (output_cores): Likewise.
7175 * psymtab.c (psymtab_search_name):
7176 * symfile.c (test_set_ext_lang_command): Likewise.
7177 * target.c (target_fileio_read_stralloc): Likewise.
7178 * tui/tui-regs.c (tui_reggroup_completer): Likewise.
7179 * value.c (complete_internalvar): Likewise.
7180
7181 2019-06-04 Christian Biesinger <cbiesinger@google.com>
7182
7183 Add objfile property to gdb.Type.
7184 * NEWS: Mention Python API addition.
7185 * python/py-type.c (typy_get_objfile): New method.
7186
7187 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7188
7189 * NEWS: Mention the new set|show style [title|highlight].
7190 Mention changes to "show style", "help" and "apropos".
7191
7192 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7193
7194 * cli/cli-decode.h (apropos_cmd): Add verbose argument.
7195 * cli/cli-decode.c (apropos_cmd): Likewise. Use print_doc_of_command
7196 instead of print_help_for_command.
7197 (print_doc_of_command): New function.
7198 (help_list): Add 'apropos -v word' suggestion.
7199 (print_help_for_command): Style the command name using title style.
7200 * cli/cli-cmds.c (apropos_command): Parse optional -v flag.
7201 (_initialize_cli_cmds): Describe -v in apropos_command help.
7202
7203 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7204
7205 * cli/cli-style.h (cli_style_option): Add name in constructor,
7206 add m_name class member, add constructor with intensity,
7207 add name class function.
7208 (cli_style_option::add_setshow_commands): Remove name argument.
7209 (highlight_style, title_style): New styles.
7210 * cli/cli-style.c (do_show): New function that shows a style
7211 characteristic styling the style name with itself.
7212 (set_style_name): New function.
7213 (STYLE_ADD_SETSHOW_COMMANDS): Remove NAME arguments.
7214 Update all callers according to the changes in cli/cli-style.h.
7215 * utils.h (fputs_highlighted): New function.
7216 * utils.c (fputs_highlighted): Likewise.
7217
7218 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7219
7220 * NEWS: Mention new pipe command and new convenience variables.
7221
7222 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7223
7224 * cli/cli-cmds.c (pipe_command): New function.
7225 (_initialize_cli_cmds): Call add_com for pipe_command.
7226 Define | as an alias for pipe.
7227 (exit_status_set_internal_vars): New function.
7228 (shell_escape): Call exit_status_set_internal_vars.
7229 cli/cli-decode.c (find_command_name_length): Recognize | as
7230 a single character command.
7231
7232 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7233
7234 * gdbcmd.h (execute_command_to_ui_file): New declaration.
7235 top.c (execute_command_to_ui_file): New function, mostly a copy
7236 of execute_command_to_string.
7237 (execute_command_to_string): Implement by calling
7238 execute_command_to_ui_file.
7239
7240 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7241
7242 * top.h (saved_command_line): Remove declaration.
7243 * top.c (previous_saved_command_line, previous_repeat_arguments):
7244 New variables.
7245 (saved_command_line): Make static, define together with other
7246 'repeat variables'.
7247 (dont_repeat): Clear repeat_arguments.
7248 (repeat_previous, get_saved_command_line, save_command_line):
7249 New functions.
7250 (gdb_init): Initialize saved_command_line
7251 and previous_saved_command_line.
7252 * main.c (captured_main_1): Remove saved_command_line initialization.
7253 * event-top.c (handle_line_of_input): Update to use
7254 the new 'repeat' related functions instead of direct access to
7255 saved_command_line.
7256 * command.h (repeat_previous, get_saved_command_line,
7257 save_command_line): New declarations.
7258 (dont_repeat): Add comment.
7259
7260 2019-05-30 Tom Tromey <tromey@adacore.com>
7261
7262 * gdbtypes.h (struct range_bounds) <flag_upper_bound_is_count>:
7263 Fix comment.
7264 (TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED): Rewrite comment.
7265
7266 2019-05-30 Jan Vrany <jan.vrany@fit.cvut.cz>
7267
7268 PR cli/24587
7269 * completer.c (complete): Initialize variable word.
7270
7271 2019-05-29 Sergio Durigan Junior <sergiodj@redhat.com>
7272
7273 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
7274 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1715008
7275 * dwarf2read.c (dwarf_decode_macro_bytes): Move check to see if
7276 'body' is NULL to the outter 'if', protecting the '!is_define'
7277 situation as well.
7278
7279 2019-05-29 Tom Tromey <tromey@adacore.com>
7280
7281 * dwarf2read.c (partial_die_parent_scope): Call dwarf_tag_name.
7282 (dwarf_unknown): New function.
7283 (dwarf_tag_name, dwarf_attr_name, dwarf_form_name)
7284 (dwarf_type_encoding_name): Use dwarf_unknown.
7285
7286 2019-05-29 Tom Tromey <tromey@adacore.com>
7287
7288 PR c++/20020:
7289 * cp-valprint.c (cp_print_value_fields): Call
7290 cp_print_static_field inside "try".
7291
7292 2019-05-29 Tom Tromey <tromey@adacore.com>
7293
7294 * inflow.c (struct terminal_info): Add default operator=.
7295 * configure: Rebuild.
7296 * warning.m4 (AM_GDB_WARNINGS): Add -Wdeprecated-copy,
7297 -Wdeprecated-copy-dtor, -Wredundant-move.
7298
7299 2019-05-29 Tom Tromey <tromey@adacore.com>
7300
7301 * NEWS: Add entry.
7302 * infcmd.c (print_return_value_1): Handle finish_print
7303 option.
7304 (show_print_finish): New function.
7305 (_initialize_infcmd): Add "set/show print finish" commands.
7306 * valprint.c (user_print_options): Initialize new member.
7307 * valprint.h (struct value_print_options) <finish_print>: New
7308 member.
7309
7310 2019-05-28 Tom Tromey <tromey@adacore.com>
7311
7312 * ada-lang.c (ada_remove_Xbn_suffix)
7313 (find_old_style_renaming_symbol)
7314 (parse_old_style_renaming): Remove.
7315 (ada_find_renaming_symbol): Don't call
7316 find_old_style_renaming_symbol.
7317 (ada_is_renaming_symbol): Rename from
7318 ada_find_renaming_symbol. Remove "block" parameter. Return
7319 bool. Now static.
7320 (ada_read_var_value): Update and simplify.
7321 * ada-exp.y (write_var_or_type): Remove old code.
7322
7323 2019-05-28 Alan Hayward <alan.hayward@arm.com>
7324
7325 PR gdb/25010
7326 * event-top.c: Remove include comment.
7327 * inflow.c (class scoped_ignore_sigttou): Move from here...
7328 * inflow.h (class scoped_ignore_sigttou): ...to here.
7329 * ser-unix.c (hardwire_drain_output): Block SIGTTOU during drain.
7330 * top.c: Remove include comment.
7331
7332 2019-05-27 Tom Tromey <tom@tromey.com>
7333
7334 * NEWS: Fix typo.
7335
7336 2019-05-22 Tom Tromey <tromey@adacore.com>
7337
7338 * target.c (target_follow_exec): Constify parameter.
7339 * target-delegates.c: Rebuild.
7340 * remote.c (remote_target::follow_exec): Constify parameter.
7341 * infrun.c (follow_exec): Constify parameter.
7342 * target.h (struct target_ops) <follow_exec>: Constify parameter.
7343 (target_follow_exec): Likewise.
7344
7345 2019-05-22 Alan Hayward <alan.hayward@arm.com>
7346
7347 * aarch64-tdep.c (aarch64_execute_dwarf_cfa_vendor_op): Treat
7348 DW_CFA_AARCH64_negate_ra_state as nop on non pauth targets.
7349
7350 2019-05-22 Alan Hayward <alan.hayward@arm.com>
7351
7352 * NEWS: Add debugredirect and testsuite sections.
7353
7354 2019-05-22 Simon Cook <simon.cook@embecosm.com>
7355
7356 * riscv-tdep.c (riscv_gdbarch_init): Support determining flen from
7357 target descriptions using exclusively floating point register name
7358 aliases.
7359
7360 2019-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
7361
7362 PR gdb/18644:
7363 * f-lang.c (build_fortran_types): Handle the case where
7364 gdbarch_floatformat_for_type returns a nullptr.
7365
7366 2019-05-21 Tom de Vries <tdevries@suse.de>
7367
7368 PR cli/24587
7369 * cli/cli-cmds.c (complete_command): Fix use of unitialized variable.
7370
7371 2019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
7372
7373 PR gdb/18644:
7374 * f-lang.c (build_fortran_types): Use floatformats_ia64_quad for
7375 16-byte floats.
7376 * i386-tdep.c (i386_floatformat_for_type): Use
7377 floatformats_ia64_quad for the 16-byte floating point component
7378 within a fortran 32-byte complex number.
7379
7380 2019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
7381
7382 * dwarf2read.c (struct cu_partial_die_info): Add constructor,
7383 delete default constructor.
7384 (find_partial_die): Update to return const struct.
7385 (partial_die_parent_scope): Move variable declaration into scope
7386 of its use and change its type to auto.
7387 (guess_partial_die_structure_name): Likewise.
7388 (partial_die_info::fixup): Likewise.
7389
7390 2019-05-17 Tom Tromey <tromey@adacore.com>
7391
7392 * source.c (find_and_open_source): Remove cast.
7393
7394 2019-05-17 Tom Tromey <tromey@adacore.com>
7395
7396 * annotate.c (annotate_source): Make "filename" const.
7397 * annotate.h (annotate_source): Use const.
7398
7399 2019-05-17 Alan Hayward <alan.hayward@arm.com>
7400
7401 * disasm.c (set_disassembler_options): Send errors to stderr.
7402
7403 2019-05-17 Alan Hayward <alan.hayward@arm.com>
7404
7405 * cli/cli-interp.c (struct saved_output_files): Add saved entry.
7406 (cli_interp_base::set_logging): Check debug_redirect.
7407 * cli/cli-interp.h (set_logging): Add debug_redirect parameter.
7408 * cli/cli-logging.c (debug_redirect): Add static variable.
7409 (pop_output_files): Add default param.
7410 (handle_redirections): Print debug setting.
7411 (show_logging_command): Likewise.
7412 (_initialize_cli_logging): Add debugredirect command.
7413 * interps.c (current_interp_set_logging): Add debug_redirect
7414 parameter.
7415 * interps.h (set_logging): Add debug_redirect parameter.
7416 (current_interp_set_logging): Likewise.
7417 * mi/mi-common.h: Likewise.
7418 * mi/mi-interp.c (mi_interp::set_logging): Likewise.
7419
7420 2019-05-17 Alan Hayward <alan.hayward@arm.com>
7421 Tom Tromey <tromey@adacore.com>
7422
7423 * cli/cli-interp.c (cli_interp_base::set_logging): Create tee_file
7424 directly.
7425 * cli/cli-interp.h (make_logging_output): Remove declaration.
7426 * cli/cli-logging.c (make_logging_output): Remove function.
7427 * mi/mi-interp.c (mi_interp::set_logging): Create tee_file
7428 directly.
7429 * ui-file.c (tee_file::tee_file): Remove bools.
7430 (tee_file::~tee_file): Remove deletes.
7431 * ui-file.h (tee_file): Remove bools.
7432
7433 2019-01-28 Jan Vrany <jan.vrany@fit.cvut.cz>
7434
7435 * mi/mi-cmds.h (mi_cmd_complete): New function.
7436 * mi/mi-main.c (mi_cmd_complete): Likewise.
7437 * mi/mi-cmds.c: Define new MI command -complete.
7438 * NEWS: Mention new -complete command.
7439
7440 2019-01-24 Jan Vrany <jan.vrany@fit.cvut.cz>
7441
7442 * completer.h (complete): New function.
7443 * completer.c (complete): Likewise.
7444 * cli/cli-cmds.c: (complete_command): Update to use new complete()
7445 function defined in completer.h.
7446
7447 2019-05-17 Jan Vrany <jan.vrany@fit.cvut.cz>
7448
7449 * MAINTAINERS (Write After Approval): Add myself.
7450
7451 2019-05-17 Tom de Vries <tdevries@suse.de>
7452
7453 PR gdb/24094
7454 * dwarf2read.c (struct cu_partial_die_info): New struct.
7455 (find_partial_die): Return cu_partial_die_info.
7456 (partial_die_parent_scope, guess_partial_die_structure_name)
7457 (partial_die_info::fixup): Handle new return type of find_partial_die.
7458
7459 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
7460
7461 PR breakpoints/24541
7462 * stap-probe.c (stap_parse_register_operand): Make "regname" an
7463 "std::string", simplifying the algorithm.
7464
7465 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
7466
7467 * stap-probe.c (handle_stap_probe): Fix complaint formatting.
7468 (stap_static_probe_ops::get_probes): Likewise.
7469
7470 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
7471
7472 * stap-probe.c (stap_parse_register_operand): Make "if (*p->arg ==
7473 '-')" and "else if".
7474 (stap_parse_single_operand): Join checks for
7475 "gdbarch_stap_parse_special_token_p" and
7476 "gdbarch_stap_parse_special_token" in the same "if" statement.
7477 Invert check when verifying for operation on register
7478 displacement.
7479
7480 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
7481
7482 * stap-probe.c (stap_get_opcode): Update comment.
7483 (stap_get_expected_argument_type): Likewise.
7484 (handle_stap_probe): Likewise.
7485
7486 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
7487
7488 * i386-tdep.c (i386_stap_parse_special_token_triplet): Change
7489 return type to 'bool'. Adjust comment. Use 'bool' when
7490 appropriate.
7491 (i386_stap_parse_special_token_three_arg_disp): Likewise.
7492 * stap-probe.c (stap_parse_argument_1): Likewise.
7493 (stap_is_operator): Likewise.
7494 (stap_is_generic_prefix): Likewise.
7495 (stap_is_register_prefix): Likewise.
7496 (stap_is_register_indirection_prefix): Likewise.
7497 (stap_is_integer_prefix): Likewise.
7498 (stap_generic_check_suffix): Likewise.
7499 (stap_check_integer_suffix): Likewise.
7500 (stap_check_register_suffix): Likewise.
7501 (stap_check_register_indirection_suffix): Likewise.
7502 (stap_parse_register_operand): Likewise.
7503 (stap_parse_single_operand): Likewise.
7504 (stap_parse_argument_1): Likewise.
7505 (stap_probe::get_argument_count): Likewise.
7506 (stap_is_operator): Likewise.
7507
7508 2019-05-16 Tom Tromey <tromey@adacore.com>
7509
7510 * darwin-nat.c (thread_info_from_private_thread_info): Add struct
7511 keyword to foreach.
7512
7513 2019-05-15 Simon Marchi <simon.marchi@efficios.com>
7514
7515 * linux-thread-db.c (try_thread_db_load_1): Change return type
7516 to bool.
7517 (try_thread_db_load): Likewise.
7518 (try_thread_db_load_from_pdir_1): Likewise.
7519 (try_thread_db_load_from_pdir): Likewise.
7520 (try_thread_db_load_from_sdir): Likewise.
7521 (try_thread_db_load_from_dir): Likewise.
7522 (thread_db_load_search): Likewise.
7523 (has_libpthread): Likewise.
7524 (thread_db_load): Likewise.
7525
7526 2019-05-15 Sergio Durigan Junior <sergiodj@redhat.com>
7527
7528 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
7529 * dwarf2read.c (parse_macro_definition): Check whether 'body' is
7530 NULL, and complain/return if that's the case.
7531
7532 2019-05-15 John Darrington <john@darrington.wattle.id.au>
7533
7534 * s12z-tdep.c (push_pull_get_stack_adjustment): New function.
7535 (advance, posn, abstract_read_memory): New functions.
7536 [struct mem_read_abstraction]: New struct.
7537 (s12z_frame_cache): Use opcodes API to interpret stack frame code.
7538
7539 2019-05-14 Tom Tromey <tromey@adacore.com>
7540
7541 * ada-lang.c (coerce_unspec_val_to_type): Only set address when
7542 value is not lval_memory.
7543
7544 2019-05-14 Tom Tromey <tromey@adacore.com>
7545
7546 * solib.c (info_sharedlibrary_command): Style the file name.
7547
7548 2019-05-14 Alan Hayward <alan.hayward@arm.com>
7549
7550 * aarch64-tdep.c (aarch64_vnh_type): Add half view.
7551 (aarch64_vnv_type): Likewise.
7552 * target-descriptions.c (make_gdb_type): Add TDESC_TYPE_IEEE_HALF.
7553 * common/tdesc.c: Likewise.
7554 * common/tdesc.h (enum tdesc_type_kind): Likewise.
7555 * features/aarch64-fpu.c (create_feature_aarch64_fpu): Regenerate.
7556 * features/aarch64-fpu.xml: Add ieee half view.
7557 * features/aarch64-sve.c (create_feature_aarch64_fpu): Likewise.
7558 * gdbtypes.c (gdbtypes_post_init): Add builtin_half
7559 * gdbtypes.h (struct builtin_type): Likewise.
7560 (struct objfile_type): Likewise.
7561
7562 2019-05-12 Paul Naert <paul.naert@polymtl.ca>
7563
7564 * language.c (language_sniff_from_mangled_name): Fix "langauge"
7565 typo.
7566 * location.h (string_to_event_location): Likewise.
7567
7568 2019-05-11 Joel Brobecker <brobecker@adacore.com>
7569
7570 GDB 8.3 released.
7571
7572 2019-05-10 Simon Marchi <simon.marchi@efficios.com>
7573
7574 * breakpoint.h (fix_multi_location_breakpoint_output_globally):
7575 New variable declaration.
7576 * breakpoint.c (fix_multi_location_breakpoint_output_globally):
7577 New variable.
7578 (print_one_breakpoint): Use ui_out::test_flags and new global
7579 variable to compute use_fixed_output.
7580 * mi/mi-main.h (mi_multi_location_breakpoint_output_fixed):
7581 Remove.
7582 * mi/mi-main.c (fix_multi_location_breakpoint_output): Remove.
7583 (mi_multi_location_breakpoint_output_fixed): Remove.
7584 (mi_cmd_fix_multi_location_breakpoint_output): Adjust to set the
7585 new variable.
7586 * mi/mi-out.c (mi_ui_out::mi_ui_out): Set
7587 fix_multi_location_breakpoint_output flag if version >= 3.
7588 * ui-out.h (enum ui_out_flag)
7589 <fix_multi_location_breakpoint_output>: New enumerator.
7590
7591 2019-05-10 Simon Marchi <simon.marchi@efficios.com>
7592
7593 * contrib/cc-with-tweaks.sh: Validate dwz's work.
7594
7595 2019-05-10 Tom Tromey <tromey@adacore.com>
7596
7597 * ada-lang.c (catch_ada_completer): New function.
7598 (_initialize_ada_language): Use it.
7599
7600 2019-05-10 Tom Tromey <tromey@adacore.com>
7601
7602 * thread.c (print_thread_info): Make "requested_threads" const.
7603 * gdbthread.h (print_thread_info): Make "requested_threads"
7604 const.
7605 * ada-tasks.c (print_ada_task_info): Make "taskno_str" const.
7606 * ada-lang.h (print_ada_task_info): Make "taskno_str" const.
7607
7608 2019-05-08 Tom Tromey <tom@tromey.com>
7609
7610 * gdbtypes.c (objfile_type_data): Change type.
7611 (objfile_type, _initialize_gdbtypes): Update.
7612
7613 2019-05-08 Tom Tromey <tom@tromey.com>
7614
7615 * dwarf2-frame.c (dwarf2_frame_objfile_data): Change type.
7616 (dwarf2_frame_find_fde, dwarf2_build_frame_info)
7617 (_initialize_dwarf2_frame): Update.
7618
7619 2019-05-08 Tom Tromey <tom@tromey.com>
7620
7621 * objc-lang.c (objc_objfile_data): Change type.
7622 (find_methods): Update.
7623 (_initialize_objc_lang): Remove.
7624
7625 2019-05-08 Tom Tromey <tom@tromey.com>
7626
7627 * stabsread.c (rs6000_builtin_type_data): Change type.
7628 (rs6000_builtin_type, _initialize_stabsread): Update.
7629
7630 2019-05-08 Tom Tromey <tom@tromey.com>
7631
7632 * mips-tdep.c (mips_pdr_data): Remove.
7633 (_initialize_mips_tdep): Update.
7634
7635 2019-05-08 Tom Tromey <tom@tromey.com>
7636
7637 * hppa-tdep.c (hppa_objfile_priv_data): Change type.
7638 (hppa_init_objfile_priv_data, read_unwind_info)
7639 (find_unwind_entry, _initialize_hppa_tdep): Update.
7640
7641 2019-05-08 Tom Tromey <tom@tromey.com>
7642
7643 * elfread.c (elf_objfile_gnu_ifunc_cache_data): Change type.
7644 (elf_gnu_ifunc_record_cache): Update. Don't allocate hash table
7645 on obstack.
7646 (elf_gnu_ifunc_resolve_by_cache, _initialize_elfread): Update.
7647
7648 2019-05-08 Tom Tromey <tom@tromey.com>
7649
7650 * mdebugread.c (basic_type_data): Change type.
7651 (basic_type, _initialize_mdebugread): Update.
7652
7653 2019-05-08 Tom Tromey <tom@tromey.com>
7654
7655 * common/gdb_unique_ptr.h (struct noop_deleter): New.
7656
7657 2019-05-08 Tom Tromey <tom@tromey.com>
7658
7659 * nto-tdep.c (nto_inferior_data_reg): Change type.
7660 (nto_inferior_data): Update.
7661 (nto_inferior_data_cleanup, nto_new_inferior_data)
7662 (_initialize_nto_tdep): Remove.
7663 * nto-tdep.h (struct nto_inferior_data): Add initializers.
7664
7665 2019-05-08 Tom Tromey <tom@tromey.com>
7666
7667 * ada-lang.c (struct ada_inferior_data): Add initializers.
7668 (ada_inferior_data): Change type.
7669 (ada_inferior_data_cleanup): Remove.
7670 (get_ada_inferior_data, ada_inferior_exit)
7671 (struct ada_pspace_data): Add initializers, destructor.
7672 (ada_pspace_data_handle): Change type.
7673 (get_ada_pspace_data): Update.
7674 (ada_pspace_data_cleanup): Remove.
7675
7676 2019-05-08 Tom Tromey <tom@tromey.com>
7677
7678 * coffread.c (struct coff_symfile_info): Add initializers.
7679 (coff_objfile_data_key): Move lower. Change type.
7680 (coff_symfile_init, coff_symfile_read, _initialize_coffread):
7681 Update.
7682 (coff_free_info): Remove.
7683
7684 2019-05-08 Tom Tromey <tom@tromey.com>
7685
7686 * fbsd-tdep.c (struct fbsd_pspace_data): Add initializers.
7687 (fbsd_pspace_data_handle): Move lower. Change type.
7688 (get_fbsd_pspace_data): Update.
7689 (fbsd_pspace_data_cleanup): Remove.
7690 (_initialize_fbsd_tdep): Update.
7691
7692 2019-05-08 Tom Tromey <tom@tromey.com>
7693
7694 * ada-tasks.c (ada_tasks_pspace_data_handle): Change type.
7695 (get_ada_tasks_pspace_data): Update.
7696 (ada_tasks_pspace_data_cleanup): Remove.
7697 (_initialize_tasks): Update.
7698 (ada_tasks_inferior_data_handle): Change type.
7699 (get_ada_tasks_inferior_data): Update.
7700 (ada_tasks_inferior_data_cleanup): Remove.
7701 (struct ada_tasks_pspace_data): Add initializers.
7702
7703 2019-05-08 Tom Tromey <tom@tromey.com>
7704
7705 * symfile.h (struct sym_probe_fns) <sym_get_probes>: Change type.
7706 * symfile-debug.c (debug_sym_get_probes): Change type.
7707 * stap-probe.c (handle_stap_probe):
7708 (stap_static_probe_ops::get_probes): Change type.
7709 * probe.h (class static_probe_ops) <get_probes>: Change type.
7710 * probe.c (class any_static_probe_ops) <get_probes>: Change type.
7711 (parse_probes_in_pspace): Update.
7712 (find_probes_in_objfile, find_probe_by_pc, collect_probes):
7713 Update.
7714 (any_static_probe_ops::get_probes): Change type.
7715 * elfread.c (elfread_data): New typedef.
7716 (probe_key): Change type.
7717 (elf_get_probes): Likewise. Update.
7718 (probe_key_free): Remove.
7719 (_initialize_elfread): Update.
7720 * dtrace-probe.c (class dtrace_static_probe_ops) <get_probes>:
7721 Change type.
7722 (dtrace_process_dof_probe, dtrace_process_dof)
7723 (dtrace_static_probe_ops::get_probe): Change type.
7724
7725 2019-05-08 Tom Tromey <tom@tromey.com>
7726
7727 * xcoffread.c (struct xcoff_symfile_info): Rename from
7728 coff_symfile_info. Add initializers.
7729 (xcoff_objfile_data_key): Move lower. Change type.
7730 (XCOFF_DATA): Rewrite.
7731 (xcoff_free_info): Remove.
7732 (xcoff_symfile_init, _initialize_xcoffread, read_xcoff_symtab)
7733 (read_symbol, read_symbol_lineno, find_linenos, init_stringtab)
7734 (xcoff_initial_scan): Update.
7735
7736 2019-05-08 Tom Tromey <tom@tromey.com>
7737
7738 * solib-svr4.c (struct svr4_info): Add initializers and
7739 destructor.
7740 <probes_table>: Now an htab_up.
7741 (solib_svr4_pspace_data): Change type.
7742 (free_probes_table): Simplify.
7743 (~svr4_info): Rename from svr4_pspace_data_cleanup.
7744 (get_svr4_info, probes_table_htab_remove_objfile_probes)
7745 (probes_table_remove_objfile_probes, register_solib_event_probe)
7746 (solib_event_probe_at, svr4_update_solib_event_breakpoint)
7747 (_initialize_svr4_solib): Update.
7748
7749 2019-05-08 Tom Tromey <tom@tromey.com>
7750
7751 * remote.c (remote_pspace_data): Change type.
7752 (remote_pspace_data_cleanup): Remove.
7753 (get_remote_exec_file, set_pspace_remote_exec_file)
7754 (_initialize_remote): Update.
7755
7756 2019-05-08 Tom Tromey <tom@tromey.com>
7757
7758 * breakpoint.c (breakpoint_objfile_key): Change type.
7759 (get_breakpoint_objfile_data): Update.
7760 (free_breakpoint_objfile_data): Remove.
7761 (_initialize_breakpoint): Update.
7762
7763 2019-05-08 Tom Tromey <tom@tromey.com>
7764
7765 * linux-tdep.c (struct linux_info): Add initializers.
7766 (linux_inferior_data): Move. Change type.
7767 (invalidate_linux_cache_inf): Update.
7768 (linux_inferior_data_cleanup): Remove.
7769 (get_linux_inferior_data, _initialize_linux_tdep): Update.
7770
7771 2019-05-08 Tom Tromey <tom@tromey.com>
7772
7773 * auxv.c (auxv_inferior_data): Move. Change type.
7774 (auxv_inferior_data_cleanup): Remove.
7775 (invalidate_auxv_cache_inf): Rewrite.
7776 (get_auxv_inferior_data, _initialize_auxv): Update.
7777
7778 2019-05-08 Tom Tromey <tom@tromey.com>
7779
7780 * symfile-debug.c (struct debug_sym_fns_data): Add initializers.
7781 (symfile_debug_objfile_data_key): Change type.
7782 (symfile_debug_installed, debug_qf_has_symbols)
7783 (debug_qf_find_last_source_symtab)
7784 (debug_qf_forget_cached_source_info)
7785 (debug_qf_map_symtabs_matching_filename, debug_qf_lookup_symbol)
7786 (debug_qf_print_stats, debug_qf_dump)
7787 (debug_qf_expand_symtabs_for_function)
7788 (debug_qf_expand_all_symtabs)
7789 (debug_qf_expand_symtabs_with_fullname)
7790 (debug_qf_map_matching_symbols)
7791 (debug_qf_expand_symtabs_matching)
7792 (debug_qf_find_pc_sect_compunit_symtab)
7793 (debug_qf_map_symbol_filenames)
7794 (debug_qf_find_compunit_symtab_by_address, debug_sym_get_probes)
7795 (debug_sym_new_init, debug_sym_init, debug_sym_read)
7796 (debug_sym_read_psymbols, debug_sym_finish, debug_sym_offsets)
7797 (debug_sym_read_linetable, debug_sym_relocate): Update.
7798 (symfile_debug_free_objfile): Remove.
7799 (install_symfile_debug_logging, _initialize_symfile_debug):
7800 Update.
7801
7802 2019-05-08 Tom Tromey <tom@tromey.com>
7803
7804 * dwarf2read.h (struct dwarf2_per_objfile): Don't inherit from
7805 allocate_on_obstack.
7806 * dwarf2read.c (dwarf2_objfile_data_key): Change type.
7807 (get_dwarf2_per_objfile): Update.
7808 (set_dwarf2_per_objfile): Remove.
7809 (dwarf2_has_info, dwarf2_get_section_info): Update.
7810 (dwarf2_free_objfile): Remove.
7811 (_initialize_dwarf2_read): Update.
7812
7813 2019-05-08 Tom Tromey <tom@tromey.com>
7814
7815 * auto-load.c (struct auto_load_pspace_info): Add destructor and
7816 initializers.
7817 <unsupported_script_warning_printed,
7818 script_not_found_warning_printed>: Now bool.
7819 (auto_load_pspace_data): Change type.
7820 (~auto_load_pspace_info): Rename from
7821 auto_load_pspace_data_cleanup.
7822 (get_auto_load_pspace_data, init_loaded_scripts_info)
7823 (clear_section_scripts, maybe_print_unsupported_script_warning)
7824 (maybe_print_script_not_found_warning, _initialize_auto_load):
7825 Update.
7826
7827 2019-05-08 Tom Tromey <tom@tromey.com>
7828
7829 * objfiles.c (objfile_pspace_info): Add destructor and
7830 initializers.
7831 (objfiles_pspace_data): Change type.
7832 (~objfile_pspace_info): Rename from objfiles_pspace_data_cleanup.
7833 (get_objfile_pspace_data): Update.
7834 (objfiles_bfd_data): Change type.
7835 (get_objfile_bfd_data): Update.
7836 (objfile_bfd_data_free, _initialize_objfiles): Remove.
7837
7838 2019-05-08 Tom Tromey <tom@tromey.com>
7839
7840 * break-catch-syscall.c (catch_syscall_inferior_data): Move.
7841 Change type.
7842 (get_catch_syscall_inferior_data): Update.
7843 (catch_syscall_inferior_data_cleanup): Remove.
7844 (_initialize_break_catch_syscall): Update.
7845
7846 2019-05-08 Tom Tromey <tom@tromey.com>
7847
7848 * inflow.c (struct terminal_info): Add destructor and
7849 initializers.
7850 (inflow_inferior_data): Change type.
7851 (~terminal_info): Rename from inflow_inferior_data_cleanup.
7852 (get_inflow_inferior_data, inflow_inferior_exit)
7853 (swap_terminal_info, _initialize_inflow): Update.
7854
7855 2019-05-08 Tom Tromey <tom@tromey.com>
7856
7857 * target-dcache.c (target_dcache_cleanup): Remove.
7858 (target_dcache_aspace_key): Change type.
7859 (target_dcache_init_p, target_dcache_invalidate)
7860 (target_dcache_get, target_dcache_get_or_init)
7861 (_initialize_target_dcache): Update.
7862 * dcache.h (struct dcache_deleter): New.
7863
7864 2019-05-08 Tom Tromey <tom@tromey.com>
7865
7866 * symtab.c (struct symbol_cache): Add destructor and
7867 initializers.
7868 (symbol_cache_key): Move. Change type.
7869 (make_symbol_cache, free_symbol_cache): Remove.
7870 (get_symbol_cache): Update.
7871 (symbol_cache_cleanup): Remove.
7872 (ALL_PSPACES, symbol_cache_flush)
7873 (maintenance_print_symbol_cache)
7874 (maintenance_print_symbol_cache_statistics, _initialize_symtab):
7875 Update.
7876
7877 2019-05-08 Tom Tromey <tom@tromey.com>
7878
7879 * symtab.c (struct main_info): Add destructor and initializers.
7880 (main_progspace_key): Move. Change type.
7881 (get_main_info): Update.
7882 (main_info_cleanup): Remove.
7883 (_initialize_symtab): Update.
7884
7885 2019-05-08 Tom Tromey <tom@tromey.com>
7886
7887 * registry.h (DECLARE_REGISTRY): Define the _key class.
7888
7889 2019-05-08 Andrew Burgess <andrew.burgess@embecosm.com>
7890
7891 * NEWS: Merge two 'New commands' sections.
7892
7893 2019-05-08 Joel Brobecker <brobecker@adacore.com>
7894
7895 * ada-valprint.c (ada_val_print_gnat_array): Remove language
7896 parameter and use Ada language definition instead.
7897 (ada_val_print_ptr): Remove unused language parameter.
7898 (ada_val_print_num): Remove language parameter and use Ada language
7899 definition instead.
7900 (ada_val_print_enum, ada_val_print_flt): Remove unused language
7901 parameter.
7902 (ada_val_print_struct_union, ada_val_print_ref): Remove language
7903 parameter and use Ada language definition instead.
7904 (ada_val_print_1): Update all ada_val_print_xxx calls.
7905 Remove language parameter.
7906 (ada_val_print): Update ada_val_print_1 call.
7907
7908 2019-05-08 Tom Tromey <tromey@adacore.com>
7909
7910 * remote.c (remote_hw_watchpoint_limit)
7911 (remote_hw_watchpoint_length_limit, remote_hw_breakpoint_limit):
7912 Now static.
7913
7914 2019-05-08 Tom Tromey <tromey@adacore.com>
7915
7916 * maint.c (_initialize_maint_cmds): Move initialization code to
7917 remote.c.
7918 (watchdog, show_watchdog): Move to remote.c.
7919 * remote.c (watchdog, show_watchdog): Move from maint.c. Make
7920 "watchdog" static.
7921 (_initialize_remote): Move initialization code from maint.c.
7922 * defs.h (watchdog): Don't declare.
7923
7924 2019-05-08 Tom Tromey <tromey@adacore.com>
7925
7926 * tui/tui-interp.c: Include main.h.
7927 * interps.c: Include main.h.
7928 * main.h (interpreter_p): Declare.
7929 * defs.h (interpreter_p): Don't declare.
7930
7931 2019-05-08 Tom Tromey <tromey@adacore.com>
7932
7933 * dwarf2loc.c: Include dwarf2read.h.
7934 * defs.h (read_unsigned_leb128): Don't declare.
7935 * dwarf2read.h (read_unsigned_leb128): Declare.
7936
7937 2019-05-08 Tom Tromey <tromey@adacore.com>
7938
7939 * utils.c (fputs_maybe_filtered): Call can_emit_style_escape as a
7940 method.
7941
7942 2019-05-08 Tom Tromey <tromey@adacore.com>
7943
7944 * utils.c (fputs_maybe_filtered): Reset style after paging, even
7945 when no wrap column is set.
7946
7947 2019-05-08 Tom Tromey <tromey@adacore.com>
7948
7949 * c-lang.c (c_get_string): Handle non-C-style arrays.
7950
7951 2019-05-08 Tom Tromey <tromey@adacore.com>
7952
7953 * typeprint.c (print_offset_data::update): Print the bit offset,
7954 not the number of bits remaining.
7955
7956 2019-05-08 Tom Tromey <tromey@adacore.com>
7957
7958 * typeprint.c (print_offset_data::maybe_print_hole): Add extra
7959 padding at end of comment.
7960
7961 2019-05-08 Tom Tromey <tromey@adacore.com>
7962
7963 * dwarf2loc.c (dwarf2_evaluate_property) <PROP_ADDR_OFFSET>:
7964 Compare main types.
7965
7966 2019-05-06 Tom Tromey <tom@tromey.com>
7967
7968 * common/scoped_mmap.c: Include common-defs.h.
7969 * common/scoped_mmap.h: Don't include config.h.
7970
7971 2019-05-04 Tom Tromey <tom@tromey.com>
7972
7973 * aarch64-tdep.c (stack_item_t): Remove typedef and DEF_VEC.
7974 (struct aarch64_call_info): Add initializers.
7975 <si>: Now a std::vector.
7976 (pass_on_stack, aarch64_push_dummy_call): Update.
7977
7978 2019-05-04 Simon Marchi <simon.marchi@efficios.com>
7979 Tom Tromey <tom@tromey.com>
7980
7981 * ppc-linux-nat.c (thread_points_p): Remove typedef and DEF_VEC.
7982 (ppc_threads): Now a std::vector. Now static.
7983 (hwdebug_find_thread_points_by_tid)
7984 (ppc_linux_nat_target::low_new_thread, ppc_linux_thread_exit):
7985 Update.
7986
7987 2019-05-04 Tom Tromey <tom@tromey.com>
7988
7989 * arc-tdep.c (arc_tdesc_init): Return bool.
7990
7991 2019-05-04 Tom Tromey <tom@tromey.com>
7992
7993 * arm-linux-nat.c (arm_linux_nat_target::can_use_hw_breakpoint):
7994 Use gdb_assert_not_reached.
7995
7996 2019-05-04 Tom Tromey <tom@tromey.com>
7997
7998 * compile/compile-cplus-types.c (compile_cplus_convert_enum): Use
7999 "false".
8000
8001 2019-05-04 Tom Tromey <tom@tromey.com>
8002
8003 * arc-tdep.c (arc_tdesc_init): Use bool.
8004
8005 2019-05-04 Tom Tromey <tom@tromey.com>
8006
8007 * stack.c (select_frame_for_mi): Use "false", not "FALSE".
8008
8009 2019-05-04 Tom Tromey <tom@tromey.com>
8010
8011 * cli/cli-cmds.c (valid_command_p): Return bool.
8012
8013 2019-05-04 Tom Tromey <tom@tromey.com>
8014
8015 * cli/cli-decode.c (valid_user_defined_cmd_name_p): Return bool.
8016 * command.h (valid_user_defined_cmd_name_p): Channge return type.
8017
8018 2019-05-04 Raul Tambre <raul@tambre.ee>
8019
8020 * python/lib/gdb/prompt.py (_ExtendedPrompt)
8021 <before_prompt_hook, get_show_string>: Fix incorrect use of 'is'
8022 operator for comparison.
8023
8024 2019-05-04 Tom Tromey <tom@tromey.com>
8025
8026 * psymtab.c (psymbol_name_matches, match_partial_symbol)
8027 (lookup_partial_symbol, print_partial_symbols)
8028 (recursively_search_psymtabs, sort_pst_symbols, psymbol_hash)
8029 (psymbol_compare): Update.
8030 (add_psymbol_to_bcache): Clear the entire psymbol.
8031 (maintenance_check_psymtabs): Update.
8032 * psympriv.h (struct partial_symbol): Don't derive from
8033 general_symbol_info.
8034 <obj_section, unrelocated_address, address,
8035 set_unrelocated_address>: Update.
8036 <ginfo>: New member.
8037 * dwarf-index-write.c (write_psymbols, debug_names::insert)
8038 (debug_names::write_psymbols): Update.
8039
8040 2019-05-04 Tom de Vries <tdevries@suse.de>
8041
8042 * contrib/cc-with-tweaks.sh: Support -n arg.
8043
8044 2019-05-04 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8045
8046 * corelow.c (core_target::detach): Ensure frame cache and
8047 register caches are cleared.
8048 inferior.c (exit_inferior_1): Likewise.
8049
8050 2019-05-03 Sandra Loosemore <sandra@codesourcery.com>
8051 Tom Tromey <tom@tromey.com>
8052
8053 * dictionary.c (collate_pending_symbols_by_language): Remove
8054 "struct" from foreach.
8055 * symtab.c (lookup_global_symbol_from_objfile)
8056 (lookup_symbol_in_objfile_from_linkage_name): Remove "struct" from
8057 foreach.
8058 * ser-tcp.c (net_open): Remove "struct" from foreach.
8059 * objfiles.c (objfile_relocate, objfile_rebase)
8060 (objfile_has_symbols): Remove "struct" from foreach.
8061 * minsyms.c (lookup_minimal_symbol_by_pc_section): Remove "struct"
8062 from foreach.
8063 * dwarf2read.c (handle_struct_member_die): Remove "struct" from
8064 foreach.
8065 * darwin-nat.c (thread_info_from_private_thread_info): Remove
8066 "struct" from foreach.
8067 * ada-lang.c (create_excep_cond_exprs)
8068 (ada_exception_catchpoint_cond_string): Remove "struct" from
8069 foreach.
8070
8071 2019-05-03 Tom Tromey <tromey@adacore.com>
8072
8073 * ada-exp.y (convert_char_literal): Check suffix of each
8074 enumerator.
8075
8076 2019-05-03 Dilyan Palauzov <dilyan.palauzov@aegee.org>
8077
8078 PR ada/21406:
8079 * ada-exp.y (yywrap): Don't define.
8080 * ada-lex.l (%option): Add noyywrap
8081 (yywrap): Remove.
8082
8083 2019-05-03 Eli Zaretskii <eliz@gnu.org>
8084
8085 * common/common-defs.h [__MINGW32__ || __CYGWIN__]: Define
8086 _WIN32_WINNT to the XP level, unless already defined to a higher
8087 level.
8088
8089 * unittests/parse-connection-spec-selftests.c:
8090 * ser-tcp.c:
8091 * common/netstuff.c [USE_WIN32API]: Remove the _WIN32_WINNT
8092 override.
8093
8094 * symfile.c (find_separate_debug_file): Remove colon from the
8095 drive spec of DOS/Windows file names of the target, so that the
8096 file name produced from DEBUGDIR and the target's directory will
8097 be valid on DOS/Windows systems.
8098
8099 2019-05-02 Andrew Burgess <andrew.burgess@embecosm.com>
8100
8101 * rust-lang.c (val_print_struct): Handle printing structures
8102 containing strings.
8103
8104 2019-05-02 Tom Tromey <tromey@adacore.com>
8105
8106 * valarith.c (_initialize_valarith): Remove.
8107
8108 2019-05-01 Tom Tromey <tromey@adacore.com>
8109
8110 * ada-lang.c (ada_value_primitive_field): Treat more fields as
8111 bitfields.
8112
8113 2019-05-01 Tom Tromey <tromey@adacore.com>
8114
8115 * ada-lang.c (ada_value_assign): Correctly compute starting offset
8116 for big-endian copies.
8117
8118 2019-04-30 Ali Tamur <tamur@google.com>
8119 * gdb/dwarf2read.c (read_3_bytes): New declaration.
8120 (read_attribute_value): Added DW_FORM_strx1-4 cases.
8121 (read_3_bytes): New function.
8122
8123 2019-04-30 Joel Brobecker <brobecker@adacore.com>
8124
8125 * windows-nat.c (main_thread_id): Delete.
8126 (handle_output_debug_string): Replace main_thread_id by
8127 current_event.dwThreadId.
8128 (fake_create_process): Likewise.
8129 (get_windows_debug_event) <CREATE_PROCESS_DEBUG_EVENT>:
8130 Do not set main_thread_id.
8131 <LOAD_DLL_DEBUG_EVENT>: Replace main_thread_id by
8132 current_event.dwThreadId.
8133 <UNLOAD_DLL_DEBUG_EVENT>: Likewise.
8134
8135 2019-04-30 Joel Brobecker <brobecker@adacore.com>
8136
8137 * windows-nat.c (get_windows_debug_event) <EXIT_PROCESS_DEBUG_EVENT>:
8138 Use current_event.dwThreadId instead of main_thread_id.
8139
8140 2019-04-30 Tom Tromey <tromey@adacore.com>
8141
8142 * ada-lang.c (ada_lookup_simple_minsyms): New function.
8143 (create_excep_cond_exprs): Iterate over program spaces.
8144 (ada_exception_catchpoint_cond_string): Examine all minimal
8145 symbols for exception types.
8146
8147 2019-04-30 Tom Tromey <tromey@adacore.com>
8148
8149 PR c++/24470:
8150 * dwarf2read.c (process_structure_scope): Handle case where type
8151 has template parameters but no symbol was created.
8152
8153 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8154 Chris January <chris.january@arm.com>
8155
8156 * f-typeprint.c (f_type_print_base): Print 'allocatable' type
8157 qualifier.
8158 * gdbtypes.h (TYPE_IS_ALLOCATABLE): Define.
8159
8160 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8161
8162 * f-typeprint.c (f_print_type): Update rules for printing
8163 whitespace.
8164 (f_type_print_varspec_suffix): Likewise.
8165
8166 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8167 Chris January <chris.january@arm.com>
8168
8169 * f-typeprint.c (f_type_print_varspec_suffix): Handle printing
8170 function arguments.
8171
8172 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8173
8174 * f-lang.c (build_fortran_types): Change name of void type to
8175 lower case.
8176 * f-typeprint.c (f_type_print_base): Print the name of the void
8177 type, rather than a fixed string.
8178 * f-valprint.c (f_decorations): Use lower case void string.
8179
8180 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8181 Chris January <chris.january@arm.com>
8182
8183 * dwarf2read.c (dwarf2_init_complex_target_type): Use different
8184 types for Fortran.
8185
8186 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8187 Chris January <chris.january@arm.com>
8188 David Lecomber <david.lecomber@arm.com>
8189
8190 * f-exp.y (BINOP_INTRINSIC): New token.
8191 (exp): New parser rule handling BINOP_INTRINSIC.
8192 (f77_keywords): Add new builtin procedures.
8193 * f-lang.c (evaluate_subexp_f): Handle BINOP_MOD, UNOP_FORTRAN_CEILING,
8194 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8195 (operator_length_f): Handle UNOP_FORTRAN_CEILING,
8196 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8197 (print_unop_subexp_f): New function.
8198 (print_binop_subexp_f): New function.
8199 (print_subexp_f): Handle UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
8200 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8201 (dump_subexp_body_f): Likewise.
8202 (operator_check_f): Likewise.
8203 * fortran-operator.def: Add UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
8204 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX
8205
8206 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8207
8208 * gdb/expprint.c (dump_subexp_body_standard): Remove use of
8209 UNOP_KIND.
8210 * gdb/expression.h (exp_opcode): Include 'fortran-operator.def'.
8211 * gdb/f-exp.y (exp): Rename UNOP_KIND to UNOP_FORTRAN_KIND.
8212 * gdb/f-lang.c (evaluate_subexp_f): Likewise.
8213 (operator_length_f): New fuction.
8214 (print_subexp_f): New function.
8215 (op_name_f): New function.
8216 (dump_subexp_body_f): New function.
8217 (operator_check_f): New function.
8218 (exp_descriptor_f): Replace standard expression handling functions
8219 with new functions.
8220 * gdb/fortran-operator.def: New file.
8221 * gdb/parse.c (operator_length_standard): Remove use of UNOP_KIND.
8222 * gdb/std-operator.def: Remove UNOP_KIND.
8223
8224 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8225
8226 * std-operator.def: Remove unbalanced, stray double quote
8227 character.
8228
8229 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8230 Chris January <chris.january@arm.com>
8231 Daniel Everett <daniel.everett@arm.com>
8232 Nick Forrington <nick.forrington@arm.com>
8233 Richard Bunt <richard.bunt@arm.com>
8234
8235 * cp-valprint.c (cp_print_value_fields): Allow an additional level
8236 of depth when printing anonymous structs or unions.
8237 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
8238 Don't print either the top-level value, or the children if the
8239 max-depth is exceeded.
8240 (ppscm_print_children): When printing the key of a map, allow one
8241 extra level of depth.
8242 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Don't
8243 print either the top-level value, or the children if the max-depth
8244 is exceeded.
8245 (print_children): When printing the key of a map, allow one extra
8246 level of depth.
8247 * python/py-value.c (valpy_format_string): Add max_depth keyword.
8248 * valprint.c: (PRINT_MAX_DEPTH_DEFAULT): Define.
8249 (user_print_options): Initialise max_depth field.
8250 (val_print_scalar_or_string_type_p): New function.
8251 (val_print): Check to see if the max depth has been reached.
8252 (val_print_check_max_depth): Define new function.
8253 (show_print_max_depth): New function.
8254 (_initialize_valprint): Add 'print max-depth' option.
8255 * valprint.h (struct value_print_options) <max_depth>: New field.
8256 (val_print_check_max_depth): Declare new function.
8257 * NEWS: Document new feature.
8258
8259 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8260
8261 * ada-lang.c (ada_language_defn): Initialise new field.
8262 * c-lang.c (c_is_string_type_p): New function.
8263 (c_language_defn): Initialise new field.
8264 (cplus_language_defn): Initialise new field.
8265 (asm_language_defn): Initialise new field.
8266 (minimal_language_defn): Initialise new field.
8267 * c-lang.h (c_is_string_type_p): Declare new function.
8268 * d-lang.c (d_language_defn): Initialise new field.
8269 * f-lang.c (f_is_string_type_p): New function.
8270 (f_language_defn): Initialise new field.
8271 * go-lang.c (go_is_string_type_p): New function.
8272 (go_language_defn): Initialise new field.
8273 * language.c (default_is_string_type_p): New function.
8274 (unknown_language_defn): Initialise new field.
8275 (auto_language_defn): Initialise new field.
8276 * language.h (struct language_defn) <la_is_string_type_p>: New
8277 member variable.
8278 (default_is_string_type_p): Declare new function.
8279 * m2-lang.c (m2_language_defn): Initialise new field.
8280 * objc-lang.c (objc_language_defn): Initialise new field.
8281 * opencl-lang.c (opencl_language_defn): Initialise new field.
8282 * p-lang.c (pascal_is_string_type_p): New function.
8283 (pascal_language_defn): Initialise new field.
8284 * rust-lang.c (rust_is_string_type_p): New function.
8285 (rust_language_defn): Initialise new field.
8286
8287 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8288
8289 * language.h (struct language_defn) <la_struct_too_deep_ellipsis>:
8290 New field.
8291 * ada-lang.c (ada_language_defn): Initialise new field.
8292 * c-lang.c (c_language_defn): Likewise.
8293 (cplus_language_defn): Likewise.
8294 (asm_language_defn): Likewise.
8295 (minimal_language_defn): Likewise.
8296 * d-lang.c (d_language_defn): Likewise.
8297 * f-lang.c (f_language_defn): Likewise.
8298 * go-lang.c (go_language_defn): Likewise.
8299 * language.c (unknown_language_defn): Likewise.
8300 (auto_language_defn): Likewise.
8301 * m2-lang.c (m2_language_defn): Likewise.
8302 * objc-lang.c (objc_language_defn): Likewise.
8303 * opencl-lang.c (opencl_language_defn): Likewise.
8304 * p-lang.c (pascal_language_defn): Likewise.
8305 * rust-lang.c (rust_language_defn): Likewise.
8306
8307 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8308
8309 * ada-lang.c (ada_is_character_type): Change return type to bool.
8310 (ada_is_string_type): Likewise.
8311 * ada-lang.h (ada_is_character_type): Update declaration
8312 (ada_is_string_type): Likewise.
8313
8314 2019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8315
8316 Support style in 'frame|thread apply'
8317
8318 * gdbcmd.h (execute_command_to_string): New term_out parameter.
8319 * record.c (record_start, record_stop): Update callers of
8320 execute_command_to_string with false.
8321 * guile/guile.c (gdbscm_execute_gdb_command): Likewise.
8322 * ui-file.h (class ui_file): New term_out and can_emit_style_escape
8323 methods.
8324 (class string_file): New constructor with term_out parameter.
8325 Override methods term_out and can_emit_style_escape. New member
8326 term_out.
8327 (class stdio_file): Override can_emit_style_escape.
8328 (class tee_file): Override term_out and can_emit_style_escape.
8329 * utils.h (can_emit_style_escape): Remove.
8330 * utils.c (can_emit_style_escape): Likewise.
8331 Update all callers of can_emit_style_escape (SOMESTREAM) to
8332 SOMESTREAM->can_emit_style_escape.
8333 * source-cache.c (source_cache::get_source_lines): Likewise.
8334 * stack.c (frame_apply_command_count): Call execute_command_to_string
8335 passing the term_out characteristic of the current gdb_stdout.
8336 * thread.c (thr_try_catch_cmd): Likewise.
8337 * top.c (execute_command_to_string): pass term_out parameter
8338 to construct the string_file for the command output.
8339 * ui-file.c (term_cli_styling): New function (most code moved
8340 from utils.c can_emit_style_escape).
8341 (string_file::string_file, string_file::can_emit_style_escape,
8342 stdio_file::can_emit_style_escape, tee_file::term_out,
8343 tee_file::can_emit_style_escape): New functions.
8344
8345 2019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8346
8347 * NEWS: Mention the new set|show may-call-functions.
8348 * infcall.c (may_call_functions_p): New variable.
8349 (show_may_call_functions_p): New function.
8350 (call_function_by_hand_dummy): Throws an error if not
8351 may-call-functions.
8352 (_initialize_infcall): Call add_setshow_boolean_cmd for
8353 may-call-functions.
8354
8355 2019-04-25 Keith Seitz <keiths@redhat.com>
8356
8357 PR c++/24367
8358 * cp-support.c (inspect_type): Don't attempt substitutions
8359 of symbol with the same name.
8360
8361 2019-04-25 Tom Tromey <tromey@adacore.com>
8362
8363 PR gdb/24475:
8364 * event-top.c (gdb_rl_callback_handler): Make "gdb_rl_expt"
8365 static.
8366
8367 2019-04-25 Tom Tromey <tromey@adacore.com>
8368
8369 * xml-support.c (struct gdb_xml_parser) <set_error>: Take an
8370 rvalue reference.
8371 (gdb_xml_start_element_wrapper, gdb_xml_end_element_wrapper)
8372 (gdb_xml_parser::parse): Use std::move.
8373 * python/python-internal.h (gdbpy_convert_exception): Take a const
8374 reference.
8375 * python/py-value.c (valpy_getitem, valpy_nonzero): Use
8376 std::move.
8377 * python/py-utils.c (gdbpy_convert_exception): Take a const
8378 reference.
8379 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
8380 Use std::move.
8381 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
8382 Use std::move.
8383 * mi/mi-main.c (mi_print_exception): Take a const reference.
8384 * main.c (handle_command_errors): Take a const reference.
8385 * linespec.c (parse_linespec): Use std::move.
8386 * infcall.c (run_inferior_call): Use std::move.
8387 (call_function_by_hand_dummy): Use std::move.
8388 * exec.c (try_open_exec_file): Use std::move.
8389 * exceptions.h (exception_print, exception_fprintf)
8390 (exception_print_same): Update.
8391 * exceptions.c (print_exception, exception_print)
8392 (exception_fprintf, exception_print_same): Change parameters to
8393 const reference.
8394 * event-top.c (gdb_rl_callback_read_char_wrapper): Update.
8395 * common/new-op.c: Use std::move.
8396 * common/common-exceptions.h (struct gdb_exception): Add move
8397 constructor.
8398 (struct gdb_exception_error, struct gdb_exception_quit, struct
8399 gdb_quit_bad_alloc): Change constructor to move constructor.
8400 (throw_exception): Change parameter to rvalue reference.
8401 * common/common-exceptions.c (throw_exception): Take rvalue
8402 reference.
8403 * cli/cli-interp.c (safe_execute_command): Use std::move.
8404 * breakpoint.c (insert_bp_location, location_to_sals): Use
8405 std::move.
8406
8407 2019-04-25 Tom Tromey <tromey@adacore.com>
8408
8409 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception)
8410 (gdbscm_throw_gdb_exception): Take a gdbscm_gdb_exception.
8411 * guile/scm-block.c, guile/scm-breakpoint.c, guile/scm-cmd.c,
8412 guile/scm-disasm.c, guile/scm-frame.c, guile/scm-lazy-string.c,
8413 guile/scm-math.c, guile/scm-param.c, guile/scm-ports.c,
8414 guile/scm-symbol.c, guile/scm-symtab.c, guile/scm-type.c,
8415 guile/scm-value.c: Use unpack.
8416 * guile/guile-internal.h (gdbscm_scm_from_gdb_exception): Take a
8417 gdbscm_gdb_exception.
8418 (gdbscm_throw_gdb_exception): Likewise.
8419 (struct gdbscm_gdb_exception): New.
8420 (unpack): New function.
8421 (gdbscm_wrap): Use unpack.
8422
8423 2019-04-25 Tom Tromey <tromey@adacore.com>
8424
8425 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
8426 (gdb_rl_callback_handler): Use std::move.
8427 * common/common-exceptions.h (struct gdb_exception): Add move
8428 assignment operator.
8429 (throw_exception_sjlj): Change "exception" to const reference.
8430 * common/common-exceptions.c (exceptions_state_mc_catch): Update.
8431 (throw_exception_sjlj): Change "exception" to const reference.
8432
8433 2019-04-25 Tom Tromey <tromey@adacore.com>
8434
8435 * xml-support.c (gdb_xml_parser::gdb_xml_parser): Update.
8436 * python/py-value.c (valpy_getitem, valpy_nonzero): Update.
8437 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
8438 Update.
8439 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
8440 Update.
8441 * mi/mi-interp.c (mi_interp::exec): Update.
8442 * linespec.c (parse_linespec): Update.
8443 * infcall.c (run_inferior_call): Update.
8444 * guile/scm-value.c (gdbscm_value_to_lazy_string): Update.
8445 * guile/scm-symbol.c (gdbscm_lookup_symbol)
8446 (gdbscm_lookup_global_symbol): Update.
8447 * guile/scm-param.c (gdbscm_parameter_value): Update.
8448 * guile/scm-frame.c (gdbscm_frame_read_register)
8449 (gdbscm_frame_read_var): Update.
8450 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
8451 * exec.c (try_open_exec_file): Update.
8452 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
8453 (gdb_rl_callback_handler): Update.
8454 * common/common-exceptions.h (exception_none): Don't declare.
8455 * common/common-exceptions.c (exception_none): Don't define.
8456 (struct catcher) <exception>: Update.
8457 * cli/cli-interp.c (safe_execute_command): Update.
8458 * breakpoint.c (insert_bp_location, location_to_sals): Update.
8459
8460 2019-04-25 Ali Tamur <tamur@google.com>
8461
8462 * dwarf2read.c (skip_one_die): Add DW_FORM_strx.
8463 (read_attribute_value): Likewise.
8464 (dwarf2_read_addr_index): Update comment.
8465 (read_str_index): Add DW_FORM_strx.
8466 (dwarf2_string_attr): Likewise.
8467 (dwarf2_const_value_attr): Likewise.
8468 (dump_die_shallow): Likewise.
8469 (dwarf2_fetch_constant_bytes): Likewise.
8470 (skip_form_bytes): Likewise.
8471 * testsuite/lib/dwarf.exp (_handle_DW_FORM): Add DW_FORM_strx.
8472
8473 2019-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
8474
8475 PR corefiles/11608
8476 PR corefiles/18187
8477 * linux-tdep.c (dump_mapping_p): Add new parameters ADDR and
8478 OFFSET. Verify if current mapping contains an ELF header.
8479 (linux_find_memory_regions_full): Adjust call to
8480 dump_mapping_p.
8481
8482 2019-04-25 Sandra Loosemore <sandra@codesourcery.com>
8483 Kang Li <kanglictf@gmail.com>
8484
8485 PR gdb/21600
8486
8487 * dwarf2-frame.c (read_initial_length): Be consistent about using
8488 unsigned representation of length.
8489 (decode_frame_entry_1): Likewise. Check for wraparound of
8490 end pointer as well as buffer overflow.
8491
8492 2019-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
8493
8494 * aarch64-tdep.c (aarch64_gdbarch_init): Use "pulongest" to print
8495 "vq".
8496
8497 2019-04-24 Tom Tromey <tromey@adacore.com>
8498
8499 * amd64-tdep.c (amd64_has_unaligned_fields): Ignore bitfields.
8500
8501 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8502
8503 * s12z-tdep.c (s12z_unwind_pc): Delete.
8504 (s12z_unwind_sp): Delete.
8505 (s12z_gdbarch_init): Don't register deleted functions with
8506 gdbarch.
8507
8508 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8509
8510 * rl78-tdep.c (rl78_unwind_sp): Delete.
8511 (rl78_gdbarch_init): Don't register deleted function with gdbarch.
8512
8513 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8514
8515 * xstormy16-tdep.c (xstormy16_unwind_sp): Delete.
8516 (xstormy16_unwind_pc): Delete.
8517 (xstormy16_dummy_id): Delete.
8518 (xstormy16_gdbarch_init): Don't register deleted functions with
8519 gdbarch.
8520
8521 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8522
8523 * vax-tdep.c (vax_unwind_pc): Delete.
8524 (vax_gdbarch_init): Don't register deleted function with gdbarch.
8525
8526 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8527
8528 * v850-tdep.c (v850_unwind_sp): Delete.
8529 (v850_unwind_pc): Delete.
8530 (v850_dummy_id): Delete.
8531 (v850_gdbarch_init): Don't register deleted functions with
8532 gdbarch.
8533
8534 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8535
8536 * tilegx-tdep.c (tilegx_unwind_sp): Delete.
8537 (tilegx_unwind_pc): Delete.
8538 (tilegx_unwind_dummy_id): Delete.
8539 (tilegx_gdbarch_init): Don't register deleted functions with
8540 gdbarch.
8541
8542 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8543
8544 * tic6x-tdep.c (tic6x_unwind_sp): Delete.
8545 (tic6x_dummy_id): Delete.
8546 (tic6x_gdbarch_init): Don't register deleted functions with
8547 gdbarch.
8548
8549 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8550
8551 * sparc-tdep.c (sparc_unwind_pc): Delete.
8552 (sparc32_gdbarch_init): Don't register deleted function with
8553 gdbarch.
8554
8555 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8556
8557 * sh-tdep.c (sh_unwind_sp): Delete.
8558 (sh_unwind_pc): Delete.
8559 (sh_dummy_id): Delete.
8560 (sh_gdbarch_init): Don't register deleted functions with
8561 gdbarch.
8562
8563 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8564
8565 * score-tdep.c (score_unwind_sp): Delete.
8566 (score_unwind_pc): Delete.
8567 (score_dummy_id): Delete.
8568 (score_gdbarch_init): Don't register deleted functions with
8569 gdbarch.
8570
8571 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8572
8573 * rx-tdep.c (rx_unwind_pc): Delete.
8574 (rx_unwind_sp): Delete.
8575 (rx_dummy_id): Delete.
8576 (rx_gdbarch_init): Don't register deleted functions with
8577 gdbarch. Update comment.
8578
8579 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8580
8581 * rs6000-tdep.c (rs6000_unwind_pc): Delete.
8582 (rs6000_dummy_id): Delete.
8583 (rs6000_gdbarch_init): Don't register deleted functions with
8584 gdbarch.
8585
8586 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8587
8588 * or1k-tdep.c (or1k_dummy_id): Delete.
8589 (or1k_gdbarch_init): Don't register deleted function with gdbarch.
8590
8591 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8592
8593 * nios2-tdep.c (nios2_dummy_id): Delete.
8594 (nios2_unwind_sp): Delete.
8595 (nios2_gdbarch_init): Don't register deleted functions with
8596 gdbarch.
8597
8598 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8599
8600 * nds32-tdep.c (nds32_dummy_id): Delete.
8601 (nds32_unwind_pc): Delete.
8602 (nds32_unwind_sp): Delete.
8603 (nds32_gdbarch_init): Don't register deleted functions with
8604 gdbarch.
8605
8606 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8607
8608 * msp430-tdep.c (msp430_unwind_pc): Delete.
8609 (msp430_unwind_sp): Delete.
8610 (msp430_dummy_id): Delete.
8611 (msp430_gdbarch_init): Don't register deleted functions with
8612 gdbarch.
8613
8614 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8615
8616 * moxie-tdep.c (moxie_unwind_sp): Delete.
8617 (moxie_unwind_pc): Delete.
8618 (moxie_dummy_id): Delete.
8619 (moxie_gdbarch_init): Don't register deleted functions with
8620 gdbarch.
8621
8622 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8623
8624 * mn10300-tdep.c (mn10300_dummy_id): Delete.
8625 (mn10300_unwind_pc): Delete.
8626 (mn10300_unwind_sp): Delete.
8627 (mn10300_push_dummy_call): Use gdbarch_unwind_sp not
8628 mn10300_unwind_sp.
8629 (mn10300_frame_unwind_init): Don't register deleted functions with
8630 gdbarch.
8631
8632 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8633
8634 * mep-tdep.c (mep_unwind_pc): Delete.
8635 (mep_unwind_sp): Delete.
8636 (mep_dummy_id): Delete.
8637 (mep_gdbarch_init): Don't register deleted functions with
8638 gdbarch.
8639
8640 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8641
8642 * m68hc11-tdep.c (m68hc11_unwind_pc): Delete.
8643 (m68hc11_unwind_sp): Delete.
8644 (m68hc11_gdbarch_init): Don't register deleted functions with
8645 gdbarch.
8646
8647 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8648
8649 * m32r-tdep.c (m32r_unwind_sp): Delete.
8650 (m32r_unwind_pc): Delete.
8651 (m32r_dummy_id): Delete.
8652 (m32r_gdbarch_init): Don't register deleted functions with
8653 gdbarch.
8654
8655 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8656
8657 * m32c-tdep.c (m32c_unwind_pc): Delete.
8658 (m32c_unwind_sp): Delete.
8659 (m32c_dummy_id): Delete.
8660 (m32c_gdbarch_init): Don't register deleted functions with
8661 gdbarch.
8662
8663 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8664
8665 * gdb/lm32-tdep.c (lm32_unwind_sp): Delete.
8666 (lm32_unwind_pc): Delete.
8667 (lm32_dummy_id): Delete.
8668 (lm32_gdbarch_init): Don't register deleted functions with
8669 gdbarch.
8670
8671 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8672
8673 * gdb/iq2000-tdep.c (iq2000_unwind_sp): Delete.
8674 (iq2000_unwind_pc): Delete.
8675 (iq2000_dummy_id): Delete.
8676 (iq2000_gdbarch_init): Don't register deleted functions with
8677 gdbarch.
8678
8679 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8680
8681 * nds32-tdep.c (nds32_type_align): Delete.
8682 (nds32_push_dummy_call): Use type_align instead.
8683
8684 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8685
8686 * arm-tdep.c (arm_type_align): Only handle vector override case.
8687 (arm_push_dummy_call): Use type_align.
8688 (arm_gdbarch_init): Register arm_type_align gdbarch function.
8689
8690 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8691
8692 * aarch64-tdep.c (aarch64_type_align): Only handle vector override
8693 case.
8694 (pass_on_stack): Use type_align.
8695 (aarch64_gdbarch_init): Register aarch64_type_align gdbarch
8696 function.
8697
8698 2019-04-23 Tom Tromey <tromey@adacore.com>
8699
8700 * dwarf2read.c (line_header::file_name_at): Remove unused
8701 overload.
8702
8703 2019-04-23 Tom de Vries <tdevries@suse.de>
8704
8705 PR gdb/24438
8706 * contrib/cc-with-tweaks.sh: Remove superfluous .alt file after dwz
8707 invocation.
8708
8709
8710 2019-03-27 Ali Tamur <tamur@google.com>
8711
8712 * dwarf2-frame.c(dwarf_expr_executor::get_addr_index): Update comment
8713 * dwarf2expr.c(dwarf_expr_context::execute_stack_op): Add DW_OP_addrx
8714 * dwarf2expr.h(dwarf_expr_context::offset): Update comment
8715 (dwarf_expr_context::get_addr_index): Likewise
8716 * dwarf2loc.c(dwarf_evaluate_loc_desc::get_addr_index): Likewise
8717 (symbol_needs_eval_context::get_addr_index): Likewise
8718 (disassemble_dwarf_expression): Add DW_OP_addrx
8719 * dwarf2read.c(attr_value_as_address): Add DW_FORM_addrx
8720 (read_cutu_die_from_dwo): Update comment
8721 (skip_one_die): Add DW_FORM_addrx
8722 (read_attribute_value): Likewise
8723 (var_decode_location): Add DW_OP_addrx
8724 (dwarf2_const_value_attr): Add DW_FORM_addrx
8725 (dump_die_shallow): Likewise
8726 (dwarf2_fetch_constant_bytes): Likewise
8727 (decode_locdesc): Add DW_OP_addrx
8728 (skip_form_bytes): Add DW_FORM_addrx
8729
8730 2019-04-22 Ali Tamur <tamur@google.com>
8731
8732 * MAINTAINERS (Write After Approval): Add self.
8733
8734 2019-04-22 Simon Marchi <simon.marchi@efficios.com>
8735
8736 * solib-svr4.c (get_svr4_info): Add pspace parameter.
8737 (svr4_keep_data_in_core): Pass current_program_space to get_svr4_info.
8738 (open_symbol_file_object): Likewise.
8739 (svr4_default_sos): Add info parameter.
8740 (svr4_read_so_list): Likewise.
8741 (svr4_current_sos_direct): Adjust functions calls to pass down
8742 info.
8743 (svr4_current_sos_1): Add info parameter.
8744 (svr4_current_sos): Call get_svr4_info, pass info down to
8745 svr4_current_sos_1.
8746 (svr4_fetch_objfile_link_map): Pass objfile->pspace to
8747 get_svr4_info.
8748 (svr4_in_dynsym_resolve_code): Pass current_program_space to
8749 get_svr4_info.
8750 (probes_table_htab_remove_objfile_probes): Pass objfile->pspace
8751 to get_svr4_info.
8752 (probes_table_remove_objfile_probes): Likewise.
8753 (register_solib_event_probe): Add info parameter.
8754 (solist_update_incremental): Pass info parameter down to
8755 svr4_read_so_list.
8756 (disable_probes_interface): Add info parameter.
8757 (svr4_handle_solib_event): Pass current_program_space to
8758 get_svr4_info. Adjust disable_probes_interface cleanup.
8759 (svr4_create_probe_breakpoints): Add info parameter, pass it
8760 down to register_solib_event_probe.
8761 (svr4_create_solib_event_breakpoints): Add info parameter,
8762 pass it down to svr4_create_probe_breakpoints.
8763 (enable_break): Pass info down to
8764 svr4_create_solib_event_breakpoints.
8765 (svr4_solib_create_inferior_hook): Pass current_program_space to
8766 get_svr4_info.
8767 (svr4_clear_solib): Likewise.
8768
8769 2019-04-22 Pedro Alves <palves@redhat.com>
8770
8771 * solib-svr4.c (svr4_free_objfile_observer): New.
8772 (probe_and_action::objfile): New field.
8773 (probes_table_htab_remove_objfile_probes)
8774 (probes_table_remove_objfile_probes): New functions.
8775 (register_solib_event_probe): Add 'objfile' parameter. Store it
8776 in the new probe_and_action. Don't store the probe in 'lookup'.
8777 (svr4_create_probe_breakpoints): Pass objfile to
8778 register_solib_event_probe.
8779 (_initialize_svr4_solib): Register a free_objfile observer.
8780
8781 2019-04-19 Tom Tromey <tom@tromey.com>
8782
8783 * common/queue.h: Remove.
8784
8785 2019-04-19 Tom Tromey <tom@tromey.com>
8786
8787 * event-loop.c: Don't include "common/queue.h".
8788
8789 2019-04-19 Tom Tromey <tom@tromey.com>
8790
8791 * remote.c (remote_target): Use delete.
8792 * remote-notif.h: Include <list>, not "common/queue.h".
8793 (notif_client_p): Remove typedef.
8794 (remote_notif_state): Add constructor, destructor, initializer.
8795 <notif_queue>: Now a std::list.
8796 (remote_notif_state_xfree): Don't declare.
8797 * remote-notif.c (remote_notif_process, handle_notification)
8798 (remote_notif_state_allocate): Update.
8799 (~remote_notif_state): Rename from remote_notif_state_xfree.
8800
8801 2019-04-19 Tom Tromey <tom@tromey.com>
8802
8803 * symfile.c (reread_symbols): Update.
8804 * objfiles.c (objfile_register_static_link)
8805 (objfile_lookup_static_link): Update
8806 (~objfile) Don't delete static_links.
8807 * objfiles.h (struct objfile) <static_links>: Now an htab_up.
8808
8809 2019-04-19 Tom Tromey <tom@tromey.com>
8810
8811 * type-stack.h (struct type_stack) <insert>: Constify string.
8812 * type-stack.c (type_stack::insert): Constify string.
8813 * gdbtypes.h (lookup_template_type): Update.
8814 (address_space_name_to_int): Update.
8815 * gdbtypes.c (address_space_name_to_int): Make space_identifier
8816 const.
8817 (lookup_template_type): Make name const.
8818 * c-exp.y: Update rules.
8819 (lex_one_token, classify_name, classify_inner_name)
8820 (c_print_token): Update.
8821 * p-exp.y: Update rules.
8822 (yylex): Update.
8823 * f-exp.y: Update rules.
8824 (yylex): Update.
8825 * d-exp.y: Update rules.
8826 (lex_one_token, classify_name, classify_inner_name): Update.
8827 * parse.c (write_dollar_variable, copy_name): Return std::string.
8828 * parser-defs.h (copy_name): Change return type.
8829 * m2-exp.y: Update rules.
8830 (yylex): Update.
8831 * go-exp.y (lex_one_token): Update.
8832 Update rules.
8833 (classify_unsafe_function, classify_packaged_name)
8834 (classify_name, yylex): Update.
8835
8836 2019-04-19 Sergei Trofimovich <siarheit@google.com>
8837
8838 * configure.ac: add --enable-source-highlight switch.
8839 * configure: Regenerate.
8840 * top.c (print_gdb_version): plumb --enable-source-highlight
8841 status to "show configuration".
8842
8843 2019-04-19 Tom Tromey <tromey@adacore.com>
8844
8845 * ada-lang.c (ada_is_variant_part, ada_to_fixed_type_1):
8846 Check ADA_TYPE_P.
8847 (empty_record, ada_template_to_fixed_record_type_1)
8848 (template_to_static_fixed_type)
8849 (to_record_with_fixed_variant_part): Use INIT_NONE_SPECIFIC.
8850 * cp-abi.c (value_rtti_type): Check HAVE_CPLUS_STRUCT.
8851 * gdbtypes.h (INIT_NONE_SPECIFIC, ADA_TYPE_P): New
8852 macros.
8853
8854 2019-04-19 Ilya Yu. Malakhov <malakhov@mcst.ru>
8855
8856 PR symtab/24423:
8857 * source.c (print_source_lines_base): Advance "iter" when a
8858 control character is seen.
8859
8860 2019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8861
8862 * inferior.h (struct infcall_suspend_state_deleter):
8863 Catch exception in destructor to avoid crash.
8864
8865 2019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8866
8867 * cli/cli-cmds.c (_initialize_cli_cmds): Move "shell" "!" alias
8868 close to the add_com "shell".
8869
8870 2019-04-18 Tom Tromey <tromey@adacore.com>
8871
8872 * process-stratum-target.h (class process_stratum_target)
8873 <stratum>: Add "final".
8874
8875 2019-04-17 Tom Tromey <tromey@adacore.com>
8876
8877 * dwarf2read.c (dwarf2_init_complex_target_type): Check "tt"
8878 against nullptr before use.
8879
8880 2019-04-17 Alan Hayward <alan.hayward@arm.com>
8881
8882 * nat/linux-waitpid.c (linux_debug): Call debug_vprintf.
8883
8884 2019-04-17 Jim Wilson <jimw@sifive.com>
8885 Andrew Burgess <andrew.burgess@embecosm.com>
8886
8887 * riscv-tdep.c (riscv_breakpoint_kind_from_pc): Hanndle case where
8888 code read might fail, assume 4-byte breakpoint in that case.
8889
8890 2019-04-15 Leszek Swirski <leszeks@google.com>
8891
8892 * amd64-tdep.c (amd64_classify_aggregate): Use cp_pass_by_reference
8893 rather than a hand-rolled POD check when checking for forced MEMORY
8894 classification.
8895
8896 2019-04-15 Alan Hayward <alan.hayward@arm.com>
8897
8898 * aarch64-linux-nat.c (store_sveregs_to_thread): Set vector length.
8899 * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_set_vq): New
8900 function.
8901 (aarch64_sve_regs_copy_to_reg_buf): Remove VG checks.
8902 (aarch64_sve_regs_copy_from_reg_buf): Likewise.
8903 * nat/aarch64-sve-linux-ptrace.h (aarch64_sve_set_vq): New
8904 declaration.
8905
8906 2019-04-15 Alan Hayward <alan.hayward@arm.com>
8907
8908 * aarch64-linux-nat.c
8909 (aarch64_linux_nat_target::thread_architecture): Add override.
8910 * aarch64-tdep.c (aarch64_gdbarch_init): Ensure different tdesc for
8911 each VQ.
8912
8913 2019-04-15 Alan Hayward <alan.hayward@arm.com>
8914
8915 * aarch64-tdep.c (aarch64_gdbarch_init): Move gdbarch lookup.
8916
8917 2019-04-13 Andrew Burgess <andrew.burgess@embecosm.com>
8918
8919 * dwarf2read.c (dwarf2_init_complex_target_type): Handle complex
8920 target types of size 96-bits, add some additional comments, and
8921 check that the builtin type we found was the correct size.
8922
8923 2019-04-12 Eli Zaretskii <eliz@gnu.org>
8924
8925 * utils.c (prompt_for_continue): Don't restore the styling at the
8926 end, as applied_style has the wrong value. This fixes styling in
8927 long lists of file names that are interrupted by the "Continue?"
8928 prompt.
8929
8930 2019-04-12 Andrew Burgess <andrew.burgess@embecosm.com>
8931
8932 * ada-lang.c (ada_language_defn): Remove use of LANG_MAGIC.
8933 * c-lang.c (c_language_defn): Likewise.
8934 (cplus_language_defn): Likewise.
8935 (asm_language_defn): Likewise.
8936 (minimal_language_defn): Likewise.
8937 * d-lang.c (d_language_defn): Likewise.
8938 * f-lang.c (f_language_defn): Likewise.
8939 * go-lang.c (go_language_defn): Likewise.
8940 * language.c (unknown_language_defn): Likewise.
8941 (auto_language_defn): Likewise.
8942 * language.h (struct language_defn): Remove la_magic field.
8943 (LANG_MAGIC): Delete.
8944 * m2-lang.c (m2_language_defn): Remove use of LANG_MAGIC.
8945 * objc-lang.c (objc_language_defn): Likewise.
8946 * opencl-lang.c (opencl_language_defn): Likewise.
8947 * p-lang.c (pascal_language_defn): Likewise.
8948 * rust-lang.c (rust_language_defn): Likewise.
8949
8950 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
8951
8952 * riscv-tdep.c (riscv_type_align): New function.
8953 (riscv_type_alignment): Delete.
8954 (riscv_arg_location): Use 'type_align'.
8955 (riscv_gdbarch_init): Register riscv_type_align gdbarch function.
8956
8957 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
8958
8959 * gdbtypes.c (type_align): A struct with no non-static fields also
8960 has alignment of 1.
8961
8962 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
8963
8964 * riscv-tdep.c (riscv_call_arg_complex_float): Fix offset of first
8965 component to 0.
8966 (riscv_struct_info::riscv_struct_info): Initialise m_offsets
8967 member.
8968 (riscv_struct_info::analyse): New implementation using new
8969 analyse_inner member function.
8970 (riscv_struct_info::field_offset): New member function.
8971 (riscv_struct_info::m_offsets): New member variable.
8972 (riscv_struct_info::analyse_inner): New private member function,
8973 takes the old implementation of riscv_struct_info::analyse but
8974 extended to track field offsets.
8975 (riscv_call_arg_struct): Update the struct folding special cases
8976 to handle cases where empty C++ structs, which are non-zero
8977 length, are found.
8978 (riscv_arg_location): Initialise the length of each location, a
8979 non-zero length now indicates the location is in use.
8980 (riscv_push_dummy_call): Allow for the first location having a
8981 non-zero offset when setting up arguments.
8982 (riscv_return_value): Likewise, but for return values.
8983
8984 2019-04-11 Tom Tromey <tromey@adacore.com>
8985
8986 * utils.c (internal_vproblem): Make "msg" const.
8987
8988 2019-04-11 Alan Hayward <alan.hayward@arm.com>
8989
8990 * aarch64-tdep.c (aarch64_analyze_prologue_test): Reset saved regs.
8991 * trad-frame.c (trad_frame_reset_saved_regs): New function.
8992 (trad_frame_alloc_saved_regs): Call trad_frame_reset_saved_regs.
8993 * trad-frame.h (trad_frame_reset_saved_regs): New declaration.
8994
8995 2019-04-10 Kevin Buettner <kevinb@redhat.com>
8996
8997 * amd64-linux-nat.c (amd64_linux_collect_native_gregset): New
8998 function.
8999 (fill_gregset): Call amd64_linux_collect_native_gregset instead
9000 of amd64_collect_native_gregset.
9001 (amd64_linux_nat_target::store_registers): Likewise.
9002
9003 2019-04-10 Tom Tromey <tom@tromey.com>
9004
9005 * symtab.c (lookup_global_symbol_from_objfile)
9006 (lookup_symbol_in_objfile_from_linkage_name): Use the iterator.
9007 * objfiles.h (class separate_debug_iterator): New.
9008 (class separate_debug_range): New.
9009 (struct objfile) <separate_debug_objfiles>: New method.
9010 (objfile_separate_debug_iterate): Don't declare.
9011 * objfiles.c (separate_debug_iterator::operator++): Rename from
9012 objfile_separate_debug_iterate.
9013 (objfile_relocate, objfile_rebase, objfile_has_symbols): Use the
9014 iterator.
9015 * minsyms.c (lookup_minimal_symbol_by_pc_section): Use the
9016 iterator.
9017
9018 2019-04-10 Tom Tromey <tom@tromey.com>
9019
9020 * symfile.c (reread_symbols): Remove old comment.
9021 * objfiles.c (free_all_objfiles): Fix a typo.
9022
9023 2019-04-10 Tom Tromey <tom@tromey.com>
9024
9025 * ia64-tdep.c (ia64_get_dyn_info_list): Use foreach.
9026 * minsyms.c (lookup_minimal_symbol): Use foreach.
9027 (lookup_minimal_symbol_text, lookup_minimal_symbol_by_pc_name)
9028 (lookup_minimal_symbol_solib_trampoline): Likewise.
9029 * symfile.c (reread_symbols): Use foreach.
9030
9031 2019-04-09 Ivan Begert <ivanbegert@gmail.com>
9032 Tom Tromey <tromey@adacore.com>
9033
9034 PR rust/24414:
9035 * rust-exp.y (rust_parser::lex_number): Use strtoulst.
9036 (rust_lex_int_test): Change "value" to be LONGEST.
9037 (rust_lex_tests): Add test for long integer literal.
9038
9039 2019-04-09 Tom Tromey <tromey@adacore.com>
9040
9041 * remote.c (remote_target::remote_add_inferior): Change fake_pid_p
9042 to bool.
9043 (extended_remote_target::attach): Update.
9044 (remote_target::remote_notice_new_inferior): Update.
9045 (remote_target::add_current_inferior_and_thread): Update.
9046 * inferior.c (exit_inferior_1): Use "false".
9047 * corelow.c (add_to_thread_list): Make fake_pid_p bool.
9048
9049 2019-04-09 Simon Marchi <simon.marchi@efficios.com>
9050
9051 * infcmd.c (run_command_1): Pass -qualified to tbreak when using
9052 the "start" command.
9053
9054 2019-04-08 Kevin Buettner <kevinb@redhat.com>
9055
9056 * python/py-inferior.c (infpy_thread_from_thread_handle):
9057 Adjust comments to reflect renaming of thread_from_thread_handle
9058 to thread_from_handle. Adjust keywords. Fix type error message.
9059 (inferior_object_methods): Add thread_from_handle. Retain
9060 thread_from_thread_handle, but mark it as deprecated.
9061
9062 2019-04-08 Kevin Buettner <kevinb@redhat.com>
9063
9064 * gdbthread.h (find_thread_by_handle): Revise declaration.
9065 * thread.c (find_thread_by_handle): Likewise. Adjust
9066 implementation too.
9067 * python/py-inferior.c (infpy_thread_from_thread_handle): Add
9068 support for buffer objects as handles.
9069
9070 2019-04-08 Kevin Buettner <kevinb@redhat.com>
9071
9072 * python/py-infthread.c (thpy_thread_handle): New function.
9073 (thread_object_methods): Register thpy_thread_handle.
9074
9075 2019-04-08 Kevin Buettner <kevinb@redhat.com>
9076
9077 * gdbthread.h (thread_to_thread_handle): Declare.
9078 * thread.c (gdbtypes.h): Include.
9079 (thread_to_thread_handle): New function.
9080
9081 * target.h (struct target_ops): Add thread_info_to_thread_handle.
9082 (target_thread_info_to_thread_handle): Declare.
9083 * target.c (target_thread_info_to_thread_handle): New function.
9084 * target-debug.h (target_debug_print_gdb_byte_vector): Define.
9085 * target-delegates.c: Regenerate.
9086
9087 * linux-thread-db.c (class thread_db_target): Add method
9088 thread_info_to_thread_handle.
9089 (thread_db_target::thread_info_to_thread_handle): Define.
9090 * remote.c (class remote_target): Add new method
9091 thread_info_to_thread_handle.
9092 (remote_target::thread_info_to_thread_handle): Define.
9093
9094 2019-04-08 Pedro Alves <palves@redhat.com>
9095
9096 * common/common-exceptions.c (throw_exception): Don't create
9097 named object to throw; throw directly.
9098 (throw_it): Likewise. Don't initialize gdb_exception::message
9099 here, with new; pass FMT and AP to the ctor instead.
9100 * common/common-exceptions.h: Include <string>.
9101 (gdb_exception::gdb_exception(enum return_reason, enum errors,
9102 const char *, va_list)): New ctor. Use std::make_shared.
9103 (gdb_exception_error::gdb_exception_error(enum return_reason, enum
9104 errors)): Delete.
9105 (gdb_exception_error::gdb_exception_error(enum errors, const char
9106 *, va_list)): New.
9107 (gdb_exception_error::gdb_exception_error(const gdb_exception &)):
9108 Add assertion.
9109 (gdb_exception_quit::gdb_exception_quit(enum return_reason, enum
9110 errors)): Delete.
9111 (gdb_exception_quit::gdb_exception_quit(const char *, va_list)): New.
9112 (gdb_exception_quit::gdb_exception_quit(const gdb_exception &)):
9113 Add assertion.
9114
9115 2019-04-08 Tom Tromey <tom@tromey.com>
9116
9117 * valops.c (value_rtti_indirect_type): Replace throw_exception
9118 with throw.
9119 * tracefile-tfile.c (tfile_target_open): Replace throw_exception
9120 with throw.
9121 * thread.c (thr_try_catch_cmd): Replace throw_exception with
9122 throw.
9123 * target.c (target_translate_tls_address): Replace throw_exception
9124 with throw.
9125 * stack.c (frame_apply_command_count): Replace throw_exception
9126 with throw.
9127 * solib-spu.c (append_ocl_sos): Replace throw_exception with
9128 throw.
9129 * s390-tdep.c (s390_frame_unwind_cache): Replace throw_exception
9130 with throw.
9131 * rs6000-tdep.c (rs6000_frame_cache)
9132 (rs6000_epilogue_frame_cache): Replace throw_exception with throw.
9133 * remote.c: Replace throw_exception with throw.
9134 * record-full.c (record_full_message, record_full_wait_1)
9135 (record_full_restore): Replace throw_exception with throw.
9136 * record-btrace.c:
9137 (get_thread_current_frame_id, record_btrace_start_replaying)
9138 (cmd_record_btrace_bts_start, cmd_record_btrace_pt_start)
9139 (cmd_record_btrace_start): Replace throw_exception with throw.
9140 * parse.c (parse_exp_in_context_1): Replace throw_exception with
9141 throw.
9142 * linux-nat.c (detach_one_lwp, linux_resume_one_lwp)
9143 (resume_stopped_resumed_lwps): Replace throw_exception with throw.
9144 * linespec.c:
9145 (find_linespec_symbols): Replace throw_exception with throw.
9146 * infrun.c (displaced_step_prepare, resume): Replace
9147 throw_exception with throw.
9148 * infcmd.c (post_create_inferior): Replace throw_exception with
9149 throw.
9150 * inf-loop.c (inferior_event_handler): Replace throw_exception
9151 with throw.
9152 * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
9153 (i386_sigtramp_frame_cache): Replace throw_exception with throw.
9154 * frame.c (frame_unwind_pc, get_prev_frame_if_no_cycle)
9155 (get_prev_frame_always, get_frame_pc_if_available)
9156 (get_frame_address_in_block_if_available, get_frame_language):
9157 Replace throw_exception with throw.
9158 * frame-unwind.c (frame_unwind_try_unwinder): Replace
9159 throw_exception with throw.
9160 * eval.c (fetch_subexp_value, evaluate_var_value)
9161 (evaluate_funcall, evaluate_subexp_standard): Replace
9162 throw_exception with throw.
9163 * dwarf2loc.c (call_site_find_chain)
9164 (dwarf2_evaluate_loc_desc_full, dwarf2_locexpr_baton_eval):
9165 Replace throw_exception with throw.
9166 * dwarf2-frame.c (dwarf2_frame_cache): Replace throw_exception
9167 with throw.
9168 * darwin-nat.c (darwin_attach_pid): Replace throw_exception with
9169 throw.
9170 * cp-abi.c (baseclass_offset): Replace throw_exception with throw.
9171 * completer.c (complete_line_internal): Replace throw_exception
9172 with throw.
9173 * compile/compile-object-run.c (compile_object_run): Replace
9174 throw_exception with throw.
9175 * cli/cli-script.c (process_next_line): Replace throw_exception
9176 with throw.
9177 * btrace.c (btrace_compute_ftrace_pt, btrace_compute_ftrace)
9178 (btrace_enable, btrace_maint_update_pt_packets): Replace
9179 throw_exception with throw.
9180 * breakpoint.c (create_breakpoint, save_breakpoints): Replace
9181 throw_exception with throw.
9182 * break-catch-throw.c (re_set_exception_catchpoint): Replace
9183 throw_exception with throw.
9184 * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
9185 (amd64_epilogue_frame_cache): Replace throw_exception with throw.
9186 * aarch64-tdep.c (aarch64_make_prologue_cache)
9187 (aarch64_make_stub_cache): Replace throw_exception with throw.
9188
9189 2019-04-08 Tom Tromey <tom@tromey.com>
9190
9191 * common/common-exceptions.c (throw_exception): Rename from
9192 throw_exception_cxx. Remove old copy. Make argument const.
9193 (throw_it): Create and throw exception objects directly.
9194 * common/common-exceptions.h (throw_exception): Make argument
9195 const.
9196 (struct gdb_exception_error): Add constructor.
9197 (struct gdb_exception_quit): Add constructor.
9198
9199 2019-04-08 Tom Tromey <tom@tromey.com>
9200
9201 * common/common-exceptions.h (exception_rethrow): Don't declare.
9202 (TRY_SJLJ): Update comment.
9203 (TRY, CATCH, END_CATCH): Remove.
9204 * common/common-exceptions.c (exception_rethrow): Remove.
9205
9206 2019-04-08 Tom Tromey <tom@tromey.com>
9207
9208 * common/common-exceptions.h (gdb_exception_RETURN_MASK_ALL):
9209 Remove.
9210 (gdb_exception_error): Rename from
9211 gdb_exception_RETURN_MASK_ERROR.
9212 (gdb_exception_quit): Rename from gdb_exception_RETURN_MASK_QUIT.
9213 (gdb_quit_bad_alloc): Update.
9214 * aarch64-tdep.c: Update.
9215 * ada-lang.c: Update.
9216 * ada-typeprint.c: Update.
9217 * ada-valprint.c: Update.
9218 * amd64-tdep.c: Update.
9219 * arch-utils.c: Update.
9220 * break-catch-throw.c: Update.
9221 * breakpoint.c: Update.
9222 * btrace.c: Update.
9223 * c-varobj.c: Update.
9224 * cli/cli-cmds.c: Update.
9225 * cli/cli-interp.c: Update.
9226 * cli/cli-script.c: Update.
9227 * common/common-exceptions.c: Update.
9228 * common/new-op.c: Update.
9229 * common/selftest.c: Update.
9230 * compile/compile-c-symbols.c: Update.
9231 * compile/compile-cplus-symbols.c: Update.
9232 * compile/compile-object-load.c: Update.
9233 * compile/compile-object-run.c: Update.
9234 * completer.c: Update.
9235 * corelow.c: Update.
9236 * cp-abi.c: Update.
9237 * cp-support.c: Update.
9238 * cp-valprint.c: Update.
9239 * darwin-nat.c: Update.
9240 * disasm-selftests.c: Update.
9241 * dtrace-probe.c: Update.
9242 * dwarf-index-cache.c: Update.
9243 * dwarf-index-write.c: Update.
9244 * dwarf2-frame-tailcall.c: Update.
9245 * dwarf2-frame.c: Update.
9246 * dwarf2loc.c: Update.
9247 * dwarf2read.c: Update.
9248 * eval.c: Update.
9249 * event-loop.c: Update.
9250 * event-top.c: Update.
9251 * exec.c: Update.
9252 * f-valprint.c: Update.
9253 * fbsd-tdep.c: Update.
9254 * frame-unwind.c: Update.
9255 * frame.c: Update.
9256 * gdbtypes.c: Update.
9257 * gnu-v3-abi.c: Update.
9258 * guile/guile-internal.h: Update.
9259 * guile/scm-block.c: Update.
9260 * guile/scm-breakpoint.c: Update.
9261 * guile/scm-cmd.c: Update.
9262 * guile/scm-disasm.c: Update.
9263 * guile/scm-frame.c: Update.
9264 * guile/scm-lazy-string.c: Update.
9265 * guile/scm-math.c: Update.
9266 * guile/scm-param.c: Update.
9267 * guile/scm-ports.c: Update.
9268 * guile/scm-pretty-print.c: Update.
9269 * guile/scm-symbol.c: Update.
9270 * guile/scm-symtab.c: Update.
9271 * guile/scm-type.c: Update.
9272 * guile/scm-value.c: Update.
9273 * i386-linux-tdep.c: Update.
9274 * i386-tdep.c: Update.
9275 * inf-loop.c: Update.
9276 * infcall.c: Update.
9277 * infcmd.c: Update.
9278 * infrun.c: Update.
9279 * jit.c: Update.
9280 * language.c: Update.
9281 * linespec.c: Update.
9282 * linux-fork.c: Update.
9283 * linux-nat.c: Update.
9284 * linux-tdep.c: Update.
9285 * linux-thread-db.c: Update.
9286 * main.c: Update.
9287 * mi/mi-cmd-break.c: Update.
9288 * mi/mi-cmd-stack.c: Update.
9289 * mi/mi-interp.c: Update.
9290 * mi/mi-main.c: Update.
9291 * objc-lang.c: Update.
9292 * p-valprint.c: Update.
9293 * parse.c: Update.
9294 * ppc-linux-tdep.c: Update.
9295 * printcmd.c: Update.
9296 * python/py-arch.c: Update.
9297 * python/py-breakpoint.c: Update.
9298 * python/py-cmd.c: Update.
9299 * python/py-finishbreakpoint.c: Update.
9300 * python/py-frame.c: Update.
9301 * python/py-framefilter.c: Update.
9302 * python/py-gdb-readline.c: Update.
9303 * python/py-inferior.c: Update.
9304 * python/py-infthread.c: Update.
9305 * python/py-lazy-string.c: Update.
9306 * python/py-linetable.c: Update.
9307 * python/py-objfile.c: Update.
9308 * python/py-param.c: Update.
9309 * python/py-prettyprint.c: Update.
9310 * python/py-progspace.c: Update.
9311 * python/py-record-btrace.c: Update.
9312 * python/py-record.c: Update.
9313 * python/py-symbol.c: Update.
9314 * python/py-type.c: Update.
9315 * python/py-unwind.c: Update.
9316 * python/py-utils.c: Update.
9317 * python/py-value.c: Update.
9318 * python/python.c: Update.
9319 * record-btrace.c: Update.
9320 * record-full.c: Update.
9321 * remote-fileio.c: Update.
9322 * remote.c: Update.
9323 * riscv-tdep.c: Update.
9324 * rs6000-aix-tdep.c: Update.
9325 * rs6000-tdep.c: Update.
9326 * rust-exp.y: Update.
9327 * rust-lang.c: Update.
9328 * s390-tdep.c: Update.
9329 * selftest-arch.c: Update.
9330 * solib-dsbt.c: Update.
9331 * solib-frv.c: Update.
9332 * solib-spu.c: Update.
9333 * solib-svr4.c: Update.
9334 * solib.c: Update.
9335 * sparc64-linux-tdep.c: Update.
9336 * stack.c: Update.
9337 * symfile-mem.c: Update.
9338 * symmisc.c: Update.
9339 * target.c: Update.
9340 * thread.c: Update.
9341 * top.c: Update.
9342 * tracefile-tfile.c: Update.
9343 * tui/tui.c: Update.
9344 * typeprint.c: Update.
9345 * unittests/cli-utils-selftests.c: Update.
9346 * unittests/parse-connection-spec-selftests.c: Update.
9347 * valops.c: Update.
9348 * valprint.c: Update.
9349 * value.c: Update.
9350 * varobj.c: Update.
9351 * windows-nat.c: Update.
9352 * x86-linux-nat.c: Update.
9353 * xml-support.c: Update.
9354
9355 2019-04-08 Tom Tromey <tom@tromey.com>
9356
9357 * xml-support.c: Use C++ exception handling.
9358 * x86-linux-nat.c: Use C++ exception handling.
9359 * windows-nat.c: Use C++ exception handling.
9360 * varobj.c: Use C++ exception handling.
9361 * value.c: Use C++ exception handling.
9362 * valprint.c: Use C++ exception handling.
9363 * valops.c: Use C++ exception handling.
9364 * unittests/parse-connection-spec-selftests.c: Use C++ exception
9365 handling.
9366 * unittests/cli-utils-selftests.c: Use C++ exception handling.
9367 * typeprint.c: Use C++ exception handling.
9368 * tui/tui.c: Use C++ exception handling.
9369 * tracefile-tfile.c: Use C++ exception handling.
9370 * top.c: Use C++ exception handling.
9371 * thread.c: Use C++ exception handling.
9372 * target.c: Use C++ exception handling.
9373 * symmisc.c: Use C++ exception handling.
9374 * symfile-mem.c: Use C++ exception handling.
9375 * stack.c: Use C++ exception handling.
9376 * sparc64-linux-tdep.c: Use C++ exception handling.
9377 * solib.c: Use C++ exception handling.
9378 * solib-svr4.c: Use C++ exception handling.
9379 * solib-spu.c: Use C++ exception handling.
9380 * solib-frv.c: Use C++ exception handling.
9381 * solib-dsbt.c: Use C++ exception handling.
9382 * selftest-arch.c: Use C++ exception handling.
9383 * s390-tdep.c: Use C++ exception handling.
9384 * rust-lang.c: Use C++ exception handling.
9385 * rust-exp.y: Use C++ exception handling.
9386 * rs6000-tdep.c: Use C++ exception handling.
9387 * rs6000-aix-tdep.c: Use C++ exception handling.
9388 * riscv-tdep.c: Use C++ exception handling.
9389 * remote.c: Use C++ exception handling.
9390 * remote-fileio.c: Use C++ exception handling.
9391 * record-full.c: Use C++ exception handling.
9392 * record-btrace.c: Use C++ exception handling.
9393 * python/python.c: Use C++ exception handling.
9394 * python/py-value.c: Use C++ exception handling.
9395 * python/py-utils.c: Use C++ exception handling.
9396 * python/py-unwind.c: Use C++ exception handling.
9397 * python/py-type.c: Use C++ exception handling.
9398 * python/py-symbol.c: Use C++ exception handling.
9399 * python/py-record.c: Use C++ exception handling.
9400 * python/py-record-btrace.c: Use C++ exception handling.
9401 * python/py-progspace.c: Use C++ exception handling.
9402 * python/py-prettyprint.c: Use C++ exception handling.
9403 * python/py-param.c: Use C++ exception handling.
9404 * python/py-objfile.c: Use C++ exception handling.
9405 * python/py-linetable.c: Use C++ exception handling.
9406 * python/py-lazy-string.c: Use C++ exception handling.
9407 * python/py-infthread.c: Use C++ exception handling.
9408 * python/py-inferior.c: Use C++ exception handling.
9409 * python/py-gdb-readline.c: Use C++ exception handling.
9410 * python/py-framefilter.c: Use C++ exception handling.
9411 * python/py-frame.c: Use C++ exception handling.
9412 * python/py-finishbreakpoint.c: Use C++ exception handling.
9413 * python/py-cmd.c: Use C++ exception handling.
9414 * python/py-breakpoint.c: Use C++ exception handling.
9415 * python/py-arch.c: Use C++ exception handling.
9416 * printcmd.c: Use C++ exception handling.
9417 * ppc-linux-tdep.c: Use C++ exception handling.
9418 * parse.c: Use C++ exception handling.
9419 * p-valprint.c: Use C++ exception handling.
9420 * objc-lang.c: Use C++ exception handling.
9421 * mi/mi-main.c: Use C++ exception handling.
9422 * mi/mi-interp.c: Use C++ exception handling.
9423 * mi/mi-cmd-stack.c: Use C++ exception handling.
9424 * mi/mi-cmd-break.c: Use C++ exception handling.
9425 * main.c: Use C++ exception handling.
9426 * linux-thread-db.c: Use C++ exception handling.
9427 * linux-tdep.c: Use C++ exception handling.
9428 * linux-nat.c: Use C++ exception handling.
9429 * linux-fork.c: Use C++ exception handling.
9430 * linespec.c: Use C++ exception handling.
9431 * language.c: Use C++ exception handling.
9432 * jit.c: Use C++ exception handling.
9433 * infrun.c: Use C++ exception handling.
9434 * infcmd.c: Use C++ exception handling.
9435 * infcall.c: Use C++ exception handling.
9436 * inf-loop.c: Use C++ exception handling.
9437 * i386-tdep.c: Use C++ exception handling.
9438 * i386-linux-tdep.c: Use C++ exception handling.
9439 * guile/scm-value.c: Use C++ exception handling.
9440 * guile/scm-type.c: Use C++ exception handling.
9441 * guile/scm-symtab.c: Use C++ exception handling.
9442 * guile/scm-symbol.c: Use C++ exception handling.
9443 * guile/scm-pretty-print.c: Use C++ exception handling.
9444 * guile/scm-ports.c: Use C++ exception handling.
9445 * guile/scm-param.c: Use C++ exception handling.
9446 * guile/scm-math.c: Use C++ exception handling.
9447 * guile/scm-lazy-string.c: Use C++ exception handling.
9448 * guile/scm-frame.c: Use C++ exception handling.
9449 * guile/scm-disasm.c: Use C++ exception handling.
9450 * guile/scm-cmd.c: Use C++ exception handling.
9451 * guile/scm-breakpoint.c: Use C++ exception handling.
9452 * guile/scm-block.c: Use C++ exception handling.
9453 * guile/guile-internal.h: Use C++ exception handling.
9454 * gnu-v3-abi.c: Use C++ exception handling.
9455 * gdbtypes.c: Use C++ exception handling.
9456 * frame.c: Use C++ exception handling.
9457 * frame-unwind.c: Use C++ exception handling.
9458 * fbsd-tdep.c: Use C++ exception handling.
9459 * f-valprint.c: Use C++ exception handling.
9460 * exec.c: Use C++ exception handling.
9461 * event-top.c: Use C++ exception handling.
9462 * event-loop.c: Use C++ exception handling.
9463 * eval.c: Use C++ exception handling.
9464 * dwarf2read.c: Use C++ exception handling.
9465 * dwarf2loc.c: Use C++ exception handling.
9466 * dwarf2-frame.c: Use C++ exception handling.
9467 * dwarf2-frame-tailcall.c: Use C++ exception handling.
9468 * dwarf-index-write.c: Use C++ exception handling.
9469 * dwarf-index-cache.c: Use C++ exception handling.
9470 * dtrace-probe.c: Use C++ exception handling.
9471 * disasm-selftests.c: Use C++ exception handling.
9472 * darwin-nat.c: Use C++ exception handling.
9473 * cp-valprint.c: Use C++ exception handling.
9474 * cp-support.c: Use C++ exception handling.
9475 * cp-abi.c: Use C++ exception handling.
9476 * corelow.c: Use C++ exception handling.
9477 * completer.c: Use C++ exception handling.
9478 * compile/compile-object-run.c: Use C++ exception handling.
9479 * compile/compile-object-load.c: Use C++ exception handling.
9480 * compile/compile-cplus-symbols.c: Use C++ exception handling.
9481 * compile/compile-c-symbols.c: Use C++ exception handling.
9482 * common/selftest.c: Use C++ exception handling.
9483 * common/new-op.c: Use C++ exception handling.
9484 * cli/cli-script.c: Use C++ exception handling.
9485 * cli/cli-interp.c: Use C++ exception handling.
9486 * cli/cli-cmds.c: Use C++ exception handling.
9487 * c-varobj.c: Use C++ exception handling.
9488 * btrace.c: Use C++ exception handling.
9489 * breakpoint.c: Use C++ exception handling.
9490 * break-catch-throw.c: Use C++ exception handling.
9491 * arch-utils.c: Use C++ exception handling.
9492 * amd64-tdep.c: Use C++ exception handling.
9493 * ada-valprint.c: Use C++ exception handling.
9494 * ada-typeprint.c: Use C++ exception handling.
9495 * ada-lang.c: Use C++ exception handling.
9496 * aarch64-tdep.c: Use C++ exception handling.
9497
9498 2019-04-08 Tom Tromey <tom@tromey.com>
9499
9500 * xml-support.c (gdb_xml_parser::parse): Update.
9501 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
9502 * value.c (show_convenience): Update.
9503 * unittests/cli-utils-selftests.c (test_number_or_range_parser)
9504 (test_parse_flags_qcs): Update.
9505 * thread.c (thr_try_catch_cmd): Update.
9506 * target.c (target_translate_tls_address): Update.
9507 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
9508 (info_frame_command_core, frame_apply_command_count): Update.
9509 * rust-exp.y (rust_lex_exception_test): Update.
9510 * riscv-tdep.c (riscv_print_one_register_info): Update.
9511 * remote.c (remote_target::enable_btrace): Update.
9512 * record-btrace.c (record_btrace_enable_warn): Update.
9513 * python/py-utils.c (gdbpy_convert_exception): Update.
9514 * printcmd.c (do_one_display, print_variable_and_value): Update.
9515 * mi/mi-main.c (mi_print_exception): Update.
9516 * mi/mi-interp.c (mi_cmd_interpreter_exec): Use SCOPE_EXIT.
9517 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
9518 * linux-nat.c (linux_nat_target::attach): Update.
9519 * linux-fork.c (class scoped_switch_fork_info): Update.
9520 * infrun.c (displaced_step_prepare): Update.
9521 * infcall.c (call_function_by_hand_dummy): Update.
9522 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception): Update.
9523 * gnu-v3-abi.c (print_one_vtable): Update.
9524 * frame.c (get_prev_frame_always): Update.
9525 * f-valprint.c (info_common_command_for_block): Update.
9526 * exec.c (try_open_exec_file): Update.
9527 * exceptions.c (print_exception, exception_print)
9528 (exception_fprintf, exception_print_same): Update.
9529 * dwarf2-frame.c (dwarf2_build_frame_info): Update.
9530 * dwarf-index-cache.c (index_cache::store)
9531 (index_cache::lookup_gdb_index): Update.
9532 * darwin-nat.c (maybe_cache_shell): Update.
9533 * cp-valprint.c (cp_print_value_fields): Update.
9534 * compile/compile-cplus-symbols.c (gcc_cplus_convert_symbol)
9535 (gcc_cplus_symbol_address): Update.
9536 * compile/compile-c-symbols.c (gcc_convert_symbol)
9537 (gcc_symbol_address, generate_c_for_for_one_variable): Update.
9538 * common/selftest.c: Update.
9539 * common/common-exceptions.h (struct gdb_exception) <message>: Now
9540 a std::string.
9541 (exception_try_scope_entry, exception_try_scope_exit): Don't
9542 declare.
9543 (struct exception_try_scope): Remove.
9544 (TRY): Don't use exception_try_scope.
9545 (struct gdb_exception): Add constructor, operator=.
9546 <what>: New method.
9547 (struct gdb_exception_RETURN_MASK_ALL)
9548 (struct gdb_exception_RETURN_MASK_ERROR)
9549 (struct gdb_exception_RETURN_MASK_QUIT): Add constructor.
9550 (struct gdb_quit_bad_alloc): Update.
9551 * common/common-exceptions.c (exception_none): Change
9552 initializer.
9553 (struct catcher) <state, exception>: Initialize inline.
9554 <prev>: Remove member.
9555 (current_catcher): Remove.
9556 (catchers): New global.
9557 (exceptions_state_mc_init): Simplify.
9558 (catcher_pop): Remove.
9559 (exceptions_state_mc, exceptions_state_mc_catch): Update.
9560 (try_scope_depth, exception_try_scope_entry)
9561 (exception_try_scope_exit): Remove.
9562 (throw_exception_sjlj): Update.
9563 (exception_messages, exception_messages_size): Remove.
9564 (throw_it): Simplify.
9565 (gdb_exception_sliced_copy): Remove.
9566 (throw_exception_cxx): Update.
9567 * cli/cli-script.c (script_from_file): Update.
9568 * breakpoint.c (insert_bp_location, update_breakpoint_locations):
9569 Update.
9570 * ada-valprint.c (ada_val_print): Update.
9571 * ada-lang.c (ada_to_fixed_type_1, ada_exception_name_addr)
9572 (create_excep_cond_exprs): Update.
9573
9574 2019-04-08 Tom Tromey <tom@tromey.com>
9575
9576 * common/common-exceptions.h (GDB_XCPT_SJMP, GDB_XCPT_TRY)
9577 (GDB_XCPT_RAW_TRY, GDB_XCPT): Remove.
9578 (TRY, CATCH, END_CATCH): Remove some definitions.
9579 * common/common-exceptions.c: Don't use GDB_XCPT.
9580 (catcher_list_size): Remove.
9581 (throw_exception, throw_it): Simplify.
9582
9583 2019-04-05 Tom Tromey <tom@tromey.com>
9584
9585 Revert the header-sorting patch.
9586 * ft32-tdep.c: Revert.
9587 * frv-tdep.c: Revert.
9588 * frv-linux-tdep.c: Revert.
9589 * frame.c: Revert.
9590 * frame-unwind.c: Revert.
9591 * frame-base.c: Revert.
9592 * fork-child.c: Revert.
9593 * findvar.c: Revert.
9594 * findcmd.c: Revert.
9595 * filesystem.c: Revert.
9596 * filename-seen-cache.h: Revert.
9597 * filename-seen-cache.c: Revert.
9598 * fbsd-tdep.c: Revert.
9599 * fbsd-nat.h: Revert.
9600 * fbsd-nat.c: Revert.
9601 * f-valprint.c: Revert.
9602 * f-typeprint.c: Revert.
9603 * f-lang.c: Revert.
9604 * extension.h: Revert.
9605 * extension.c: Revert.
9606 * extension-priv.h: Revert.
9607 * expprint.c: Revert.
9608 * exec.h: Revert.
9609 * exec.c: Revert.
9610 * exceptions.c: Revert.
9611 * event-top.c: Revert.
9612 * event-loop.c: Revert.
9613 * eval.c: Revert.
9614 * elfread.c: Revert.
9615 * dwarf2read.h: Revert.
9616 * dwarf2read.c: Revert.
9617 * dwarf2loc.c: Revert.
9618 * dwarf2expr.h: Revert.
9619 * dwarf2expr.c: Revert.
9620 * dwarf2-frame.c: Revert.
9621 * dwarf2-frame-tailcall.c: Revert.
9622 * dwarf-index-write.h: Revert.
9623 * dwarf-index-write.c: Revert.
9624 * dwarf-index-common.c: Revert.
9625 * dwarf-index-cache.h: Revert.
9626 * dwarf-index-cache.c: Revert.
9627 * dummy-frame.c: Revert.
9628 * dtrace-probe.c: Revert.
9629 * disasm.h: Revert.
9630 * disasm.c: Revert.
9631 * disasm-selftests.c: Revert.
9632 * dictionary.c: Revert.
9633 * dicos-tdep.c: Revert.
9634 * demangle.c: Revert.
9635 * dcache.h: Revert.
9636 * dcache.c: Revert.
9637 * darwin-nat.h: Revert.
9638 * darwin-nat.c: Revert.
9639 * darwin-nat-info.c: Revert.
9640 * d-valprint.c: Revert.
9641 * d-namespace.c: Revert.
9642 * d-lang.c: Revert.
9643 * ctf.c: Revert.
9644 * csky-tdep.c: Revert.
9645 * csky-linux-tdep.c: Revert.
9646 * cris-tdep.c: Revert.
9647 * cris-linux-tdep.c: Revert.
9648 * cp-valprint.c: Revert.
9649 * cp-support.c: Revert.
9650 * cp-namespace.c: Revert.
9651 * cp-abi.c: Revert.
9652 * corelow.c: Revert.
9653 * corefile.c: Revert.
9654 * continuations.c: Revert.
9655 * completer.h: Revert.
9656 * completer.c: Revert.
9657 * complaints.c: Revert.
9658 * coffread.c: Revert.
9659 * coff-pe-read.c: Revert.
9660 * cli-out.h: Revert.
9661 * cli-out.c: Revert.
9662 * charset.c: Revert.
9663 * c-varobj.c: Revert.
9664 * c-valprint.c: Revert.
9665 * c-typeprint.c: Revert.
9666 * c-lang.c: Revert.
9667 * buildsym.c: Revert.
9668 * buildsym-legacy.c: Revert.
9669 * build-id.h: Revert.
9670 * build-id.c: Revert.
9671 * btrace.c: Revert.
9672 * bsd-uthread.c: Revert.
9673 * breakpoint.h: Revert.
9674 * breakpoint.c: Revert.
9675 * break-catch-throw.c: Revert.
9676 * break-catch-syscall.c: Revert.
9677 * break-catch-sig.c: Revert.
9678 * blockframe.c: Revert.
9679 * block.c: Revert.
9680 * bfin-tdep.c: Revert.
9681 * bfin-linux-tdep.c: Revert.
9682 * bfd-target.c: Revert.
9683 * bcache.c: Revert.
9684 * ax-general.c: Revert.
9685 * ax-gdb.h: Revert.
9686 * ax-gdb.c: Revert.
9687 * avr-tdep.c: Revert.
9688 * auxv.c: Revert.
9689 * auto-load.c: Revert.
9690 * arm-wince-tdep.c: Revert.
9691 * arm-tdep.c: Revert.
9692 * arm-symbian-tdep.c: Revert.
9693 * arm-pikeos-tdep.c: Revert.
9694 * arm-obsd-tdep.c: Revert.
9695 * arm-nbsd-tdep.c: Revert.
9696 * arm-nbsd-nat.c: Revert.
9697 * arm-linux-tdep.c: Revert.
9698 * arm-linux-nat.c: Revert.
9699 * arm-fbsd-tdep.c: Revert.
9700 * arm-fbsd-nat.c: Revert.
9701 * arm-bsd-tdep.c: Revert.
9702 * arch-utils.c: Revert.
9703 * arc-tdep.c: Revert.
9704 * arc-newlib-tdep.c: Revert.
9705 * annotate.h: Revert.
9706 * annotate.c: Revert.
9707 * amd64-windows-tdep.c: Revert.
9708 * amd64-windows-nat.c: Revert.
9709 * amd64-tdep.c: Revert.
9710 * amd64-sol2-tdep.c: Revert.
9711 * amd64-obsd-tdep.c: Revert.
9712 * amd64-obsd-nat.c: Revert.
9713 * amd64-nbsd-tdep.c: Revert.
9714 * amd64-nbsd-nat.c: Revert.
9715 * amd64-nat.c: Revert.
9716 * amd64-linux-tdep.c: Revert.
9717 * amd64-linux-nat.c: Revert.
9718 * amd64-fbsd-tdep.c: Revert.
9719 * amd64-fbsd-nat.c: Revert.
9720 * amd64-dicos-tdep.c: Revert.
9721 * amd64-darwin-tdep.c: Revert.
9722 * amd64-bsd-nat.c: Revert.
9723 * alpha-tdep.c: Revert.
9724 * alpha-obsd-tdep.c: Revert.
9725 * alpha-nbsd-tdep.c: Revert.
9726 * alpha-mdebug-tdep.c: Revert.
9727 * alpha-linux-tdep.c: Revert.
9728 * alpha-linux-nat.c: Revert.
9729 * alpha-bsd-tdep.c: Revert.
9730 * alpha-bsd-nat.c: Revert.
9731 * aix-thread.c: Revert.
9732 * agent.c: Revert.
9733 * addrmap.c: Revert.
9734 * ada-varobj.c: Revert.
9735 * ada-valprint.c: Revert.
9736 * ada-typeprint.c: Revert.
9737 * ada-tasks.c: Revert.
9738 * ada-lang.c: Revert.
9739 * aarch64-tdep.c: Revert.
9740 * aarch64-ravenscar-thread.c: Revert.
9741 * aarch64-newlib-tdep.c: Revert.
9742 * aarch64-linux-tdep.c: Revert.
9743 * aarch64-linux-nat.c: Revert.
9744 * aarch64-fbsd-tdep.c: Revert.
9745 * aarch64-fbsd-nat.c: Revert.
9746 * aarch32-linux-nat.c: Revert.
9747
9748 2019-04-05 Tom Tromey <tom@tromey.com>
9749
9750 * ft32-tdep.c: Sort headers.
9751 * frv-tdep.c: Sort headers.
9752 * frv-linux-tdep.c: Sort headers.
9753 * frame.c: Sort headers.
9754 * frame-unwind.c: Sort headers.
9755 * frame-base.c: Sort headers.
9756 * fork-child.c: Sort headers.
9757 * findvar.c: Sort headers.
9758 * findcmd.c: Sort headers.
9759 * filesystem.c: Sort headers.
9760 * filename-seen-cache.h: Sort headers.
9761 * filename-seen-cache.c: Sort headers.
9762 * fbsd-tdep.c: Sort headers.
9763 * fbsd-nat.h: Sort headers.
9764 * fbsd-nat.c: Sort headers.
9765 * f-valprint.c: Sort headers.
9766 * f-typeprint.c: Sort headers.
9767 * f-lang.c: Sort headers.
9768 * extension.h: Sort headers.
9769 * extension.c: Sort headers.
9770 * extension-priv.h: Sort headers.
9771 * expprint.c: Sort headers.
9772 * exec.h: Sort headers.
9773 * exec.c: Sort headers.
9774 * exceptions.c: Sort headers.
9775 * event-top.c: Sort headers.
9776 * event-loop.c: Sort headers.
9777 * eval.c: Sort headers.
9778 * elfread.c: Sort headers.
9779 * dwarf2read.h: Sort headers.
9780 * dwarf2read.c: Sort headers.
9781 * dwarf2loc.c: Sort headers.
9782 * dwarf2expr.h: Sort headers.
9783 * dwarf2expr.c: Sort headers.
9784 * dwarf2-frame.c: Sort headers.
9785 * dwarf2-frame-tailcall.c: Sort headers.
9786 * dwarf-index-write.h: Sort headers.
9787 * dwarf-index-write.c: Sort headers.
9788 * dwarf-index-common.c: Sort headers.
9789 * dwarf-index-cache.h: Sort headers.
9790 * dwarf-index-cache.c: Sort headers.
9791 * dummy-frame.c: Sort headers.
9792 * dtrace-probe.c: Sort headers.
9793 * disasm.h: Sort headers.
9794 * disasm.c: Sort headers.
9795 * disasm-selftests.c: Sort headers.
9796 * dictionary.c: Sort headers.
9797 * dicos-tdep.c: Sort headers.
9798 * demangle.c: Sort headers.
9799 * dcache.h: Sort headers.
9800 * dcache.c: Sort headers.
9801 * darwin-nat.h: Sort headers.
9802 * darwin-nat.c: Sort headers.
9803 * darwin-nat-info.c: Sort headers.
9804 * d-valprint.c: Sort headers.
9805 * d-namespace.c: Sort headers.
9806 * d-lang.c: Sort headers.
9807 * ctf.c: Sort headers.
9808 * csky-tdep.c: Sort headers.
9809 * csky-linux-tdep.c: Sort headers.
9810 * cris-tdep.c: Sort headers.
9811 * cris-linux-tdep.c: Sort headers.
9812 * cp-valprint.c: Sort headers.
9813 * cp-support.c: Sort headers.
9814 * cp-namespace.c: Sort headers.
9815 * cp-abi.c: Sort headers.
9816 * corelow.c: Sort headers.
9817 * corefile.c: Sort headers.
9818 * continuations.c: Sort headers.
9819 * completer.h: Sort headers.
9820 * completer.c: Sort headers.
9821 * complaints.c: Sort headers.
9822 * coffread.c: Sort headers.
9823 * coff-pe-read.c: Sort headers.
9824 * cli-out.h: Sort headers.
9825 * cli-out.c: Sort headers.
9826 * charset.c: Sort headers.
9827 * c-varobj.c: Sort headers.
9828 * c-valprint.c: Sort headers.
9829 * c-typeprint.c: Sort headers.
9830 * c-lang.c: Sort headers.
9831 * buildsym.c: Sort headers.
9832 * buildsym-legacy.c: Sort headers.
9833 * build-id.h: Sort headers.
9834 * build-id.c: Sort headers.
9835 * btrace.c: Sort headers.
9836 * bsd-uthread.c: Sort headers.
9837 * breakpoint.h: Sort headers.
9838 * breakpoint.c: Sort headers.
9839 * break-catch-throw.c: Sort headers.
9840 * break-catch-syscall.c: Sort headers.
9841 * break-catch-sig.c: Sort headers.
9842 * blockframe.c: Sort headers.
9843 * block.c: Sort headers.
9844 * bfin-tdep.c: Sort headers.
9845 * bfin-linux-tdep.c: Sort headers.
9846 * bfd-target.c: Sort headers.
9847 * bcache.c: Sort headers.
9848 * ax-general.c: Sort headers.
9849 * ax-gdb.h: Sort headers.
9850 * ax-gdb.c: Sort headers.
9851 * avr-tdep.c: Sort headers.
9852 * auxv.c: Sort headers.
9853 * auto-load.c: Sort headers.
9854 * arm-wince-tdep.c: Sort headers.
9855 * arm-tdep.c: Sort headers.
9856 * arm-symbian-tdep.c: Sort headers.
9857 * arm-pikeos-tdep.c: Sort headers.
9858 * arm-obsd-tdep.c: Sort headers.
9859 * arm-nbsd-tdep.c: Sort headers.
9860 * arm-nbsd-nat.c: Sort headers.
9861 * arm-linux-tdep.c: Sort headers.
9862 * arm-linux-nat.c: Sort headers.
9863 * arm-fbsd-tdep.c: Sort headers.
9864 * arm-fbsd-nat.c: Sort headers.
9865 * arm-bsd-tdep.c: Sort headers.
9866 * arch-utils.c: Sort headers.
9867 * arc-tdep.c: Sort headers.
9868 * arc-newlib-tdep.c: Sort headers.
9869 * annotate.h: Sort headers.
9870 * annotate.c: Sort headers.
9871 * amd64-windows-tdep.c: Sort headers.
9872 * amd64-windows-nat.c: Sort headers.
9873 * amd64-tdep.c: Sort headers.
9874 * amd64-sol2-tdep.c: Sort headers.
9875 * amd64-obsd-tdep.c: Sort headers.
9876 * amd64-obsd-nat.c: Sort headers.
9877 * amd64-nbsd-tdep.c: Sort headers.
9878 * amd64-nbsd-nat.c: Sort headers.
9879 * amd64-nat.c: Sort headers.
9880 * amd64-linux-tdep.c: Sort headers.
9881 * amd64-linux-nat.c: Sort headers.
9882 * amd64-fbsd-tdep.c: Sort headers.
9883 * amd64-fbsd-nat.c: Sort headers.
9884 * amd64-dicos-tdep.c: Sort headers.
9885 * amd64-darwin-tdep.c: Sort headers.
9886 * amd64-bsd-nat.c: Sort headers.
9887 * alpha-tdep.c: Sort headers.
9888 * alpha-obsd-tdep.c: Sort headers.
9889 * alpha-nbsd-tdep.c: Sort headers.
9890 * alpha-mdebug-tdep.c: Sort headers.
9891 * alpha-linux-tdep.c: Sort headers.
9892 * alpha-linux-nat.c: Sort headers.
9893 * alpha-bsd-tdep.c: Sort headers.
9894 * alpha-bsd-nat.c: Sort headers.
9895 * aix-thread.c: Sort headers.
9896 * agent.c: Sort headers.
9897 * addrmap.c: Sort headers.
9898 * ada-varobj.c: Sort headers.
9899 * ada-valprint.c: Sort headers.
9900 * ada-typeprint.c: Sort headers.
9901 * ada-tasks.c: Sort headers.
9902 * ada-lang.c: Sort headers.
9903 * aarch64-tdep.c: Sort headers.
9904 * aarch64-ravenscar-thread.c: Sort headers.
9905 * aarch64-newlib-tdep.c: Sort headers.
9906 * aarch64-linux-tdep.c: Sort headers.
9907 * aarch64-linux-nat.c: Sort headers.
9908 * aarch64-fbsd-tdep.c: Sort headers.
9909 * aarch64-fbsd-nat.c: Sort headers.
9910 * aarch32-linux-nat.c: Sort headers.
9911
9912 2019-04-04 Tom Tromey <tom@tromey.com>
9913
9914 * varobj.c (varobj_create): Update.
9915 * rust-exp.y (struct rust_parser) <update_innermost_block,
9916 lookup_symbol>: New methods.
9917 (rust_parser::update_innermost_block, rust_parser::lookup_symbol):
9918 Rename.
9919 (rust_parser::rust_lookup_type)
9920 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
9921 * printcmd.c (display_command, do_one_display): Update.
9922 * parser-defs.h (struct parser_state) <parser_state>: Add
9923 "tracker" parameter.
9924 (block_tracker): New member.
9925 (class innermost_block_tracker) <innermost_block_tracker>: Add
9926 "types" parameter.
9927 <reset>: Remove method.
9928 (innermost_block): Don't declare.
9929 (null_post_parser): Update.
9930 * parse.c (innermost_block): Remove global.
9931 (write_dollar_variable): Update.
9932 (parse_exp_1, parse_exp_in_context): Add "tracker" parameter.
9933 Remove "tracker_types" parameter.
9934 (parse_expression): Add "tracker" parameter.
9935 (parse_expression_for_completion): Update.
9936 (null_post_parser): Add "tracker" parameter.
9937 * p-exp.y: Update rules.
9938 * m2-exp.y: Update rules.
9939 * language.h (struct language_defn) <la_post_parser>: Add
9940 "tracker" parameter.
9941 * go-exp.y: Update rules.
9942 * f-exp.y: Update rules.
9943 * expression.h (parse_expression, parse_exp_1): Add "tracker"
9944 parameter.
9945 * d-exp.y: Update rules.
9946 * c-exp.y: Update rules.
9947 * breakpoint.c (set_breakpoint_condition): Create an
9948 innermost_block_tracker.
9949 (watch_command_1): Likewise.
9950 * ada-lang.c (resolve): Add "tracker" parameter.
9951 (resolve_subexp): Likewise.
9952 * ada-exp.y (write_var_from_sym): Update.
9953
9954 2019-04-04 Tom Tromey <tom@tromey.com>
9955
9956 * type-stack.h: New file.
9957 * type-stack.c: New file.
9958 * parser-defs.h (enum type_pieces, union type_stack_elt): Move to
9959 type-stack.h.
9960 (insert_into_type_stack, insert_type, push_type, push_type_int)
9961 (insert_type_address_space, pop_type, pop_type_int)
9962 (pop_typelist, pop_type_stack, append_type_stack)
9963 (push_type_stack, get_type_stack, push_typelist)
9964 (follow_type_instance_flags, follow_types): Don't declare.
9965 * parse.c (type_stack): Remove global.
9966 (parse_exp_in_context): Update.
9967 (insert_into_type_stack, insert_type, push_type, push_type_int)
9968 (insert_type_address_space, pop_type, pop_type_int)
9969 (pop_typelist, pop_type_stack, append_type_stack)
9970 (push_type_stack, get_type_stack, push_typelist)
9971 (follow_type_instance_flags, follow_types): Remove (moved to
9972 type-stack.c).
9973 * f-exp.y (type_stack): New global.
9974 Update rules.
9975 (push_kind_type, f_parse): Update.
9976 * d-exp.y (type_stack): New global.
9977 Update rules.
9978 (d_parse): Update.
9979 * c-exp.y (struct c_parse_state) <type_stack>: New member.
9980 Update rules.
9981 * Makefile.in (COMMON_SFILES): Add type-stack.c.
9982 (HFILES_NO_SRCDIR): Add type-stack.h.
9983
9984 2019-04-04 Tom Tromey <tom@tromey.com>
9985
9986 * rust-exp.y (rust_parser::lex_identifier, rustyylex)
9987 (rust_parser::convert_ast_to_expression, rust_parse)
9988 (rust_lex_test_completion, rust_lex_tests): Update.
9989 * parser-defs.h (struct expr_completion_state): New.
9990 (struct parser_state) <parser_state>: Add completion parameter.
9991 <mark_struct_expression, mark_completion_tag>: New methods.
9992 <parse_completion, m_completion_state>: New members.
9993 (prefixify_expression, null_post_parser): Update.
9994 (mark_struct_expression, mark_completion_tag): Don't declare.
9995 * parse.c (parse_completion, expout_last_struct)
9996 (expout_tag_completion_type, expout_completion_name): Remove
9997 globals.
9998 (parser_state::mark_struct_expression)
9999 (parser_state::mark_completion_tag): Now methods.
10000 (prefixify_expression): Add last_struct parameter.
10001 (prefixify_subexp): Likewise.
10002 (parse_exp_1): Update.
10003 (parse_exp_in_context): Add cstate parameter. Update.
10004 (parse_expression_for_completion): Create an
10005 expr_completion_state.
10006 (null_post_parser): Add "completion" parameter.
10007 * p-exp.y: Update rules.
10008 (yylex): Update.
10009 * language.h (struct language_defn) <la_post_parser>: Add
10010 "completing" parameter.
10011 * go-exp.y: Update rules.
10012 (lex_one_token): Update.
10013 * expression.h (parse_completion): Don't declare.
10014 * d-exp.y: Update rules.
10015 (lex_one_token): Update rules.
10016 * c-exp.y: Update rules.
10017 (lex_one_token): Update.
10018 * ada-lang.c (resolve): Add "parse_completion" parameter.
10019 (resolve_subexp): Likewise.
10020 (ada_resolve_function): Likewise.
10021
10022 2019-04-04 Tom Tromey <tom@tromey.com>
10023
10024 * parser-defs.h (struct parser_state) <start_arglist,
10025 end_arglist>: New methods.
10026 <arglist_len, m_funcall_chain>: New members.
10027 (arglist_len, start_arglist, end_arglist): Don't declare.
10028 * parse.c (arglist_len, funcall_chain): Remove global.
10029 (start_arglist, end_arglist): Remove functions.
10030 (parse_exp_in_context): Update.
10031 * p-exp.y: Update rules.
10032 * m2-exp.y: Update rules.
10033 * go-exp.y: Update rules.
10034 * f-exp.y: Update rules.
10035 * d-exp.y: Update rules.
10036 * c-exp.y: Update rules.
10037
10038 2019-04-04 Tom Tromey <tom@tromey.com>
10039
10040 * rust-exp.y (struct rust_parser) <lex_hex, lex_escape,
10041 lex_operator, push_back>: New methods.
10042 Update all rules.
10043 (rust_parser::lex_hex, lex_escape): Rename and update.
10044 (rust_parser::lex_string, rust_parser::lex_identifier): Update.
10045 (rust_parser::lex_operator): Rename and update.
10046 (rust_parser::lex_number, rustyylex, rustyyerror)
10047 (rust_lex_test_init, rust_lex_test_sequence)
10048 (rust_lex_test_push_back, rust_lex_tests): Update.
10049 * parser-defs.h (struct parser_state) <parser_state>: Add "input"
10050 parameter.
10051 <lexptr, prev_lexptr>: New members.
10052 (lexptr, prev_lexptr): Don't declare.
10053 * parse.c (lexptr, prev_lexptr): Remove globals.
10054 (parse_exp_in_context): Update.
10055 * p-exp.y (yylex, yyerror): Update.
10056 * m2-exp.y (parse_number, yylex, yyerror): Update.
10057 * go-exp.y (lex_one_token, yyerror): Update.
10058 * f-exp.y (match_string_literal, yylex, yyerror): Update.
10059 * d-exp.y (lex_one_token, yyerror): Update.
10060 * c-exp.y (scan_macro_expansion, finished_macro_expansion)
10061 (lex_one_token, yyerror): Update.
10062 * ada-lex.l (YY_INPUT): Update.
10063 (rewind_to_char): Update.
10064 * ada-exp.y (yyerror): Update.
10065
10066 2019-04-04 Tom Tromey <tom@tromey.com>
10067
10068 * rust-exp.y (rustyylex, rust_lex_tests): Update.
10069 * parser-defs.h (struct parser_state) <parser_state>: Add new
10070 parameter.
10071 <comma_terminates>: New member.
10072 (comma_terminates): Don't declare global.
10073 * parse.c (comma_terminates): Remove global.
10074 (parse_exp_in_context): Update.
10075 * p-exp.y (yylex): Update.
10076 * m2-exp.y (yylex): Update.
10077 * go-exp.y (lex_one_token): Update.
10078 * f-exp.y (yylex): Update.
10079 * d-exp.y (lex_one_token): Update.
10080 * c-exp.y (lex_one_token): Update.
10081 * ada-lex.l: Update.
10082
10083 2019-04-04 Tom Tromey <tom@tromey.com>
10084
10085 * rust-exp.y (struct rust_parser) <paren_depth>: New member.
10086 (rustyylex, rust_lex_test_init, rust_lex_test_one)
10087 (rust_lex_test_sequence, rust_lex_test_push_back): Update.
10088 * parser-defs.h (paren_depth): Don't declare.
10089 * parse.c (paren_depth): Remove global.
10090 (parse_exp_in_context): Update.
10091 * p-exp.y (paren_depth): New global.
10092 (pascal_parse): Initialize it.
10093 * m2-exp.y (paren_depth): New global.
10094 (m2_parse): Initialize it.
10095 * go-exp.y (paren_depth): New global.
10096 (go_parse): Initialize it.
10097 * f-exp.y (paren_depth): New global.
10098 (f_parse): Initialize it.
10099 * d-exp.y (paren_depth): New global.
10100 (d_parse): Initialize it.
10101 * c-exp.y (paren_depth): New global.
10102 (c_parse): Initialize it.
10103 * ada-lex.l (paren_depth): New global.
10104 (lexer_init): Initialize it.
10105
10106 2019-04-04 Tom Tromey <tom@tromey.com>
10107
10108 * rust-exp.y (rust_parser::crate_name, rust_parser::super_name)
10109 (rust_parser::convert_ast_to_type)
10110 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
10111 * parser-defs.h (struct parser_state) <parser_state>: Add
10112 parameters. Initialize new members.
10113 <expression_context_block, expression_context_pc>: New members.
10114 * parse.c (expression_context_block, expression_context_pc):
10115 Remove globals.
10116 (parse_exp_in_context): Update.
10117 * p-exp.y: Update all rules.
10118 (yylex): Update.
10119 * m2-exp.y: Update all rules.
10120 (yylex): Update.
10121 * go-exp.y (yylex): Update.
10122 * f-exp.y (yylex): Update.
10123 * d-exp.y: Update all rules.
10124 (yylex): Update.
10125 * c-exp.y: Update all rules.
10126 (lex_one_token, classify_name, yylex, c_parse): Update.
10127 * ada-exp.y (write_var_or_type, write_name_assoc): Update.
10128
10129 2019-04-04 Tom Tromey <tom@tromey.com>
10130
10131 * gdbarch.h, gdbarch.c: Rebuild.
10132 * gdbarch.sh (dtrace_parse_probe_argument): Change type.
10133 * stap-probe.h:
10134 (struct stap_parse_info): Replace "parser_state" with
10135 "expr_builder".
10136 * parser-defs.h (struct expr_builder): Rename from "parser_state".
10137 (parser_state): New class.
10138 * parse.c (expr_builder): Rename.
10139 (expr_builder::release): Rename.
10140 (write_exp_elt, write_exp_elt_opcode, write_exp_elt_sym)
10141 (write_exp_elt_msym, write_exp_elt_block, write_exp_elt_objfile)
10142 (write_exp_elt_longcst, write_exp_elt_floatcst)
10143 (write_exp_elt_type, write_exp_elt_intern, write_exp_string)
10144 (write_exp_string_vector, write_exp_bitstring)
10145 (write_exp_msymbol, mark_struct_expression)
10146 (write_dollar_variable)
10147 (insert_type_address_space, increase_expout_size): Replace
10148 "parser_state" with "expr_builder".
10149 * dtrace-probe.c: Replace "parser_state" with "expr_builder".
10150 * amd64-linux-tdep.c (amd64_dtrace_parse_probe_argument): Replace
10151 "parser_state" with "expr_builder".
10152
10153 2019-04-04 Tom Tromey <tom@tromey.com>
10154
10155 * rust-exp.y: Replace "parse_language" with method call.
10156 * p-exp.y:
10157 (yylex): Replace "parse_language" with method call.
10158 * m2-exp.y:
10159 (yylex): Replace "parse_language" with method call.
10160 * go-exp.y (classify_name): Replace "parse_language" with method
10161 call.
10162 * f-exp.y (yylex): Replace "parse_language" with method call.
10163 * d-exp.y (lex_one_token): Replace "parse_language" with method
10164 call.
10165 * c-exp.y:
10166 (lex_one_token, classify_name, yylex): Replace "parse_language"
10167 with method call.
10168 * ada-exp.y (find_primitive_type, type_char)
10169 (type_system_address): Replace "parse_language" with method call.
10170
10171 2019-04-04 Tom Tromey <tom@tromey.com>
10172
10173 * rust-exp.y: Replace "parse_gdbarch" with method call.
10174 * parse.c (write_dollar_variable, insert_type_address_space):
10175 Replace "parse_gdbarch" with method call.
10176 * p-exp.y (parse_type, yylex): Replace "parse_gdbarch" with method
10177 call.
10178 * objc-lang.c (end_msglist): Replace "parse_gdbarch" with method
10179 call.
10180 * m2-exp.y (parse_type, parse_m2_type, yylex): Replace
10181 "parse_gdbarch" with method call.
10182 * go-exp.y (parse_type, classify_name): Replace "parse_gdbarch"
10183 with method call.
10184 * f-exp.y (parse_type, parse_f_type, yylex): Replace
10185 "parse_gdbarch" with method call.
10186 * d-exp.y (parse_type, parse_d_type, lex_one_token): Replace
10187 "parse_gdbarch" with method call.
10188 * c-exp.y (parse_type, parse_number, classify_name): Replace
10189 "parse_gdbarch" with method call.
10190 * ada-lex.l: Replace "parse_gdbarch" with method call.
10191 * ada-exp.y (parse_type, find_primitive_type, type_char)
10192 (type_system_address): Replace "parse_gdbarch" with method call.
10193
10194 2019-04-04 Tom Tromey <tom@tromey.com>
10195
10196 * dtrace-probe.c (dtrace_probe::build_arg_exprs): Update.
10197 * stap-probe.c (stap_parse_argument): Update.
10198 * stap-probe.h (struct stap_parse_info) <stap_parse_info>: Remove
10199 initial_size parameter.
10200 * rust-exp.y (rust_lex_tests): Update.
10201 * parse.c (parser_state): Update.
10202 (parse_exp_in_context): Update.
10203 * parser-defs.h (struct parser_state) <parser_state>: Remove
10204 "initial_size" parameter.
10205
10206 2019-04-04 Tom Tromey <tom@tromey.com>
10207
10208 * parser-defs.h (increase_expout_size): Don't declare.
10209 * parse.c (increase_expout_size): Now static.
10210
10211 2019-04-04 Thomas Schwinge <thomas@codesourcery.com>
10212
10213 * gnu-nat.c (gnu_nat_target::wait): Fix
10214 target_waitstatus_to_string call.
10215
10216 2019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
10217
10218 * eval.c (evaluate_subexp_standard): Handle internal functions
10219 during Fortran function call handling.
10220
10221 2019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
10222
10223 * NEWS: Mention new internal functions.
10224 * dwarf2read.c (dwarf2_init_complex_target_type): New function.
10225 (read_base_type): Use dwarf2_init_complex_target_type.
10226 * value.c (creal_internal_fn): New function.
10227 (cimag_internal_fn): New function.
10228 (_initialize_values): Register new internal functions.
10229
10230 2019-04-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10231
10232 * infrun.c (stop_all_threads): If debug_infrun, always
10233 trace the wait status after wait_one, using
10234 target_waitstatus_to_string and target_pid_to_str.
10235 (handle_inferior_event): Replace various trace of
10236 wait status kind by a single trace.
10237 * gdb/gnu-nat.c (gnu_nat_target::wait): Replace local
10238 wait status kind image by target_waitstatus_to_string.
10239 * target/waitstatus.c (target_waitstatus_to_string): Fix
10240 obsolete comment.
10241
10242 2019-04-01 Tom Tromey <tromey@adacore.com>
10243
10244 PR symtab/23331:
10245 * dwarf2read.c (partial_die_info::read): Handle DW_AT_ranges.
10246
10247 2019-04-01 Sergio Durigan Junior <sergiodj@redhat.com>
10248 Pedro Alves <palves@redhat.com>
10249
10250 * top.c (quit_force): Call 'finalize_values'.
10251 * value.c (finalize_values): New function.
10252 * value.h (finalize_values): Declare.
10253
10254 2019-03-30 Eli Zaretskii <eliz@gnu.org>
10255
10256 * NEWS: Announce $_gdb_major and $_gdb_minor.
10257
10258 * top.c (init_gdb_version_vars): New function.
10259 (gdb_init): Call init_gdb_version_vars.
10260
10261 2019-03-29 Tom Tromey <tromey@adacore.com>
10262
10263 * printcmd.c (_initialize_printcmd): Add usage lines. Update some
10264 help text. Remove dead code.
10265
10266 2019-03-29 Keith Seitz <keiths@redhat.com>
10267
10268 From Siddhesh Poyarekar:
10269 * f-lang.h (f77_get_upperbound): Return LONGEST.
10270 (f77_get_lowerbound): Likewise.
10271 * f-typeprint.c (f_type_print_varspec_suffix): Expand
10272 UPPER_BOUND and LOWER_BOUND to LONGEST. Use plongest to format
10273 print them.
10274 (f_type_print_base): Expand UPPER_BOUND to LONGEST. Use
10275 plongest to format print it.
10276 * f-valprint.c (f77_get_lowerbound): Return LONGEST.
10277 (f77_get_upperbound): Likewise.
10278 (f77_get_dynamic_length_of_aggregate): Expand UPPER_BOUND,
10279 LOWER_BOUND to LONGEST.
10280 (f77_create_arrayprint_offset_tbl): Likewise.
10281
10282 2019-03-29 Keith Seitz <keiths@redhat.com>
10283
10284 * ada-lang.c (ada_template_to_fixed_record_type_1): Use
10285 %s/pulongest for TYPE_LENGTH instead of %d in format
10286 strings.
10287 * ada-typerint.c (ada_print_type): Likewise.
10288 * amd64-windows-tdep.c (amd64_windows_store_arg_in_reg): Likewise.
10289 * compile/compile-c-support.c (generate_register_struct): Likewise.
10290 * gdbtypes.c (recursive_dump_type): Likewise.
10291 * gdbtypes.h (struct type) <length>: Change type to ULONGEST.
10292 * m2-typeprint.c (m2_array): Use %s/pulongest for TYPE_LENGTH
10293 instead of %d in format strings.
10294 * riscv-tdep.c (riscv_type_alignment): Cast second argument
10295 to std::min to ULONGEST.
10296 * symmisc.c (print_symbol): Use %s/pulongest for TYPE_LENGTH
10297 instead of %d in format strings.
10298 * tracepoint.c (info_scope_command): Likewise.
10299 * typeprint.c (print_offset_data::update)
10300 (print_offset_data::finish): Likewise.
10301 * xtensa-tdep.c (xtensa_store_return_value)
10302 (xtensa_push_dummy_call): Likewise.
10303
10304 2019-03-28 Jon Turney <jon.turney@dronecode.org.uk>
10305
10306 * windows-nat.c (display_selector): Fixed format specifications
10307 for 64-bit Cygwin.
10308
10309 2019-03-28 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10310
10311 * infrun.c (follow_exec): Call target_terminal::ours_for_output.
10312
10313 2019-03-28 Sandra Loosemore <sandra@codesourcery.com>
10314
10315 * nios2-tdep.h (struct gdbarch_tdep): Add is_kernel_helper.
10316 * nios2-tdep.c (nios2_get_next_pc): Skip over kernel helpers.
10317 * nios2-linux-tdep.c (nios2_linux_is_kernel_helper): New.
10318 (nios2_linux_init_abi): Install it.
10319
10320 2019-03-28 Alan Hayward <alan.hayward@arm.com>
10321
10322 * aarch64-tdep.c (aarch64_vnv_type): Use vector types.
10323
10324 2019-03-28 Alan Hayward <alan.hayward@arm.com>
10325
10326 * features/aarch64-sve.c (create_feature_aarch64_sve): Add q view.
10327
10328 2019-03-24 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10329 Tom Tromey <tromey@adacore.com>
10330
10331 * minsyms.c (minimal_symbol_upper_bound): Fix buffer overflow.
10332
10333 2019-03-26 Joel Brobecker <brobecker@adacore.com>
10334
10335 * gdb-gdb.py.in (StructMainTypePrettyPrinter.bound_img): New method.
10336 (StructMainTypePrettyPrinter.bounds_img): Use new "bound_img"
10337 method to compute the bounds of range types. Also print "[evaluated]"
10338 if the bounds' values come from a dynamic evaluation.
10339
10340 2019-03-26 Andrew Burgess <andrew.burgess@embecosm.com>
10341
10342 * cp-valprint.c (cp_print_value_fields): Don't print trailing
10343 whitespace when pretty printing is on.
10344
10345 2019-03-26 Alan Hayward <alan.hayward@arm.com>
10346
10347 * ppc-linux-nat.c: Add include.
10348
10349 2019-03-26 Alan Hayward <alan.hayward@arm.com>
10350
10351 * NEWS: Mention AArch64 Pointer Authentication.
10352
10353 2019-03-26 Alan Hayward <alan.hayward@arm.com>
10354
10355 * arm-linux-nat.c: Add include.
10356
10357 2019-03-25 Simon Marchi <simon.marchi@polymtl.ca>
10358
10359 * source-cache.c (source_cache::get_source_lines): Re-read
10360 fullname after calling open_source_file.
10361
10362 2019-03-25 John Baldwin <jhb@FreeBSD.org>
10363
10364 * NEWS: Mention TLS support for FreeBSD.
10365
10366 2019-03-25 Tom Tromey <tromey@adacore.com>
10367
10368 * minsyms.c (BUNCH_SIZE): Update comment.
10369 (~minimal_symbol_reader): Remove old comment.
10370 (compact_minimal_symbols): Update comment.
10371 (minimal_symbol_reader::install): Remove old comment. Update
10372 other comments.
10373
10374 2019-03-25 Alan Hayward <alan.hayward@arm.com>
10375
10376 * s390-linux-nat.c: Add include.
10377
10378 2019-03-25 Alan Hayward <alan.hayward@arm.com>
10379
10380 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
10381 Call linux_get_hwcap.
10382 * aarch64-linux-tdep.c (aarch64_linux_core_read_description):
10383 Likewise.
10384 (aarch64_linux_get_hwcap): Remove function.
10385 * aarch64-linux-tdep.h (aarch64_linux_get_hwcap): Remove
10386 declaration.
10387 * arm-linux-nat.c (arm_linux_nat_target::read_description):Call
10388 linux_get_hwcap.
10389 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
10390 * linux-tdep.c (linux_get_hwcap): Add function.
10391 (linux_get_hwcap2): Likewise.
10392 * linux-tdep.h (linux_get_hwcap): Add declaration.
10393 (linux_get_hwcap2): Likewise.
10394 * ppc-linux-nat.c (ppc_linux_get_hwcap): Remove function.
10395 (ppc_linux_get_hwcap2): Likewise.
10396 (ppc_linux_nat_target::region_ok_for_hw_watchpoint): Call
10397 linux_get_hwcap.
10398 (ppc_linux_nat_target::insert_watchpoint): Likewise.
10399 (ppc_linux_nat_target::watchpoint_addr_within_range): Likewise.
10400 (ppc_linux_nat_target::read_description): Likewise.
10401 * ppc-linux-tdep.c (ppc_linux_core_read_description): Likewise.
10402 * s390-linux-nat.c: Likewise.
10403 * s390-linux-tdep.c (s390_core_read_description): Likewise.
10404
10405 2019-03-24 Tom Tromey <tom@tromey.com>
10406
10407 * ada-lang.c (standard_lookup): Simplify initialization.
10408 (ada_lookup_symbol_nonlocal): Simplify return.
10409 * solib-spu.c (spu_lookup_lib_symbol): Simplify return.
10410 * solib-darwin.c (darwin_lookup_lib_symbol): Simplify return.
10411 * solib-svr4.c (elf_lookup_lib_symbol): Simplify return.
10412 * rust-lang.c (rust_lookup_symbol_nonlocal): Simplify
10413 initialization.
10414 * solib.c (solib_global_lookup): Simplify.
10415 * symtab.c (null_block_symbol): Remove.
10416 (symbol_cache_lookup): Simplify returns.
10417 (lookup_language_this): Simplify returns.
10418 (lookup_symbol_aux): Simplify return.
10419 (lookup_local_symbol): Simplify returns.
10420 (lookup_global_symbol_from_objfile): Simplify return.
10421 (lookup_symbol_in_objfile_symtabs)
10422 (lookup_symbol_in_objfile_from_linkage_name): Simplify return.
10423 (lookup_symbol_via_quick_fns, lookup_symbol_in_static_block)
10424 (lookup_static_symbol, lookup_global_symbol): Simplify return.
10425 * cp-namespace.c (cp_lookup_bare_symbol)
10426 (cp_search_static_and_baseclasses, cp_lookup_symbol_via_imports)
10427 (cp_lookup_symbol_via_all_imports, cp_lookup_nested_symbol_1)
10428 (cp_lookup_nested_symbol): Don't use null_block_symbol.
10429 (cp_lookup_symbol_via_imports): Simplify initialization.
10430 (find_symbol_in_baseclass): Likewise.
10431 * symtab.h (null_block_symbol): Remove.
10432 * d-namespace.c (d_lookup_symbol): Don't use null_block_symbol.
10433 (d_lookup_nested_symbol, d_lookup_symbol_imports)
10434 (d_lookup_symbol_module): Likewise.
10435 (find_symbol_in_baseclass): Simplify initialization.
10436
10437 2019-03-24 Tom Tromey <tom@tromey.com>
10438
10439 * expression.h: Don't include symtab.h.
10440 (struct block): Forward declare.
10441
10442 2019-03-24 Tom Tromey <tom@tromey.com>
10443
10444 * c-exp.y (typebase): Remove casts.
10445 * gdbtypes.c (lookup_unsigned_typename, )
10446 (lookup_signed_typename): Remove cast.
10447 * eval.c (parse_to_comma_and_eval): Remove cast.
10448 * parse.c (write_dollar_variable): Remove cast.
10449 * block.h (struct block) <superblock>: Now const.
10450 * symfile-debug.c (debug_qf_map_matching_symbols): Update.
10451 * psymtab.c (psym_map_matching_symbols): Make "block" const.
10452 (map_block): Make "block" const.
10453 * symfile.h (struct quick_symbol_functions)
10454 <map_matching_symbols>: Constify block argument to "callback".
10455 * symtab.c (basic_lookup_transparent_type_quick): Make "block"
10456 const.
10457 (find_pc_sect_compunit_symtab): Make "b" const.
10458 (find_symbol_at_address): Likewise.
10459 (search_symbols): Likewise.
10460 * dwarf2read.c (dw2_lookup_symbol): Make "block" const.
10461 (dw2_debug_names_lookup_symbol): Likewise.
10462 (dw2_map_matching_symbols): Update.
10463 * p-valprint.c (pascal_val_print): Remove "block".
10464 * ada-lang.c (ada_add_global_exceptions): Make "b" const.
10465 (aux_add_nonlocal_symbols): Make "block" const.
10466 (resolve_subexp): Remove cast.
10467 * linespec.c (iterate_over_all_matching_symtabs): Make "block"
10468 const.
10469 (iterate_over_file_blocks): Likewise.
10470 * f-exp.y (%union) <bval>: Remove.
10471 * coffread.c (patch_opaque_types): Make "b" const.
10472 * spu-tdep.c (spu_catch_start): Make "block" const.
10473 * c-valprint.c (print_unpacked_pointer): Remove "block".
10474 * symmisc.c (dump_symtab_1): Make "b" const.
10475 (block_depth): Make "block" const.
10476 * d-exp.y (%union) <bval>: Remove.
10477 * cp-support.h (cp_lookup_rtti_type): Update.
10478 * cp-support.c (cp_lookup_rtti_type): Make "block" const.
10479 * psymtab.c (psym_lookup_symbol): Make "block" const.
10480 (maintenance_check_psymtabs): Make "b" const.
10481 * python/py-framefilter.c (extract_sym): Make "sym_block" const.
10482 (enumerate_locals, enumerate_args): Update.
10483 * python/py-symtab.c (stpy_global_block): Make "block" const.
10484 (stpy_static_block): Likewise.
10485 * inline-frame.c (block_starting_point_at): Make "new_block"
10486 const.
10487 * block.c (find_block_in_blockvector): Make return type const.
10488 (blockvector_for_pc_sect): Make "b" const.
10489 (find_block_in_blockvector): Make "b" const.
10490
10491 2019-03-23 Tom Tromey <tom@tromey.com>
10492
10493 * varobj.c (varobj_create): Update.
10494 * symfile.c (clear_symtab_users): Don't reset innermost_block.
10495 * printcmd.c (display_command, do_one_display): Don't reset
10496 innermost_block.
10497 * parser-defs.h (enum innermost_block_tracker_type): Move to
10498 expression.h.
10499 (innermost_block): Update comment.
10500 * parse.c (parse_exp_1): Add tracker_types parameter.
10501 (parse_exp_in_context): Rename from parse_exp_in_context_1. Add
10502 tracker_types parameter. Reset innermost_block.
10503 (parse_exp_in_context): Remove.
10504 (parse_expression_for_completion): Update.
10505 * objfiles.c (~objfile): Don't reset expression_context_block or
10506 innermost_block.
10507 * expression.h (enum innermost_block_tracker_type): Move from
10508 parser-defs.h.
10509 (parse_exp_1): Add tracker_types parameter.
10510 * breakpoint.c (set_breakpoint_condition, watch_command_1): Don't
10511 reset innermost_block.
10512
10513 2019-03-23 Tom Tromey <tom@tromey.com>
10514
10515 * objfiles.h: Include bcache.h.
10516
10517 2019-03-23 Tom Tromey <tom@tromey.com>
10518
10519 * linespec.c (get_current_search_block): Use
10520 scoped_restore_current_language.
10521 * symmisc.c (dump_symtab): Use scoped_restore_current_language.
10522
10523 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10524 Jiong Wang <jiong.wang@arm.com>
10525
10526 * aarch64-linux-tdep.c
10527 (aarch64_linux_iterate_over_regset_sections): Check for pauth
10528 section.
10529 * aarch64-linux-tdep.h (AARCH64_LINUX_SIZEOF_PAUTH): New define.
10530
10531 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10532 Jiong Wang <jiong.wang@arm.com>
10533
10534 * aarch64-tdep.c (aarch64_analyze_prologue): Check for pauth
10535 instructions.
10536 (aarch64_analyze_prologue_test): Add PACIASP test.
10537 (aarch64_prologue_prev_register): Unmask PC value.
10538
10539 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10540 Jiong Wang <jiong.wang@arm.com>
10541
10542 * aarch64-tdep.c (aarch64_frame_unmask_address): New function.
10543 (aarch64_dwarf2_prev_register): Unmask PC value.
10544 (aarch64_dwarf2_frame_init_reg): Init pauth registers.
10545 (aarch64_execute_dwarf_cfa_vendor_op): Check for
10546 DW_CFA_AARCH64_negate_ra_state.
10547 (aarch64_gdbarch_init): Add aarch64_execute_dwarf_cfa_vendor_op.
10548
10549 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10550 Jiong Wang <jiong.wang@arm.com>
10551
10552 * aarch64-tdep.c (aarch64_dwarf_reg_to_regnum): Check for pauth
10553 registers.
10554 (aarch64_pseudo_register_name): Likewise.
10555 (aarch64_pseudo_register_type): Likewise.
10556 (aarch64_pseudo_register_reggroup_p): Likewise.
10557 (aarch64_gdbarch_init): Add pauth registers.
10558 * aarch64-tdep.h (AARCH64_DWARF_PAUTH_RA_STATE): New define.
10559 (AARCH64_DWARF_PAUTH_DMASK): Likewise.
10560 (AARCH64_DWARF_PAUTH_CMASK): Likewise.
10561 (struct gdbarch_tdep): Add regnum for ra_state.
10562
10563 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10564 Jiong Wang <jiong.wang@arm.com>
10565
10566 * arch/aarch64.h (AARCH64_PAUTH_REGS_SIZE): New define.
10567
10568 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10569 Jiong Wang <jiong.wang@arm.com>
10570
10571 * aarch64-linux-nat.c (fetch_pauth_masks_from_thread): New
10572 function.
10573 (aarch64_linux_nat_target::fetch_registers): Read pauth registers.
10574 * aarch64-tdep.c (aarch64_cannot_store_register): New function.
10575 (aarch64_gdbarch_init): Add puth registers.
10576 * aarch64-tdep.h (struct gdbarch_tdep): Add pauth features.
10577 * arch/aarch64.h (AARCH64_PAUTH_DMASK_REGNUM): New define.
10578 (AARCH64_PAUTH_CMASK_REGNUM): Likewise.
10579
10580 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10581 Jiong Wang <jiong.wang@arm.com>
10582
10583 * aarch64-linux-nat.c
10584 (aarch64_linux_nat_target::read_description): Read PACA hwcap.
10585 * aarch64-linux-tdep.c
10586 (aarch64_linux_core_read_description): Likewise.
10587 (aarch64_linux_get_hwcap): New function.
10588 * aarch64-linux-tdep.h (AARCH64_HWCAP_PACA): New define.
10589 (aarch64_linux_get_hwcap): New declaration.
10590
10591 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10592 Jiong Wang <jiong.wang@arm.com>
10593
10594 * aarch64-linux-nat.c
10595 (aarch64_linux_nat_target::read_description): Add pauth param.
10596 * aarch64-linux-tdep.c
10597 (aarch64_linux_core_read_description): Likewise.
10598 * aarch64-tdep.c (struct target_desc): Add in pauth.
10599 (aarch64_read_description): Add pauth param.
10600 (aarch64_gdbarch_init): Likewise.
10601 * aarch64-tdep.h (aarch64_read_description): Likewise.
10602 * arch/aarch64.c (aarch64_create_target_description): Likewise.
10603 * arch/aarch64.h (aarch64_create_target_description): Likewise.
10604 * features/Makefile: Add new files.
10605 * features/aarch64-pauth.c: New file.
10606 * features/aarch64-pauth.xml: New file.
10607
10608 2019-03-20 Tom Tromey <tromey@adacore.com>
10609
10610 * infrun.c (handle_inferior_event): Rename from
10611 handle_inferior_event_1. Create a scoped_value_mark.
10612 (handle_inferior_event): Remove.
10613
10614 2019-03-19 Tom Tromey <tromey@adacore.com>
10615
10616 * mi/mi-interp.c (mi_on_normal_stop_1): Only show displays once.
10617 * infrun.h (print_stop_event): Add "displays" parameter.
10618 * infrun.c (print_stop_event): Add "displays" parameter.
10619
10620 2019-03-19 Pedro Alves <palves@redhat.com>
10621
10622 * tui/tui-out.c (tui_ui_out::do_field_string): Simplify.
10623 (tui_ui_out::do_text): Add comments. Reset M_LINE to 0 instead of
10624 to -1. Fix TABs vs spaces.
10625 (tui_ui_out::tui_ui_out): Don't initialize fields here.
10626 * tui/tui-out.h (tui_ui_out) Add intro comments.
10627 <m_line, m_start_of_line>: In-class initialize, and add describing
10628 comment.
10629
10630 2019-03-18 Alan Hayward <alan.hayward@arm.com>
10631
10632 * arm-linux-nat.c (arm_linux_insert_hw_breakpoint1): Fix
10633 variable names.
10634 (arm_linux_remove_hw_breakpoint1): Use a gdb::function_view.
10635
10636 2019-03-18 Pedro Alves <palves@redhat.com>
10637 Eli Zaretskii <eliz@gnu.org>
10638
10639 * tui/tui-out.c (tui_ui_out::tui_ui_out): Fix initialization of
10640 m_line and m_start_of_line.
10641
10642 2019-03-18 Eli Zaretskii <eliz@gnu.org>
10643
10644 * tui/tui-io.c (gdb_wgetch): Don't echo CR.
10645 (tui_getc): When gdb_wgetch returns a CR, behave the same as when
10646 it returns a newline. This fixes a regression in TU mode, whereby
10647 the next line is output on the same screen line as the user input.
10648
10649 2019-03-18 Tom Tromey <tromey@adacore.com>
10650
10651 * minsyms.c (minimal_symbol_reader::install): Remove call to
10652 obstack_blank.
10653
10654 2019-03-18 Pedro Alves <palves@redhat.com>
10655
10656 * tui/tui-io.c (reverse_mode_p, reverse_save_bg, reverse_save_fg):
10657 New globals.
10658 (apply_style): New, factored out from ...
10659 (apply_ansi_escape): ... this. Handle reverse video mode.
10660 (tui_set_reverse_mode): New function.
10661 * tui/tui-io.h (tui_set_reverse_mode): New declaration.
10662 * tui/tui-winsource.c (tui_show_source_line): Use
10663 tui_set_reverse_mode instead of setting A_STANDOUT.
10664 * ui-style.h (struct ui_file_style) <set_reverse, set_fg, set_bg>:
10665 New setter methods.
10666
10667 2019-03-18 Hannes Domani <ssbssa@yahoo.de>
10668
10669 * tui/tui-source.c (copy_source_line): Fix handling of 'column'.
10670 Handle tabs.
10671
10672 2019-03-18 Tom Tromey <tromey@adacore.com>
10673
10674 * ada-lang.c (empty_array): Add "high" parameter.
10675 (ada_evaluate_subexp): Update.
10676
10677 2019-03-17 Sergei Trofimovich <siarheit@google.com>
10678
10679 * unittests/string_view-selftests.c: Define
10680 _initialize_string_view_selftests unconditionally.
10681
10682 2019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
10683
10684 PR gdb/24350
10685 * windows-nat.c (windows_make_so): Remove unused text_vma variable.
10686
10687 2019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
10688
10689 PR gdb/24351
10690 * windows-nat.c (display_selector): Fix format specifiers.
10691
10692 2019-03-17 Eli Zaretskii <eliz@gnu.org>
10693
10694 * tui/tui-winsource.c (tui_set_is_exec_point_at): Call
10695 tui_refill_source_window instead of tui_refresh_win, to update the
10696 current execution line. This fixes redisplay of the current line
10697 when stepping through the code with "next" or "step".
10698
10699 2019-03-16 Eli Zaretskii <eliz@gnu.org>
10700
10701 * source-cache.c (source_cache::get_source_lines): Call
10702 find_source_lines to initialize s->nlines. This fixes vertical
10703 scrolling of TUI source window when the DOWN arrow is pressed.
10704
10705 2019-03-16 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10706
10707 * auto-load.c (_initialize_auto_load): Fix 'This options has'.
10708 linux-thread-db.c (_initialize_thread_db): Likewise.
10709
10710 2019-03-16 Eli Zaretskii <eliz@gnu.org>
10711
10712 * tui/tui-winsource.c (tui_show_source_line): Revert "Use
10713 wclrtoeol in tui_show_source_line". This reverts changes made in
10714 commit 4a3045920bbe4e50a0f4920b0fdc4e88ef23015c.
10715
10716 2019-03-15 Tom Tromey <tom@tromey.com>
10717
10718 * symtab.h (struct minimal_symbol): Derive from
10719 general_symbol_info.
10720 (MSYMBOL_VALUE, MSYMBOL_VALUE_RAW_ADDRESS)
10721 (MSYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_BYTES)
10722 (MSYMBOL_BLOCK_VALUE, MSYMBOL_VALUE_CHAIN, MSYMBOL_LANGUAGE)
10723 (MSYMBOL_SECTION, MSYMBOL_OBJ_SECTION, MSYMBOL_NATURAL_NAME)
10724 (MSYMBOL_LINKAGE_NAME, MSYMBOL_DEMANGLED_NAME)
10725 (MSYMBOL_SEARCH_NAME): Update.
10726 (MSYMBOL_SET_LANGUAGE, MSYMBOL_SET_NAMES): Remove.
10727 * solib.c (gdb_bfd_lookup_symbol_from_symtab): Don't use memset.
10728 * minsyms.c (minimal_symbol_reader::record_full): Update.
10729
10730 2019-03-15 Tom Tromey <tom@tromey.com>
10731
10732 * minsyms.c (minimal_symbol_reader::install): Use memcpy.
10733
10734 2019-03-15 Tom Tromey <tom@tromey.com>
10735
10736 * objfiles.h (struct objfile_per_bfd_storage) <msymbols>: Now a
10737 unique_xmalloc_ptr.
10738 (objfile::msymbols_range::begin, objfile::msymbols_range::end):
10739 Update.
10740 * minsyms.c (lookup_minimal_symbol_by_pc_section)
10741 (build_minimal_symbol_hash_tables)
10742 (minimal_symbol_reader::install): Update.
10743
10744 2019-03-15 Tom Tromey <tom@tromey.com>
10745
10746 * symtab.c (create_demangled_names_hash): Update.
10747 (symbol_set_names): Update.
10748 * objfiles.h (struct objfile_per_bfd_storage)
10749 <demangled_names_hash>: Now an htab_up.
10750 * objfiles.c (objfile_per_bfd_storage): Simplify.
10751
10752 2019-03-15 Tom Tromey <tom@tromey.com>
10753
10754 * objfiles.h (struct objfile_per_bfd_storage): Declare
10755 destructor.
10756 * objfiles.c (objfile_per_bfd_storage::~objfile_per_bfd_storage):
10757 New.
10758 (get_objfile_bfd_data): Use new. Don't initialize
10759 language_of_main.
10760 (free_objfile_per_bfd_storage): Remove.
10761 (objfile_bfd_data_free, objfile::~objfile): Use delete.
10762
10763 2019-03-15 Tom Tromey <tom@tromey.com>
10764
10765 * symfile.c (reread_symbols): Update.
10766 * objfiles.c (objfile::objfile): Update.
10767 * minsyms.h (terminate_minimal_symbol_table): Don't declare.
10768 * minsyms.c (lookup_minimal_symbol_by_pc_section): Update
10769 comment.
10770 (minimal_symbol_reader::install): Update.
10771 (terminate_minimal_symbol_table): Remove.
10772 * jit.c (jit_object_close_impl): Update.
10773
10774 2019-03-15 Tom Tromey <tom@tromey.com>
10775
10776 * minsyms.c (minimal_symbol_reader::record_full): Remove some
10777 initializations.
10778
10779 2019-03-15 Tom Tromey <tom@tromey.com>
10780
10781 * objfiles.h (struct objfile_per_bfd_storage)
10782 <demangled_hash_languages>: Now a bitset.
10783 * minsyms.c (add_minsym_to_demangled_hash_table): Update.
10784 (lookup_minimal_symbol): Update.
10785
10786 2019-03-15 Tom Tromey <tom@tromey.com>
10787
10788 * minsyms.h (class minimal_symbol_reader) <record_with_info>:
10789 Don't return the symbol.
10790 * coffread.c (record_minimal_symbol): Use record_full.
10791
10792 2019-03-14 Eli Zaretskii <eliz@gnu.org>
10793
10794 The MS-Windows port of ncurses fails to switch to a color pair if
10795 one or both of the colors are the implicit default colors. This
10796 change records the default colors when TUI is initialized, and
10797 then specifies them explicitly when a color pair uses the default
10798 colors. This allows color styling in TUI mode on MS-Windows.
10799
10800 * tui/tui-io.c [__MINGW32__]: Include windows.h. Declare
10801 ncurses_norm_attr.
10802 (tui_initialize_io) [__MINGW32__]: Record the default terminal
10803 colors in ncurses_norm_attr.
10804 (apply_ansi_escape) [__MINGW32__]: If a color in a color pair is
10805 "none", replace it with the default color recorded in
10806 ncurses_norm_attr.
10807
10808 2019-03-14 Tom Tromey <tromey@adacore.com>
10809
10810 * source-cache.h (class source_cache) <get_source_lines>: Return
10811 std::string.
10812 * source-cache.c (source_cache::extract_lines): Handle case where
10813 first_pos==npos. Return std::string.
10814 (source_cache::get_source_lines): Update.
10815
10816 2019-03-14 Tom Tromey <tromey@adacore.com>
10817
10818 * NEWS: Add item for "style sources" commands.
10819 * source-cache.c (source_cache::get_source_lines): Check
10820 source_styling.
10821 * cli/cli-style.c (source_styling): New global.
10822 (_initialize_cli_style): Add "style sources" commands.
10823 (show_style_sources): New function.
10824 * cli/cli-style.h (source_styling): Declare.
10825
10826 2019-03-14 Pedro Alves <palves@redhat.com>
10827 Tom Tromey <tromey@adacore.com>
10828
10829 * tui/tui-winsource.h (tui_refill_source_window): Declare.
10830 * tui/tui-winsource.c (tui_refill_source_window): New function,
10831 from...
10832 (tui_horizontal_source_scroll): ... here. Move some logic.
10833 * cli/cli-style.c (set_style_enabled): Notify new observable.
10834 * tui/tui-hooks.c (tui_redisplay_source): New function.
10835 (tui_attach_detach_observers): Attach or detach
10836 tui_redisplay_source.
10837 * observable.h (source_styling_changed): New observable.
10838 * observable.c: Define source_styling_changed observable.
10839
10840 2019-03-13 Tom Tromey <tromey@adacore.com>
10841
10842 * i386-gnu-nat.c (i386_gnu_nat_target::fetch_registers)
10843 (i386_gnu_nat_target::store_registers): Update.
10844 * target-debug.h (target_debug_print_std_string): New macro.
10845 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
10846 * windows-tdep.c (display_one_tib): Update.
10847 * tui/tui-stack.c (tui_make_status_line): Update.
10848 * top.c (print_inferior_quit_action): Update.
10849 * thread.c (thr_try_catch_cmd): Update.
10850 (add_thread_with_info): Update.
10851 (thread_target_id_str): Update.
10852 (thr_try_catch_cmd): Update.
10853 (thread_command): Update.
10854 (thread_find_command): Update.
10855 * record-btrace.c (record_btrace_target::info_record)
10856 (record_btrace_resume_thread, record_btrace_target::resume)
10857 (record_btrace_cancel_resume, record_btrace_step_thread)
10858 (record_btrace_target::wait, record_btrace_target::wait)
10859 (record_btrace_target::wait, record_btrace_target::stop): Update.
10860 * progspace.c (print_program_space): Update.
10861 * process-stratum-target.c
10862 (process_stratum_target::thread_address_space): Update.
10863 * linux-fork.c (linux_fork_mourn_inferior)
10864 (detach_checkpoint_command, info_checkpoints_command)
10865 (linux_fork_context): Update.
10866 (linux_fork_detach): Update.
10867 (class scoped_switch_fork_info): Update.
10868 (delete_checkpoint_command): Update.
10869 * infrun.c (follow_fork_inferior): Update.
10870 (follow_fork_inferior): Update.
10871 (proceed_after_vfork_done): Update.
10872 (handle_vfork_child_exec_or_exit): Update.
10873 (follow_exec): Update.
10874 (displaced_step_prepare_throw): Update.
10875 (displaced_step_restore): Update.
10876 (start_step_over): Update.
10877 (resume_1): Update.
10878 (clear_proceed_status_thread): Update.
10879 (proceed): Update.
10880 (print_target_wait_results): Update.
10881 (do_target_wait): Update.
10882 (context_switch): Update.
10883 (stop_all_threads): Update.
10884 (restart_threads): Update.
10885 (finish_step_over): Update.
10886 (handle_signal_stop): Update.
10887 (switch_back_to_stepped_thread): Update.
10888 (keep_going_pass_signal): Update.
10889 (print_exited_reason): Update.
10890 (normal_stop): Update.
10891 * inferior.c (inferior_pid_to_str): Change return type.
10892 (print_selected_inferior): Update.
10893 (add_inferior): Update.
10894 (detach_inferior): Update.
10895 * dummy-frame.c (fprint_dummy_frames): Update.
10896 * dcache.c (dcache_info_1): Update.
10897 * btrace.c (btrace_enable, btrace_disable, btrace_teardown)
10898 (btrace_fetch, btrace_clear): Update.
10899 * linux-tdep.c (linux_core_pid_to_str): Change return type.
10900 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Change return
10901 type.
10902 * fbsd-tdep.c (fbsd_core_pid_to_str): Change return type.
10903 * sol2-tdep.h (sol2_core_pid_to_str): Change return type.
10904 * sol2-tdep.c (sol2_core_pid_to_str): Change return type.
10905 * gdbarch.c, gdbarch.h: Rebuild.
10906 * gdbarch.sh (core_pid_to_str): Change return type.
10907 * windows-nat.c (struct windows_nat_target) <pid_to_str>: Change
10908 return type.
10909 (windows_nat_target::pid_to_str): Change return type.
10910 (windows_delete_thread): Update.
10911 (windows_nat_target::attach): Update.
10912 (windows_nat_target::files_info): Update.
10913 * target-delegates.c: Rebuild.
10914 * sol-thread.c (class sol_thread_target) <pid_to_str>: Change
10915 return type.
10916 (sol_thread_target::pid_to_str): Change return type.
10917 * remote.c (class remote_target) <pid_to_str>: Change return
10918 type.
10919 (remote_target::pid_to_str): Change return type.
10920 (extended_remote_target::attach, remote_target::remote_stop_ns)
10921 (remote_target::remote_notif_remove_queued_reply)
10922 (remote_target::push_stop_reply, remote_target::disable_btrace):
10923 Update.
10924 (extended_remote_target::attach): Update.
10925 * remote-sim.c (struct gdbsim_target) <pid_to_str>: Change return
10926 type.
10927 (gdbsim_target::pid_to_str): Change return type.
10928 * ravenscar-thread.c (struct ravenscar_thread_target)
10929 <pid_to_str>: Change return type.
10930 (ravenscar_thread_target::pid_to_str): Change return type.
10931 * procfs.c (class procfs_target) <pid_to_str>: Change return
10932 type.
10933 (procfs_target::pid_to_str): Change return type.
10934 (procfs_target::attach): Update.
10935 (procfs_target::detach): Update.
10936 (procfs_target::fetch_registers): Update.
10937 (procfs_target::store_registers): Update.
10938 (procfs_target::wait): Update.
10939 (procfs_target::files_info): Update.
10940 * obsd-nat.c (obsd_nat_target::pid_to_str): Change return type.
10941 * nto-procfs.c (struct nto_procfs_target) <pid_to_str>: Change
10942 return type.
10943 (nto_procfs_target::pid_to_str): Change return type.
10944 (nto_procfs_target::files_info, nto_procfs_target::attach): Update.
10945 * linux-thread-db.c (class thread_db_target) <pid_to_str>: Change
10946 return type.
10947 * linux-nat.c (linux_nat_target::pid_to_str): Change return type.
10948 (exit_lwp): Update.
10949 (attach_proc_task_lwp_callback, get_detach_signal)
10950 (detach_one_lwp, resume_lwp, linux_nat_target::resume)
10951 (linux_nat_target::resume, wait_lwp, stop_callback)
10952 (maybe_clear_ignore_sigint, stop_wait_callback, status_callback)
10953 (save_stop_reason, select_event_lwp, linux_nat_filter_event)
10954 (linux_nat_wait_1, resume_stopped_resumed_lwps)
10955 (linux_nat_target::wait, linux_nat_stop_lwp): Update.
10956 * inf-ptrace.c (inf_ptrace_target::pid_to_str): Change return
10957 type.
10958 (inf_ptrace_target::attach): Update.
10959 (inf_ptrace_target::files_info): Update.
10960 * go32-nat.c (struct go32_nat_target) <pid_to_str>: Change return
10961 type.
10962 (go32_nat_target::pid_to_str): Change return type.
10963 * gnu-nat.c (gnu_nat_target::pid_to_str): Change return type.
10964 (gnu_nat_target::wait): Update.
10965 (gnu_nat_target::wait): Update.
10966 (gnu_nat_target::resume): Update.
10967 * fbsd-nat.c (fbsd_nat_target::pid_to_str): Change return type.
10968 (fbsd_nat_target::wait): Update.
10969 * darwin-nat.c (darwin_nat_target::pid_to_str): Change return
10970 type.
10971 (darwin_nat_target::attach): Update.
10972 * corelow.c (class core_target) <pid_to_str>: Change return type.
10973 (core_target::pid_to_str): Change return type.
10974 * target.c (normal_pid_to_str): Change return type.
10975 (default_pid_to_str): Likewise.
10976 (target_pid_to_str): Change return type.
10977 (target_translate_tls_address): Update.
10978 (target_announce_detach): Update.
10979 * bsd-uthread.c (struct bsd_uthread_target) <pid_to_str>: Change
10980 return type.
10981 (bsd_uthread_target::pid_to_str): Change return type.
10982 * bsd-kvm.c (class bsd_kvm_target) <pid_to_str>: Change return
10983 type.
10984 (bsd_kvm_target::pid_to_str): Change return type.
10985 * aix-thread.c (class aix_thread_target) <pid_to_str>: Change
10986 return type.
10987 (aix_thread_target::pid_to_str): Change return type.
10988 * target.h (struct target_ops) <pid_to_str>: Change return type.
10989 (target_pid_to_str, normal_pid_to_str): Likewise.
10990 * obsd-nat.h (class obsd_nat_target) <pid_to_str>: Change return
10991 type.
10992 * linux-nat.h (class linux_nat_target) <pid_to_str>: Change return
10993 type.
10994 * inf-ptrace.h (struct inf_ptrace_target) <pid_to_str>: Change
10995 return type.
10996 * gnu-nat.h (struct gnu_nat_target) <pid_to_str>: Change return
10997 type.
10998 * fbsd-nat.h (class fbsd_nat_target) <pid_to_str>: Change return
10999 type.
11000 * darwin-nat.h (class darwin_nat_target) <pid_to_str>: Change
11001 return type.
11002
11003 2019-03-13 Simon Marchi <simon.marchi@ericsson.com>
11004
11005 * NEWS: Mention that the new default MI version is 3. Mention
11006 changes to the output of commands and events that deal with
11007 multi-location breakpoints.
11008 * breakpoint.c: Include "mi/mi-out.h".
11009 (print_one_breakpoint): Change output syntax if using MI version
11010 >= 3.
11011 * mi/mi-main.h (mi_cmd_fix_multi_location_breakpoint_output):
11012 New.
11013 (mi_multi_location_breakpoint_output_fixed): New.
11014 * mi/mi-main.c (fix_multi_location_breakpoint_output): New.
11015 (mi_cmd_fix_multi_location_breakpoint_output): New.
11016 (mi_multi_location_breakpoint_output_fixed): New.
11017 * mi/mi-cmds.c (mi_cmds): Register command
11018 -fix-multi-location-breakpoint-output.
11019 * mi/mi-out.c (mi_out_new): Instantiate version 3 when using
11020 interpreter "mi".
11021
11022 2019-03-13 Simon Marchi <simon.marchi@polymtl.ca>
11023
11024 * mi/mi-out.h (mi_out_new): Change parameter to const char *.
11025 * mi/mi-out.c (mi_out_new): Change parameter to const char *,
11026 instantiate mi_ui_out based on interpreter name.
11027 * mi/mi-interp.c (mi_interp::init): Use the new mi_out_new.
11028 * mi/mi-main.c (mi_load_progress): Likewise.
11029
11030 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11031
11032 * NEWS: Combine separate "New targets" sections for 8.3.
11033
11034 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11035
11036 * ppc-fbsd-tdep.c (ppcfbsd_get_thread_local_address): New.
11037 (ppcfbsd_init_abi): Install gdbarch
11038 "fetch_tls_load_module_address" and "get_thread_local_address"
11039 methods.
11040
11041 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11042
11043 * riscv-fbsd-tdep.c (riscv_fbsd_get_thread_local_address): New.
11044 (riscv_fbsd_init_abi): Install gdbarch
11045 "fetch_tls_load_module_address" and "get_thread_local_address"
11046 methods.
11047
11048 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11049
11050 * i386-fbsd-tdep.c (i386fbsd_get_thread_local_address): New.
11051 (i386fbsd_init_abi): Install gdbarch
11052 "fetch_tls_load_module_address" and "get_thread_local_address"
11053 methods.
11054
11055 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11056
11057 * amd64-fbsd-tdep.c (amd64fbsd_get_thread_local_address): New.
11058 (amd64fbsd_init_abi): Install gdbarch
11059 "fetch_tls_load_module_address" and "get_thread_local_address"
11060 methods.
11061
11062 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11063
11064 * fbsd-tdep.c (fbsd_pspace_data_handle): New variable.
11065 (struct fbsd_pspace_data): New type.
11066 (get_fbsd_pspace_data, fbsd_pspace_data_cleanup)
11067 (fbsd_read_integer_by_name, fbsd_fetch_rtld_offsets)
11068 (fbsd_get_tls_index, fbsd_get_thread_local_address): New function.
11069 (_initialize_fbsd_tdep): Initialize 'fbsd_pspace_data_handle'.
11070 * fbsd-tdep.c (fbsd_get_thread_local_address): New prototype.
11071
11072 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11073
11074 * gdbtypes.c (lookup_struct_elt): New function.
11075 (lookup_struct_elt_type): Reimplement via lookup_struct_elt.
11076 * gdbtypes.h (struct struct_elt): New type.
11077 (lookup_struct_elt): New prototype.
11078
11079 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11080
11081 * gdbtypes.c (lookup_struct_elt_type): Update comment and
11082 remove disabled code block.
11083
11084 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11085
11086 * gdbarch.sh (get_thread_local_address): New method.
11087 * gdbarch.h, gdbarch.c: Regenerate.
11088 * target.c (target_translate_tls_address): Use
11089 gdbarch_get_thread_local_address if present instead of
11090 target::get_thread_local_address.
11091
11092 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11093
11094 * target.h (target::get_thread_local_address): Update comment.
11095
11096 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11097
11098 * solib-svr4.c (svr4_fetch_objfile_link_map): Look for
11099 objfile->separate_debug_objfile_backlink if not NULL.
11100
11101 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11102
11103 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
11104 tdep->fsbase_regnum instead of constants for fs_base and gs_base.
11105 (amd64bsd_store_inferior_registers): Likewise.
11106 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
11107 Enable segment base registers.
11108 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers): Use
11109 PT_GETFSBASE and PT_GETGSBASE.
11110 (i386bsd_store_inferior_registers): Use PT_SETFSBASE and
11111 PT_SETGSBASE.
11112 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Enable
11113 segment base registers.
11114 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
11115
11116 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11117
11118 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
11119 Update calls to i386_target_description to add 'segments'
11120 parameter.
11121 * amd64-tdep.c (amd64_init_abi): Set tdep->fsbase_regnum. Don't
11122 add segment base registers.
11123 * arch/i386.c (i386_create_target_description): Add 'segments'
11124 parameter to enable segment base registers.
11125 * arch/i386.h (i386_create_target_description): Likewise.
11126 * features/i386/32bit-segments.xml: New file.
11127 * features/i386/32bit-segments.c: Generate.
11128 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Update
11129 call to i386_target_description to add 'segments' parameter.
11130 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
11131 * i386-go32-tdep.c (i386_go32_init_abi): Likewise.
11132 * i386-linux-tdep.c (i386_linux_read_description): Likewise.
11133 * i386-tdep.c (i386_validate_tdesc_p): Add segment base registers
11134 if feature is present.
11135 (i386_gdbarch_init): Pass I386_NUM_REGS to set_gdbarch_num_regs.
11136 Add 'segments' parameter to call to i386_target_description.
11137 (i386_target_description): Add 'segments' parameter to enable
11138 segment base registers.
11139 (_initialize_i386_tdep) [GDB_SELF_TEST]: Add 'segments' parameter
11140 to call to i386_target_description.
11141 * i386-tdep.h (struct gdbarch_tdep): Add 'fsbase_regnum'.
11142 (enum i386_regnum): Add I386_FSBASE_REGNUM and I386_GSBASE_REGNUM.
11143 Define I386_NUM_REGS.
11144 (i386_target_description): Add 'segments' parameter to enable
11145 segment base registers.
11146
11147 2019-03-12 Eli Zaretskii <eliz@gnu.org>
11148
11149 PR/24325
11150 * source-cache.c: #undef open and close, to avoid unresolved
11151 externals during linking.
11152
11153 2019-03-12 Tom Tromey <tromey@adacore.com>
11154
11155 * remote.c (magic_null_ptid, not_sent_ptid, any_thread_ptid): Now
11156 const. Add initializers.
11157 (_initialize_remote): Don't initialize ptid globals.
11158
11159 2019-03-12 Pedro Alves <palves@redhat.com>
11160
11161 * yy-remap.h [TEST_CPNAMES] (YYFPRINTF): Don't define.
11162
11163 2019-03-12 Pedro Alves <palves@redhat.com>
11164
11165 * cp-name-parser.y (main): Remove unused 'len' variable.
11166
11167 2019-03-12 Tom Tromey <tromey@adacore.com>
11168
11169 * common/ptid.c (null_ptid, minus_one_ptid): Now const.
11170 * common/ptid.h (null_ptid, minus_one_ptid): Now const.
11171
11172 2019-03-12 Tom Tromey <tromey@adacore.com>
11173
11174 * linux-nat.c (iterate_over_lwps): Update.
11175 (stop_callback): Remove parameter.
11176 (stop_wait_callback, detach_callback, resume_set_callback)
11177 (select_singlestep_lwp_callback, set_ignore_sigint)
11178 (status_callback, resumed_callback, resume_clear_callback)
11179 (kill_callback, kill_wait_callback, linux_nat_stop_lwp): Remove
11180 data parameter.
11181 (linux_nat_target::detach, linux_nat_target::resume)
11182 (linux_stop_and_wait_all_lwps, select_event_lwp)
11183 (linux_nat_filter_event, linux_nat_wait_1)
11184 (linux_nat_target::kill, linux_nat_target::stop)
11185 (linux_nat_target::stop): Update.
11186 (linux_nat_resume_callback): Change type.
11187 (resume_stopped_resumed_lwps, count_events_callback)
11188 (select_event_lwp_callback): Likewise.
11189 (linux_stop_lwp, linux_nat_stop_lwp): Update.
11190 * arm-linux-nat.c (struct update_registers_data): Remove.
11191 (update_registers_callback): Change type.
11192 (arm_linux_insert_hw_breakpoint1): Update.
11193 * nat/x86-linux-dregs.c (update_debug_registers_callback): Remove
11194 parameter.
11195 (x86_linux_dr_set_addr): Update.
11196 (x86_linux_dr_set_control): Update.
11197 * nat/linux-nat.h (iterate_over_lwps_ftype): Remove parameter.
11198 (iterate_over_lwps): Use gdb::function_view.
11199 * nat/aarch64-linux-hw-point.c (struct
11200 aarch64_dr_update_callback_param): Remove.
11201 (debug_reg_change_callback): Change type.
11202 (aarch64_notify_debug_reg_change): Update.
11203 * s390-linux-nat.c (s390_refresh_per_info): Update.
11204
11205 2019-03-11 Tom Tromey <tromey@adacore.com>
11206
11207 * dwarf2read.c (dwarf2_find_containing_comp_unit): Remove
11208 redundant assignment to "this_cu".
11209
11210 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11211
11212 * gdbtypes.c (rank_one_type): Remove unnecessary cases from switch.
11213
11214 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11215
11216 * gdbtypes.c (rank_one_type_parm_set): New function extracted
11217 from...
11218 (rank_one_type): ... this.
11219
11220 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11221
11222 * gdbtypes.c (rank_one_type_parm_struct): New function extracted
11223 from...
11224 (rank_one_type): ... this.
11225
11226 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11227
11228 * gdbtypes.c (rank_one_type_parm_complex): New function extracted
11229 from...
11230 (rank_one_type): ... this.
11231
11232 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11233
11234 * gdbtypes.c (rank_one_type_parm_float): New function extracted
11235 from...
11236 (rank_one_type): ... this.
11237
11238 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11239
11240 * gdbtypes.c (rank_one_type_parm_bool): New function extracted
11241 from...
11242 (rank_one_type): ... this.
11243
11244 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11245
11246 * gdbtypes.c (rank_one_type_parm_range): New function extracted
11247 from...
11248 (rank_one_type): ... this.
11249
11250 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11251
11252 * gdbtypes.c (rank_one_type_parm_char): New function extracted
11253 from...
11254 (rank_one_type): ... this.
11255
11256 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11257
11258 * gdbtypes.c (rank_one_type_parm_enum): New function extracted
11259 from...
11260 (rank_one_type): ... this.
11261
11262 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11263
11264 * gdbtypes.c (rank_one_type_parm_int): New function extracted
11265 from...
11266 (rank_one_type): ... this.
11267
11268 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11269
11270 * gdbtypes.c (rank_one_type_parm_func): New function extracted
11271 from...
11272 (rank_one_type): ... this.
11273
11274 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11275
11276 * gdbtypes.c (rank_one_type_parm_array): New function extracted
11277 from...
11278 (rank_one_type): ... this.
11279
11280 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11281
11282 * gdbtypes.c (rank_one_type_parm_ptr): New function extracted
11283 from...
11284 (rank_one_type): ... this.
11285
11286 2019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11287
11288 * inferior.c (initialize_inferiors): Ensure 'help set/show print
11289 inferior-events' shows the example events.
11290
11291 2019-03-08 Eli Zaretskii <eliz@gnu.org>
11292
11293 Support styling on native MS-Windows console
11294
11295 PR/24315
11296 * utils.c (can_emit_style_escape) [_WIN32]: Don't disable styling
11297 on MS-Windows if $TERM is not defined.
11298
11299 * cli/cli-style.c: Set cli_styling to 1 in the MinGW build.
11300
11301 * posix-hdep.c (gdb_console_fputs):
11302 * mingw-hdep.c (rgb_to_16colors, gdb_console_fputs): New
11303 functions.
11304 * ui-file.h (gdb_console_fputs): Add prototype.
11305
11306 * ui-file.c (stdio_file::puts): Call gdb_console_fputs, and fall
11307 back to fputs only if the former returns zero.
11308
11309 2019-03-07 Tom Tromey <tom@tromey.com>
11310
11311 * symmisc.c (print_symbol_bcache_statistics): Update.
11312 (print_objfile_statistics): Update.
11313 * symfile.c (allocate_symtab): Update.
11314 * stabsread.c: Don't include bcache.h.
11315 * psymtab.h (struct psymbol_bcache): Don't declare.
11316 (class psymtab_storage) <psymbol_cache>: Now a bcache.
11317 (psymbol_bcache_init, psymbol_bcache_free)
11318 (psymbol_bcache_get_bcache): Don't declare.
11319 * psymtab.c (struct psymbol_bcache): Remove.
11320 (psymtab_storage::psymtab_storage): Update.
11321 (psymtab_storage::~psymtab_storage): Update.
11322 (psymbol_bcache_init, psymbol_bcache_free)
11323 (psymbol_bcache_get_bcache, psymbol_bcache_full): Remove.
11324 (add_psymbol_to_bcache): Update.
11325 (allocate_psymtab): Update.
11326 * objfiles.h (struct objfile_per_bfd_storage) <filename_cache,
11327 macro_cache>: No longer pointers.
11328 * objfiles.c (get_objfile_bfd_data): Don't call bcache_xmalloc.
11329 (free_objfile_per_bfd_storage): Don't call bcache_xfree.
11330 * macrotab.c (macro_bcache): Update.
11331 * macroexp.c: Don't include bcache.h.
11332 * gdbtypes.c (check_types_worklist): Update.
11333 (types_deeply_equal): Remove TRY/CATCH. Update.
11334 * elfread.c (elf_symtab_read): Update.
11335 * dwarf2read.c: Don't include bcache.h.
11336 * buildsym.c (buildsym_compunit::get_macro_table): Update.
11337 * bcache.h (bcache, bcache_full, bcache_xffree, bcache_xmalloc)
11338 (print_bcache_statistics, bcache_memory_used): Don't declare.
11339 (struct bcache): Move from bcache.c. Add constructor, destructor,
11340 methods. Rename all data members.
11341 * bcache.c (struct bcache): Move to bcache.h.
11342 (bcache::expand_hash_table): Rename from expand_hash_table.
11343 (bcache): Remove.
11344 (bcache::insert): Rename from bcache_full.
11345 (bcache::compare): Rename from bcache_compare.
11346 (bcache_xmalloc): Remove.
11347 (bcache::~bcache): Rename from bcache_xfree.
11348 (bcache::print_statistics): Rename from print_bcache_statistics.
11349 (bcache::memory_used): Rename from bcache_memory_used.
11350
11351 2019-03-07 Pedro Alves <palves@redhat.com>
11352
11353 * infrun.c (normal_stop): Also check for
11354 TARGET_WAITKIND_NO_RESUMED before referring to inferior_thread().
11355
11356 2019-03-07 Andrew Burgess <andrew.burgess@embecosm.com>
11357
11358 * f-lang.c (value_from_host_double): Moved to...
11359 * value.c (value_from_host_double): ...here.
11360 * value.h (value_from_host_double): Declare.
11361 * guile/scm-math.c (vlscm_convert_typed_number): Use
11362 value_from_host_double.
11363 (vlscm_convert_number): Likewise.
11364 * guile/scm-value.c (gdbscm_value_to_real): Likewise.
11365 * python/py-value.c (convert_value_from_python): Likewise.
11366
11367 2019-03-06 Tom Tromey <tom@tromey.com>
11368
11369 * gcore.c (write_gcore_file): Use SCOPE_EXIT.
11370
11371 2019-03-06 Tom Tromey <tom@tromey.com>
11372
11373 * utils.h (free_current_contents): Don't declare.
11374 * utils.c (free_current_contents): Remove.
11375
11376 2019-03-06 Tom Tromey <tom@tromey.com>
11377
11378 * top.c (quit_force): Update.
11379 * main.c (captured_command_loop): Update.
11380 * common/new-op.c (operator new): Update.
11381 * common/common-exceptions.c (struct catcher)
11382 <save_cleanup_chain>: Remove member.
11383 (exceptions_state_mc_init): Update.
11384 (exception_try_scope_entry): Return nullptr.
11385 (exception_try_scope_exit, exception_rethrow)
11386 (throw_exception_sjlj, throw_exception_cxx): Update.
11387 * common/cleanups.h (make_cleanup, make_cleanup_dtor)
11388 (all_cleanups, do_cleanups, discard_cleanups)
11389 (discard_final_cleanups, save_cleanups, save_final_cleanups)
11390 (restore_cleanups, restore_final_cleanups): Don't declare.
11391 (do_final_cleanups): Remove parameter.
11392 * common/cleanups.c (cleanup_chain, make_cleanup)
11393 (make_cleanup_dtor, all_cleanups, do_cleanups)
11394 (discard_my_cleanups, discard_cleanups)
11395 (discard_final_cleanups, save_my_cleanups, save_cleanups)
11396 (save_final_cleanups, restore_my_cleanups, restore_cleanups)
11397 (null_cleanup): Remove.
11398 (do_final_cleanups): Remove parameter.
11399
11400 2019-03-06 Tom Tromey <tom@tromey.com>
11401
11402 * remote.c (remote_target::remote_parse_stop_reply): Use
11403 unique_xmalloc_ptr.
11404
11405 2019-03-06 Tom Tromey <tom@tromey.com>
11406
11407 * stabsread.c (struct stabs_field_info): Rename from field_info.
11408 <list, fnlist>: Add initializers.
11409 <obstack>: New member.
11410 (read_member_functions, read_struct_fields, read_baseclasses):
11411 Allocate on obstack. Don't use cleanups.
11412 (read_one_struct_field, read_member_functions, read_struct_fields)
11413 (read_baseclasses, read_tilde_fields, attach_fn_fields_to_type)
11414 (attach_fields_to_type, read_cpp_abbrev, read_member_functions)
11415 (read_struct_type): Update.
11416
11417 2019-03-06 Tom Tromey <tom@tromey.com>
11418
11419 * nat/linux-namespaces.c (linux_mntns_access_fs): Use SCOPE_EXIT.
11420 * common/filestuff.h (make_cleanup_close): Don't declare.
11421 * common/filestuff.c (do_close_cleanup, make_cleanup_close):
11422 Remove.
11423
11424 2019-03-06 Tom Tromey <tom@tromey.com>
11425
11426 * solib-aix.c: Use make_scope_exit.
11427
11428 2019-03-06 Tom Tromey <tom@tromey.com>
11429
11430 * solib-svr4.c (svr4_parse_libraries, svr4_current_sos_direct):
11431 Use make_scope_exit.
11432
11433 2019-03-06 Tom Tromey <tom@tromey.com>
11434
11435 * solib-svr4.c (disable_probes_interface): Remove parameter.
11436 (svr4_handle_solib_event): Use make_scope_exit.
11437
11438 2019-03-06 Tom Tromey <tom@tromey.com>
11439
11440 * remote.c (struct stop_reply_deleter): Remove.
11441 (stop_reply_up): Update.
11442 (struct stop_reply): Derive from notif_event. Don't typedef.
11443 <regcache>: Now a std::vector.
11444 (stop_reply_xfree): Remove.
11445 (stop_reply::~stop_reply): Rename from stop_reply_dtr.
11446 (remote_notif_stop_alloc_reply): Return a unique_ptr. Use new.
11447 (remote_target::discard_pending_stop_replies): Use delete.
11448 (remote_target::remote_parse_stop_reply): Update.
11449 (remote_target::process_stop_reply): Update.
11450 * remote-notif.h (struct notif_event): Add virtual destructor.
11451 Remove "dtr" member.
11452 (struct notif_client) <alloc_event>: Return a unique_ptr.
11453 (notif_event_xfree): Don't declare.
11454 (notif_event_up): New typedef.
11455 * remote-notif.c (remote_notif_ack, remote_notif_parse): Update.
11456 (notif_event_xfree, do_notif_event_xfree): Remove.
11457 (remote_notif_state_xfree): Update.
11458
11459 2019-03-06 Tom Tromey <tom@tromey.com>
11460
11461 * infrun.c (displaced_step_clear_cleanup): Now a
11462 forward_scope_exit type.
11463 (displaced_step_prepare_throw): Update.
11464 (displaced_step_fixup): Update.
11465
11466 2019-03-06 Tom Tromey <tom@tromey.com>
11467
11468 * inferior.h (class inferior): Update comment.
11469 * gdbthread.h (class thread_info): Update comment.
11470
11471 2019-03-06 Joel Brobecker <brobecker@adacore.com>
11472 Tom Tromey <tom@tromey.com>
11473
11474 * stabsread.h (struct stab_section_list): Remove.
11475 (coffstab_build_psymtabs): Update.
11476 * dbxread.c (symbuf_sections): Now a std::vector.
11477 (sect_idx): New global.
11478 (fill_symbuf): Update.
11479 (coffstab_build_psymtabs): Change type of stabsects parameter.
11480 Update.
11481 * coffread.c (struct coff_symfile_info) <stabsects>: Now a
11482 std::vector.
11483 (linetab, linetab_offset, linetab_size, stringtab): Move earlier.
11484 (coff_locate_sections): Update.
11485 (coff_symfile_read): Remove cleanups. Update.
11486 (init_stringtab): Add storage parameter.
11487 (free_stringtab, free_stringtab_cleanup): Remove.
11488 (init_lineno): Add storage parameter.
11489 (free_linetab, free_linetab_cleanup): Remove.
11490
11491 2019-03-06 Pedro Alves <palves@redhat.com>
11492
11493 * linux-fork.c (fork_info::clobber_regs): Delete.
11494 (fork_load_infrun_state): Remove reference to 'clobber_regs'.
11495 (fork_save_infrun_state): Remove 'clobber_regs' parameter. Update
11496 comment. Adjust.
11497 (scoped_switch_fork_info::scoped_switch_fork_info)
11498 (checkpoint_command, linux_fork_context): Adjust
11499 fork_save_infrun_state calls.
11500
11501 2019-03-06 Pedro Alves <palves@redhat.com>
11502
11503 * linux-fork.c (inf_has_multiple_thread_cb): Delete.
11504 (inf_has_multiple_threads): Return 'bool' and rewrite using
11505 inferior_info::threads().
11506
11507 2019-03-06 Pedro Alves <palves@redhat.com>
11508
11509 * linux-fork.c: Include <list>.
11510 (fork_list): Now a std::list instance.
11511 (fork_info): Add ctor, dtor, and in-class initialize all fields.
11512 (forks_exist_p, find_last_fork): Adjust.
11513 (new_fork): Delete.
11514 (one_fork_p): New.
11515 (add_fork): Adjust.
11516 (free_fork): Delete, folded into fork_info::~fork_info().
11517 (delete_fork, find_fork_ptid, find_fork_id, find_fork_pid):
11518 Adjust.
11519 (init_fork_list): Delete.
11520 (linux_fork_killall, linux_fork_mourn_inferior)
11521 (linux_fork_detach, info_checkpoints_command): Adjust.
11522 (_initialize_linux_fork): No longer call init_fork_list.
11523
11524 2019-03-06 Pedro Alves <palves@redhat.com>
11525
11526 * linux-fork.c (new_fork): New, split out of ...
11527 (add_fork): ... this. Return void. Move "first fork" special
11528 case from here, to ...
11529 (checkpoint_command): ... here.
11530 * linux-linux.h (add_fork): Return void.
11531
11532 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11533
11534 * f-exp.y (direct_abs_decl): Handle TYPE*SIZE type names.
11535
11536 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11537 Chris January <chris.january@arm.com>
11538 David Lecomber <david.lecomber@arm.com>
11539
11540 * f-exp.y: New token, UNOP_INTRINSIC.
11541 (exp): New pattern using UNOP_INTRINSIC token.
11542 (f77_keywords): Add 'abs' keyword.
11543 * f-lang.c: Add 'target-float.h' and 'math.h' includes.
11544 (value_from_host_double): New function.
11545 (evaluate_subexp_f): Support UNOP_ABS.
11546
11547 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11548
11549 * f-lang.c (build_fortran_types): Use TYPE_CODE_CHAR for character
11550 types.
11551
11552 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11553
11554 * f-exp.y (convert_to_kind_type): Handle integer (kind=8).
11555 * f-lang.c (build_fortran_types): Setup builtin_integer_s8.
11556 * f-lang.h (struct builtin_f_type): Add builtin_integer_s8 field.
11557
11558 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11559
11560 * f-exp.y (convert_to_kind_type): Handle more type kinds.
11561
11562 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11563 Chris January <chris.january@arm.com>
11564
11565 * expprint.c (dump_subexp_body_standard): Support UNOP_KIND.
11566 * f-exp.y: Define 'KIND' token.
11567 (exp): New pattern for KIND expressions.
11568 (ptype): Handle types with a kind extension.
11569 (direct_abs_decl): Extend to spot kind extensions.
11570 (f77_keywords): Add 'kind' to the list.
11571 (push_kind_type): New function.
11572 (convert_to_kind_type): New function.
11573 * f-lang.c (evaluate_subexp_f): Support UNOP_KIND.
11574 * parse.c (operator_length_standard): Likewise.
11575 * parser-defs.h (enum type_pieces): Add tp_kind.
11576 * std-operator.def: Add UNOP_KIND.
11577
11578 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11579
11580 * f-exp.y (f_parse): Set yydebug.
11581
11582 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11583
11584 * f-lang.c (evaluate_subexp_f): New function.
11585 (exp_descriptor_f): New global.
11586 (f_language_defn): Use exp_descriptor_f instead of
11587 exp_descriptor_standard.
11588
11589 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11590
11591 * f-exp.y (struct token): Add comments.
11592 (dot_ops): Remove uppercase versions and the end marker.
11593 (f77_keywords): Likewise.
11594 (yylex): Use ARRAY_SIZE to iterate over dot_ops, assert all
11595 entries in the dot_ops array are case insensitive, and use
11596 strncasecmp to compare strings. Also some whitespace cleanup in
11597 this area. Similar for the f77_keywords array, except entries in
11598 this list might be case sensitive.
11599
11600 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11601
11602 * f-exp.y (struct f77_boolean_val): Add comments.
11603 (boolean_values): Remove uppercase versions, and end marker.
11604 (yylex): Use ARRAY_SIZE for iterating over boolean_values array,
11605 and use strncasecmp to achieve case insensitivity. Additionally,
11606 perform whitespace cleanup around this code.
11607
11608 2019-03-06 Tom Tromey <tromey@adacore.com>
11609
11610 * remote-sim.c (gdbsim_target_open): Use result of
11611 gdb_argv::release.
11612
11613 2019-03-06 Richard Bunt <richard.bunt@arm.com>
11614 Dirk Schubert <dirk.schubert@arm.com>
11615 Chris January <chris.january@arm.com>
11616
11617 * eval.c (evaluate_subexp_standard): Call Fortran argument
11618 wrapping logic.
11619 * f-lang.c (struct value): A value which can be passed into a
11620 Fortran function call.
11621 (fortran_argument_convert): Wrap Fortran arguments in a pointer
11622 where appropriate.
11623 (struct type): Value ready for a Fortran function call.
11624 (fortran_preserve_arg_pointer): Undo check_typedef, the pointer
11625 is needed.
11626 * f-lang.h (fortran_argument_convert): Declaration.
11627 (fortran_preserve_arg_pointer): Declaration.
11628 * infcall.c (value_arg_coerce): Call Fortran argument logic.
11629
11630 2019-03-05 Tom Tromey <tromey@adacore.com>
11631
11632 * python/py-prettyprint.c (print_string_repr): Remove #if.
11633 * python/py-utils.c (unicode_to_encoded_string): Remove #if.
11634
11635 2019-03-05 Tom Tromey <tromey@adacore.com>
11636
11637 * target.c (the_dummy_target): Move later. Change type to
11638 "dummy_target".
11639 (initialize_targets): Don't initialize the_dummy_target.
11640
11641 2019-03-05 Tom Tromey <tromey@adacore.com>
11642
11643 * gdb_bfd.c (gdb_bfd_fdopenr): Remove.
11644 * gdb_bfd.h (gdb_bfd_fdopenr): Don't declare.
11645
11646 2019-03-05 Tom Tromey <tromey@adacore.com>
11647
11648 * windows-nat.c (windows_nat_target::attach)
11649 (windows_nat_target::detach): Don't call gdb_flush.
11650 * valprint.c (generic_val_print, val_print, val_print_string):
11651 Don't call gdb_flush.
11652 * utils.c (defaulted_query): Don't call gdb_flush.
11653 * typeprint.c (print_type_scalar): Don't call gdb_flush.
11654 * target.c (target_announce_detach): Don't call gdb_flush.
11655 * sparc64-tdep.c (adi_print_versions): Don't call gdb_flush.
11656 * remote.c (extended_remote_target::attach): Don't call
11657 gdb_flush.
11658 * procfs.c (procfs_target::detach): Don't call gdb_flush.
11659 * printcmd.c (do_examine): Don't call gdb_flush.
11660 (info_display_command): Don't call gdb_flush.
11661 * p-valprint.c (pascal_val_print): Don't call gdb_flush.
11662 * nto-procfs.c (nto_procfs_target::attach): Don't call gdb_flush.
11663 * memattr.c (info_mem_command): Don't call gdb_flush.
11664 * mdebugread.c (mdebug_build_psymtabs): Don't call gdb_flush.
11665 * m2-valprint.c (m2_val_print): Don't call gdb_flush.
11666 * infrun.c (follow_exec, handle_command): Don't call gdb_flush.
11667 * inf-ptrace.c (inf_ptrace_target::attach): Don't call gdb_flush.
11668 * hppa-tdep.c (unwind_command): Don't call gdb_flush.
11669 * gnu-nat.c (gnu_nat_target::attach): Don't call gdb_flush.
11670 (gnu_nat_target::detach): Don't call gdb_flush.
11671 * f-valprint.c (f_val_print): Don't call gdb_flush.
11672 * darwin-nat.c (darwin_nat_target::attach): Don't call gdb_flush.
11673 * cli/cli-script.c (read_command_lines): Don't call gdb_flush.
11674 * cli/cli-cmds.c (shell_escape, print_disassembly): Don't call
11675 gdb_flush.
11676 * c-valprint.c (c_val_print): Don't call gdb_flush.
11677 * ada-valprint.c (ada_print_scalar): Don't call gdb_flush.
11678
11679 2019-03-05 Tom Tromey <tromey@adacore.com>
11680
11681 * varobj.c (update_dynamic_varobj_children): Update.
11682 (install_default_visualizer): Use reset, not release.
11683 * value.c (set_internalvar): Update.
11684 * dwarf2loc.c (value_of_dwarf_reg_entry): Update.
11685 * common/gdb_ref_ptr.h (class ref_ptr) <release>: Add
11686 ATTRIBUTE_UNUSED_RESULT.
11687
11688 2019-03-05 Tom Tromey <tromey@adacore.com>
11689
11690 * remote.c (class scoped_remote_fd) <release>: Add
11691 ATTRIBUTE_UNUSED_RESULT.
11692
11693 2019-03-05 Tom Tromey <tromey@adacore.com>
11694
11695 * macroexp.c (struct macro_buffer) <release>: Add
11696 ATTRIBUTE_UNUSED_RESULT.
11697
11698 2019-03-05 Tom Tromey <tromey@adacore.com>
11699
11700 * nat/linux-btrace.c (linux_enable_bts, linux_enable_pt): Update.
11701 * common/scoped_mmap.h (class scoped_mmap) <release>: Add
11702 ATTRIBUTE_UNUSED_RESULT.
11703
11704 2019-03-05 Tom Tromey <tromey@adacore.com>
11705
11706 * common/scoped_fd.h (class scoped_fd) <release>: Add
11707 ATTRIBUTE_UNUSED_RESULT.
11708
11709 2019-03-05 Tom Tromey <tromey@adacore.com>
11710
11711 * parser-defs.h (struct parser_state) <release>: Add
11712 ATTRIBUTE_UNUSED_RESULT.
11713
11714 2019-03-05 Tom Tromey <tromey@adacore.com>
11715
11716 * utils.h (class gdb_argv) <release>: Add
11717 ATTRIBUTE_UNUSED_RESULT.
11718 * common/common-defs.h (ATTRIBUTE_UNUSED_RESULT): Define.
11719
11720 2019-03-02 Eli Zaretskii <eliz@gnu.org>
11721
11722 * xml-syscall.c (xml_list_syscalls_by_group): Drop 'struct' from
11723 for-loop range, to avoid compiler warnings.
11724
11725 * tui/tui.c (tui_enable) [__MINGW32__]: Don't declare 'cap', to
11726 avoid compiler warnings about unused variables.
11727
11728 * NEWS: Mention end of support for native debugging on MS-Windows
11729 before XP.
11730
11731 PR gdb/24292
11732 * common/netstuff.c:
11733 * gdbserver/gdbreplay.c
11734 * gdbserver/remote-utils.c:
11735 * ser-tcp.c:
11736 * unittests/parse-connection-spec-selftests.c [USE_WIN32API]:
11737 Include ws2tcpip.h instead of wsiapi.h and winsock2.h. Redefine
11738 _WIN32_WINNT to 0x0501 if defined to a smaller value, as
11739 'getaddrinfo' and 'freeaddrinfo' were not available before
11740 Windows XP, and mingw.org's MinGW headers by default define
11741 _WIN32_WINNT to 0x500.
11742
11743 2019-03-01 Gary Benson <gbenson@redhat.com>
11744
11745 * coffread.c (coff_start_symtab): Remove unnecessary xstrdup.
11746
11747 2019-02-28 Brian Vandenberg <phantall@gmail.com>
11748 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11749
11750 PR gdb/8527
11751 * procfs.c (proc_wait_for_stop): Wrap write of PCWSTOP in
11752 set_sigint_trap, clear_sigint_trap.
11753
11754 2019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11755
11756 * target.c (target_detach): Clear the regcache and the
11757 frame cache.
11758
11759 2019-02-27 Pedro Alves <palves@redhat.com>
11760
11761 * utils.c (set_screen_size): When we cap the height/width sizes,
11762 tweak the corresponding command variable to show "unlimited":
11763
11764 2019-02-27 Saagar Jha <saagar@saagarjha.com>
11765 Pedro Alves <palves@redhat.com>
11766
11767 * utils.c (set_screen_size): Reduce "infinite" rows and columns
11768 before calling rl_set_screen_size.
11769
11770 2019-02-27 Tom Tromey <tromey@adacore.com>
11771
11772 * configure.ac (HAVE_LIBPYTHON2_4, HAVE_LIBPYTHON2_5): Never
11773 define.
11774 * python/py-value.c: Remove Python 2.4 workaround.
11775 * python/py-utils.c (gdb_pymodule_addobject): Remove Python 2.4
11776 workaround.
11777 * python/py-type.c (convert_field, gdbpy_initialize_types): Remove
11778 Python 2.4 workaround.
11779 * python/python-internal.h: Remove Python 2.4 comment.
11780 (Py_ssize_t): Don't define.
11781 (PyVarObject_HEAD_INIT, Py_TYPE): Don't define.
11782 (gdb_Py_DECREF): Remove Python 2.4 workaround.
11783 (gdb_PyObject_GetAttrString, PyObject_GetAttrString): Remove.
11784 (gdb_PyObject_HasAttrString, PyObject_HasAttrString): Remove.
11785 * python/python.c (do_start_initialization): Remove Python 2.4
11786 workaround.
11787 * python/py-prettyprint.c (class dummy_python_frame): Remove.
11788 (print_children): Remove Python 2.4 workaround.
11789 * python/py-inferior.c (buffer_procs): Remove Python 2.4
11790 workaround.
11791 (CHARBUFFERPROC_NAME): Remove.
11792 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Remove
11793 Python 2.4 workaround.
11794
11795 2019-02-27 Kevin Buettner <kevinb@redhat.com>
11796
11797 * NEWS: Note minimum Python version.
11798
11799 2019-02-27 Kevin Buettner <kevinb@redhat.com>
11800
11801 * python/py-inferior.c (infpy_write_memory): Remove non-IS_PY3K
11802 code from these functions. Remove corresponding ifdefs. Use
11803 Py_buffer_up instead of explicit calls to PyBuffer_Release.
11804 Remove gotos and target of gotos.
11805 (infpy_search_memory): Likewise.
11806
11807 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11808
11809 * gdb/hppa-tdep.c (hppa_dummy_id): Delete.
11810 (hppa_gdbarch_init): Don't register deleted functions with
11811 gdbarch.
11812
11813 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11814
11815 * gdb/h8300-tdep.c (h8300_unwind_pc): Delete.
11816 (h8300_unwind_sp): Delete.
11817 (h8300_dummy_id): Delete.
11818 (h8300_gdbarch_init): Don't register deleted functions with
11819 gdbarch.
11820
11821 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11822
11823 * gdb/ft32-tdep.c (ft32_dummy_id): Delete.
11824 (ft32_unwind_pc): Delete.
11825 (ft32_unwind_sp): Delete.
11826 (ft32_gdbarch_init): Don't register deleted functions with
11827 gdbarch.
11828
11829 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11830
11831 * gdb/frv-tdep.c (frv_dummy_id): Delete.
11832 (frv_unwind_pc): Delete.
11833 (frv_unwind_sp): Delete.
11834 (frv_gdbarch_init): Don't register deleted functions with
11835 gdbarch.
11836
11837 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11838
11839 * gdb/riscv-tdep.c (riscv_dummy_id): Delete.
11840 (riscv_unwind_pc): Delete.
11841 (riscv_unwind_sp): Delete.
11842 (riscv_gdbarch_init): Don't register deleted functions with
11843 gdbarch.
11844
11845 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11846
11847 * gdb/csky-tdep.c (csky_dummy_id): Delete.
11848 (csky_unwind_pc): Delete.
11849 (csky_unwind_sp): Delete.
11850 (csky_gdbarch_init): Don't register deleted functions with
11851 gdbarch.
11852
11853 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11854
11855 * gdb/cris-tdep.c (cris_dummy_id): Delete.
11856 (cris_unwind_pc): Delete.
11857 (cris_unwind_sp): Delete.
11858 (cris_gdbarch_init): Don't register deleted functions with
11859 gdbarch.
11860
11861 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11862
11863 * gdb/bfin-tdep.c (bfin_dummy_id): Delete.
11864 (bfin_unwind_pc): Delete.
11865 (bfin_gdbarch_init): Don't register deleted functions with gdbarch.
11866
11867 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11868
11869 * gdb/arm-tdep.c (arm_dummy_id): Delete.
11870 (arm_unwind_pc): Delete.
11871 (arm_unwind_sp): Delete.
11872 (arm_gdbarch_init): Don't register deleted functions with gdbarch.
11873
11874 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11875
11876 * gdb/arc-tdep.c (arc_dummy_id): Delete.
11877 (arc_unwind_pc): Delete.
11878 (arc_unwind_sp): Delete.
11879 (arc_gdbarch_init): Don't register deleted functions with gdbarch.
11880
11881 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11882
11883 * gdb/alpha-tdep.c (alpha_dummy_id): Delete.
11884 (alpha_unwind_pc): Delete.
11885 (alpha_gdbarch_init): Don't register deleted functions with
11886 gdbarch.
11887
11888 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11889
11890 * gdb/aarch64-tdep.c (aarch64_dummy_id): Delete.
11891 (aarch64_unwind_pc): Delete.
11892 (aarch64_unwind_sp): Delete.
11893 (aarch64_gdbarch_init): Don't register deleted functions with
11894 gdbarch.
11895
11896 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11897
11898 * gdbtypes.c (type_align): Don't consider static members when
11899 computing structure alignment.
11900
11901 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11902
11903 * arc-tdep.c (arc_type_align): Provide alignment for basic types,
11904 return 0 for other types.
11905 * arch-utils.c (default_type_align): Always return 0.
11906 * gdbarch.h: Regenerate.
11907 * gdbarch.sh (type_align): Extend comment.
11908 * gdbtypes.c (type_align): Add additional comments, always call
11909 gdbarch_type_align before applying the default rules.
11910 * i386-tdep.c (i386_type_align): Return 0 as the default rule,
11911 generic code will then apply a suitable default.
11912 * nios2-tdep.c (nios2_type_align): Provide alignment for basic
11913 types, return 0 for other types.
11914
11915 2019-02-27 Joel Brobecker <brobecker@adacore.com>
11916
11917 * NEWS: Create a new section for the next release branch.
11918 Rename the section of the current branch, now that it has
11919 been cut.
11920
11921 2019-02-27 Joel Brobecker <brobecker@adacore.com>
11922
11923 GDB 8.3 branch created (143420fb0d5ae54323ba9953f0818c194635228d):
11924 * version.in: Bump version to 8.3.50.DATE-git.
11925
11926 2019-02-26 Simon Marchi <simon.marchi@efficios.com>
11927
11928 * aix-thread.c (ptid_cmp): Remove unused variable.
11929 (get_signaled_thread): Likewise.
11930 (store_regs_user_thread): Likewise.
11931 (store_regs_kernel_thread): Likewise.
11932 (fetch_regs_kernel_thread): Remove shadowed variable.
11933
11934 2019-02-26 Andrew Burgess <andrew.burgess@embecosm.com>
11935
11936 * features/riscv/32bit-cpu.xml: Add register numbers.
11937 * features/riscv/32bit-fpu.c: Regenerate.
11938 * features/riscv/32bit-fpu.xml: Add register numbers.
11939 * features/riscv/64bit-cpu.xml: Add register numbers.
11940 * features/riscv/64bit-fpu.c: Regenerate.
11941 * features/riscv/64bit-fpu.xml: Add register numbers.
11942
11943 2019-02-26 Kevin Buettner <kevinb@redhat.com>
11944
11945 * NEWS: Mention two argument form of gdb.Value constructor.
11946 * python/py-value.c (convert_buffer_and_type_to_value): New
11947 function.
11948 (valpy_new): Parse arguments via gdb_PyArg_ParseTupleAndKeywords.
11949 Add support for handling an optional second argument. Call
11950 convert_buffer_and_type_to_value as appropriate.
11951 * python/python-internal.h (Py_buffer_deleter): New struct.
11952 (Py_buffer_up): New typedef.
11953
11954 2019-02-25 John Baldwin <jhb@FreeBSD.org>
11955
11956 * dwarf2read.c (dwarf2_get_dwz_file): Reset dwz_bfd to nullptr
11957 instead of releasing ownership.
11958
11959 2019-02-25 Jordan Rupprecht <rupprecht@google.com>
11960
11961 * dwarf2read.c (open_and_init_dwp_file): Call
11962 elf_numsections instead of bfd_count_sections to initialize
11963 dwp_file->num_sections.
11964
11965 2019-02-25 Tom Tromey <tromey@adacore.com>
11966
11967 * solib-darwin.c (darwin_get_dyld_bfd): Don't release dyld_bfd.
11968
11969 2019-02-23 Sergio Durigan Junior <sergiodj@redhat.com>
11970
11971 * gcore.in: Add '--readnever' option when invoking GDB.
11972
11973 2019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
11974
11975 * MAINTAINERS: Update my email address.
11976
11977 2019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
11978
11979 * build-id.c (build_id_to_debug_bfd_1): New function.
11980 (build_id_to_debug_bfd): Look for separate debug file in
11981 sysroot.
11982
11983 2019-02-22 Andrew Burgess <andrew.burgess@embecosm.com>
11984
11985 * gdbarch.sh: Update the copyright year range that is placed into
11986 generated files.
11987
11988 2019-02-22 Keith Seitz <keiths@redhat.com>
11989
11990 PR symtab/23853
11991 * linespec.c (create_sals_line_offset): Search for the default
11992 symtab's filename instead of its fullname.
11993
11994 2019-02-21 Alan Hayward <alan.hayward@arm.com>
11995
11996 * NEWS: Update style defaults.
11997
11998 2019-02-21 Alan Hayward <alan.hayward@arm.com>
11999
12000 * main.c (captured_main_1): Disable styling in batch mode.
12001
12002 2019-02-20 Tom Tromey <tom@tromey.com>
12003
12004 * symtab.c (symtab_symbol_info): Fix typos.
12005
12006 2019-02-20 Tom Tromey <tromey@adacore.com>
12007
12008 * findcmd.c (_initialize_mem_search): Use upper case for
12009 metasyntactic variables.
12010
12011 2019-02-20 Alan Hayward <alan.hayward@arm.com>
12012
12013 * aarch64-tdep.c (aarch64_add_reggroups): New function.
12014 (aarch64_gdbarch_init): Call aarch64_add_reggroups.
12015
12016 2019-02-19 Simon Marchi <simon.marchi@polymtl.ca>
12017
12018 * top.h (source_file_name): Change to std::string.
12019 * top.c (source_file_name): Likewise.
12020 (command_line_input): Adjust.
12021 * cli/cli-script.c (script_from_file): Adjust.
12022
12023 2019-02-19 Tom Tromey <tromey@adacore.com>
12024
12025 * ravenscar-thread.c
12026 (ravenscar_thread_target::update_thread_list): Don't call
12027 ada_build_task_list.
12028 * ada-lang.h (ada_build_task_list): Don't declare.
12029 * ada-tasks.c (struct ada_tasks_inferior_data)
12030 <task_list_valid_p>: Now bool.
12031 (read_known_tasks, ada_task_list_changed)
12032 (ada_tasks_invalidate_inferior_data): Update.
12033 (read_known_tasks_array): Return bool.
12034 (read_known_tasks_list): Likewise.
12035 (read_known_tasks): Return void.
12036 (ada_build_task_list): Now static.
12037
12038 2019-02-18 Andrew Burgess <andrew.burgess@embecosm.com>
12039
12040 * gdbtypes.c (type_align): Allow alignment of TYPE_CODE_METHODPTR
12041 and TYPE_CODE_MEMBERPTR to be overridden by the gdbarch.
12042
12043 2019-02-18 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12044
12045 * ada-task.c (_initialize_tasks): Use 'with_cleanup' register
12046 variant for ada_tasks_pspace_data_handle and
12047 ada_tasks_inferior_data_handle.
12048 (ada_tasks_pspace_data_cleanup): New function.
12049 (ada_tasks_inferior_data_cleanup): New function.
12050
12051 2019-02-17 Tom Tromey <tom@tromey.com>
12052
12053 * macrotab.h (macro_source_fullname): Return a std::string.
12054 * macrotab.c (macro_include, check_for_redefinition)
12055 (macro_undef, macro_lookup_definition, foreach_macro)
12056 (foreach_macro_in_scope): Update.
12057 (macro_source_fullname): Return a std::string.
12058 * macrocmd.c (show_pp_source_pos): Update.
12059
12060 2019-02-17 Tom Tromey <tom@tromey.com>
12061
12062 * macrocmd.c (show_pp_source_pos): Style the file names.
12063
12064 2019-02-17 Tom Tromey <tom@tromey.com>
12065
12066 PR tui/24197:
12067 * tui/tui-source.c (tui_set_source_content_nil): Rewrite.
12068
12069 2019-02-17 Tom Tromey <tom@tromey.com>
12070
12071 * ada-lang.c (user_select_syms): Use filtered printing.
12072 * utils.c (wrap_style): New global.
12073 (desired_style): Remove.
12074 (emit_style_escape): Add stream parameter.
12075 (set_output_style, reset_terminal_style, prompt_for_continue):
12076 Update.
12077 (flush_wrap_buffer): Only flush gdb_stdout.
12078 (wrap_here): Set wrap_style.
12079 (fputs_maybe_filtered): Clear the wrap buffer on exception. Don't
12080 treat escape sequences as a character. Change when wrap buffer is
12081 flushed.
12082 (fputs_styled): Do not set the output style when the default is
12083 requested.
12084 * ui-style.h (struct ui_file_style) <is_default>: New method.
12085 * source.c (print_source_lines_base): Emit escape sequences in one
12086 piece.
12087
12088 2019-02-17 Joel Brobecker <brobecker@adacore.com>
12089
12090 * gdbtypes.c (type_align): Handle TYPE_CODE_RANGE the same as
12091 integers and enumeration types.
12092
12093 2019-02-17 Joel Brobecker <brobecker@adacore.com>
12094
12095 * ada-lang.c (standard_lookup): Use ada_lookup_encoded_symbol
12096 instead of lookup_symbol_in_language
12097 (do_exact_match): New function.
12098 (ada_get_symbol_name_matcher): Return do_exact_match when
12099 doing a verbatim match.
12100
12101 2019-02-15 Tom Tromey <tromey@adacore.com>
12102
12103 * ravenscar-thread.c (ravenscar_thread_target::resume)
12104 (ravenscar_thread_target::wait): Special case wildcard requests.
12105
12106 2019-02-15 Tom Tromey <tromey@adacore.com>
12107
12108 * ravenscar-thread.c (base_ptid): Remove.
12109 (struct ravenscar_thread_target) <close>: New method.
12110 <m_base_ptid>: New member.
12111 <update_inferior_ptid, active_task, task_is_currently_active,
12112 runtime_initialized>: Declare methods.
12113 <ravenscar_thread_target>: Add constructor.
12114 (ravenscar_thread_target::task_is_currently_active)
12115 (ravenscar_thread_target::update_inferior_ptid)
12116 (ravenscar_runtime_initialized): Rename. Now methods.
12117 (ravenscar_thread_target::resume, ravenscar_thread_target::wait)
12118 (ravenscar_thread_target::update_thread_list): Update.
12119 (ravenscar_thread_target::active_task): Now method.
12120 (ravenscar_thread_target::store_registers)
12121 (ravenscar_thread_target::prepare_to_store)
12122 (ravenscar_thread_target::prepare_to_store)
12123 (ravenscar_thread_target::mourn_inferior): Update.
12124 (ravenscar_inferior_created): Use "new" to create target.
12125 (ravenscar_thread_target::get_ada_task_ptid): Update.
12126 (_initialize_ravenscar): Don't initialize base_ptid.
12127 (ravenscar_ops): Remove global.
12128
12129 2019-02-15 Tom Tromey <tromey@adacore.com>
12130
12131 * target.h (push_target): Declare new overload.
12132 * target.c (push_target): New overload, taking an rvalue reference.
12133 * remote.c (remote_target::open_1): Use push_target overload.
12134 * corelow.c (core_target_open): Use push_target overload.
12135
12136 2019-02-15 Tom Tromey <tromey@adacore.com>
12137
12138 * ravenscar-thread.c (is_ravenscar_task)
12139 (ravenscar_task_is_currently_active): Return bool.
12140 (ravenscar_update_inferior_ptid, get_running_thread_msymbol)
12141 (_initialize_ravenscar): Remove "(void)".
12142 (has_ravenscar_runtime, ravenscar_runtime_initialized): Likewise.
12143 Return bool.
12144
12145 2019-02-15 Tom Tromey <tromey@adacore.com>
12146
12147 * ravenscar-thread.c (ravenscar_runtime_initializer)
12148 (has_ravenscar_runtime, get_running_thread_id)
12149 (ravenscar_thread_target::resume): Fix indentation.
12150
12151 2019-02-15 Tom Tromey <tromey@adacore.com>
12152
12153 * sparc-ravenscar-thread.c (struct sparc_ravenscar_ops): Derive
12154 from ravenscar_arch_ops.
12155 (sparc_ravenscar_ops::fetch_registers)
12156 (sparc_ravenscar_ops::store_registers): Now methods.
12157 (sparc_ravenscar_prepare_to_store): Remove.
12158 (sparc_ravenscar_ops): Redefine.
12159 * ravenscar-thread.h (struct ravenscar_arch_ops): Add virtual
12160 methods and destructor. Remove members.
12161 * ravenscar-thread.c (ravenscar_thread_target::fetch_registers)
12162 (ravenscar_thread_target::store_registers)
12163 (ravenscar_thread_target::prepare_to_store): Update.
12164 * ppc-ravenscar-thread.c (ppc_ravenscar_generic_prepare_to_store):
12165 Remove.
12166 (struct ppc_ravenscar_powerpc_ops): Derive from
12167 ravenscar_arch_ops.
12168 (ppc_ravenscar_powerpc_ops::fetch_registers)
12169 (ppc_ravenscar_powerpc_ops::store_registers): Now methods.
12170 (ppc_ravenscar_powerpc_ops): Redefine.
12171 (struct ppc_ravenscar_e500_ops): Derive from ravenscar_arch_ops.
12172 (ppc_ravenscar_e500_ops::fetch_registers)
12173 (ppc_ravenscar_e500_ops::store_registers): Now methods.
12174 (ppc_ravenscar_e500_ops): Redefine.
12175 * aarch64-ravenscar-thread.c
12176 (aarch64_ravenscar_generic_prepare_to_store): Remove.
12177 (struct aarch64_ravenscar_ops): Derive from ravenscar_arch_ops.
12178 (aarch64_ravenscar_fetch_registers)
12179 (aarch64_ravenscar_store_registers): Now methods.
12180 (aarch64_ravenscar_ops): Redefine.
12181
12182 2019-02-15 Tom Tromey <tromey@adacore.com>
12183
12184 * ravenscar-thread.c (ravenscar_thread_target::stopped_by_sw_breakpoint)
12185 (ravenscar_thread_target::stopped_by_hw_breakpoint)
12186 (ravenscar_thread_target::stopped_by_watchpoint)
12187 (ravenscar_thread_target::stopped_data_address)
12188 (ravenscar_thread_target::core_of_thread): Use scoped_restore.
12189
12190 2019-02-15 Tom Tromey <tromey@adacore.com>
12191
12192 * ravenscar-thread.c: Fix some typos.
12193
12194 2019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12195 Tom Tromey <tromey@adacore.com>
12196
12197 * ada-lang.c (ada_exception_sal): Change addr_string to a
12198 std::string.
12199 (create_ada_exception_catchpoint): Update.
12200
12201 2019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12202 Tom Tromey <tromey@adacore.com>
12203
12204 * breakpoint.c (~bp_location): Rename from bp_location_dtor.
12205 (bp_location_ops): Remove.
12206 (base_breakpoint_allocate_location): Update.
12207 (free_bp_location): Update.
12208 * ada-lang.c (class ada_catchpoint_location)
12209 <ada_catchpoint_location>: Remove ops parameter.
12210 (ada_catchpoint_location_dtor): Remove.
12211 (ada_catchpoint_location_ops): Remove.
12212 (allocate_location_exception): Update.
12213 * breakpoint.h (struct bp_location_ops): Remove.
12214 (class bp_location) <bp_location>: Remove bp_location_ops
12215 parameter.
12216 <~bp_location>: Add destructor.
12217 <ops>: Remove.
12218
12219 2019-02-14 Thomas Schwinge <thomas@codesourcery.com>
12220 Pedro Alves <palves@redhat.com>
12221
12222 * remote.c (remote_target::remote_parse_stop_reply): Avoid using
12223 'PATH_MAX'.
12224
12225 2019-02-14 David Michael <fedora.dm0@gmail.com>
12226 Samuel Thibault <samuel.thibault@gnu.org>
12227 Thomas Schwinge <thomas@codesourcery.com>
12228
12229 * gnu-nat.c (S_proc_getmsgport_reply, S_proc_task2proc_reply)
12230 (S_proc_pid2proc_reply): Adjust to Hurd "proc" interface changes.
12231
12232 2019-02-14 Thomas Schwinge <thomas@codesourcery.com>
12233
12234 * gnu-nat.c (gnu_write_inferior, parse_int_arg, _parse_bool_arg)
12235 (check_empty): Use "const char *".
12236
12237 * gnu-nat.c (gnu_nat_target::detach): Instead of
12238 'detach_inferior (pid)' call
12239 'detach_inferior (find_inferior_pid (pid))'.
12240
12241 * configure.nat [gdb_host == i386gnu] (NATDEPFILES): Add
12242 'nat/fork-inferior.o'.
12243 * gnu-nat.c: #include "nat/fork-inferior.h".
12244
12245 * gnu-nat.c (gnu_nat_target::detach): Instead of
12246 'inf_child_maybe_unpush_target (ops)' call 'maybe_unpush_target'.
12247 * gnu-nat.h: #include "inf-child.h".
12248 * i386-gnu-nat.c (gnu_fetch_registers): Rename/move to
12249 'i386_gnu_nat_target::fetch_registers'.
12250 (gnu_store_registers): Rename/move to
12251 'i386_gnu_nat_target::store_registers'.
12252
12253 * config/i386/nm-i386gnu.h: Don't "#include" any files.
12254 * gnu-nat.h (mach_thread_info): New function.
12255 * gnu-nat.c (thread_takeover_sc_cmd): Use it.
12256
12257 * config/i386/nm-i386gnu.h (gnu_target_pid_to_str): Remove.
12258
12259 2019-02-14 Frederic Konrad <konrad@adacore.com>
12260
12261 * riscv-rdep.c (riscv_type_alignment): Handle TYPE_CODE_RANGE.
12262
12263 2019-02-14 Joel Brobecker <brobecker@adacore.com>
12264
12265 * windows-nat.c (windows_add_thread): Add new parameter
12266 "main_thread_p" with default value set to false. Update
12267 function documentation as well as all callers.
12268 (windows_delete_thread): Likewise.
12269 (fake_create_process): Update call to windows_add_thread.
12270 (get_windows_debug_event) <CREATE_THREAD_DEBUG_EVENT>
12271 <CREATE_PROCESS_DEBUG_EVENT>: Likewise.
12272 <EXIT_THREAD_DEBUG_EVENT, EXIT_PROCESS_DEBUG_EVENT>: Update
12273 call to windows_delete_thread.
12274
12275 2019-02-13 Simon Marchi <simon.marchi@ericsson.com>
12276
12277 * MAINTAINERS: Add Andrew Burgess as global maintainer.
12278
12279 2019-02-12 John Baldwin <jhb@FreeBSD.org>
12280
12281 * symfile.c (find_separate_debug_file): Use canonical path of
12282 sysroot with child_path instead of gdb_sysroot if it is valid.
12283
12284 2019-02-12 John Baldwin <jhb@FreeBSD.org>
12285
12286 * symfile.c (find_separate_debug_file): Use child_path to
12287 determine if an object file is under a sysroot.
12288
12289 2019-02-12 John Baldwin <jhb@FreeBSD.org>
12290
12291 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
12292 unittests/child-path-selftests.c.
12293 * common/pathstuff.c (child_path): New function.
12294 * common/pathstuff.h (child_path): New prototype.
12295 * unittests/child-path-selftests.c: New file.
12296
12297 2019-02-12 John Baldwin <jhb@FreeBSD.org>
12298
12299 * symfile.c (find_separate_debug_file): Look for separate debug
12300 files in debug directories under the sysroot.
12301
12302 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12303
12304 * symtab.h (struct minimal_symbol data_p): New const method.
12305 (struct minimal_symbol text_p): Likewise.
12306 * symtab.c (output_source_filename): Use file name style
12307 to print file name.
12308 (print_symbol_info): Likewise.
12309 (print_msymbol_info): Use address style to print addresses.
12310 Use function name style to print executable text symbols.
12311 (expand_symtab_containing_pc): Use data_p.
12312 (find_pc_sect_compunit_symtab): Likewise.
12313
12314 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12315
12316 * breakpoint.c (describe_other_breakpoints): Use address style
12317 to print addresses.
12318 (say_where): Likewise.
12319
12320 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12321
12322 * ada-typeprint.c (print_func_type): Print function name
12323 style to print function name.
12324 * c-typeprint.c (c_print_type_1): Likewise.
12325
12326 2019-02-11 Alan Hayward <alan.hayward@arm.com>
12327
12328 * aarch64-linux-tdep.c (aarch64_linux_get_syscall_number): Check
12329 for execve.
12330
12331 2019-02-10 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12332
12333 * c-exp.y (direct_abs_decl): Use emplace_back to record the
12334 type_stack.
12335
12336 2019-02-10 Joel Brobecker <brobecker@adacore.com>
12337
12338 * ada-varobj.c (ada_value_is_changeable_p): Add handling of
12339 TYPE_CODE_REF types.
12340
12341 2019-02-08 Jim Wilson <jimw@sifive.com>
12342
12343 * riscv-linux-tdep.c (riscv_linux_fregmap): New.
12344 (riscv_linux_fregset): New.
12345 (riscv_linux_iterate_over_regset_sections): Call cb for .reg2 section.
12346
12347 2019-02-07 Tom Tromey <tom@tromey.com>
12348
12349 * thread.c (thread_cancel_execution_command): Update.
12350 * thread-fsm.h (struct thread_fsm): Add constructor, destructor,
12351 methods.
12352 (struct thread_fsm_ops): Remove.
12353 (thread_fsm_ctor, thread_fsm_delete, thread_fsm_clean_up)
12354 (thread_fsm_should_stop, thread_fsm_return_value)
12355 (thread_fsm_set_finished, thread_fsm_finished_p)
12356 (thread_fsm_async_reply_reason, thread_fsm_should_notify_stop):
12357 Don't declare.
12358 * mi/mi-interp.c (mi_on_normal_stop_1): Update.
12359 * infrun.c (clear_proceed_status_thread)
12360 (clean_up_just_stopped_threads_fsms, fetch_inferior_event)
12361 (print_stop_event): Update.
12362 * infcmd.c (struct step_command_fsm): Inherit from thread_fsm.
12363 Add constructor.
12364 (step_command_fsm_ops): Remove.
12365 (new_step_command_fsm): Remove.
12366 (step_1): Update.
12367 (step_command_fsm::should_stop): Rename from
12368 step_command_fsm_should_stop.
12369 (step_command_fsm::clean_up): Rename from
12370 step_command_fsm_clean_up.
12371 (step_command_fsm::do_async_reply_reason): Rename from
12372 step_command_fsm_async_reply_reason.
12373 (struct until_next_fsm): Inherit from thread_fsm. Add
12374 constructor.
12375 (until_next_fsm_ops): Remove.
12376 (new_until_next_fsm): Remove.
12377 (until_next_fsm::should_stop): Rename from
12378 until_next_fsm_should_stop.
12379 (until_next_fsm::clean_up): Rename from until_next_fsm_clean_up.
12380 (until_next_fsm::do_async_reply_reason): Rename from
12381 until_next_fsm_async_reply_reason.
12382 (struct finish_command_fsm): Inherit from thread_fsm. Add
12383 constructor. Change type of breakpoint.
12384 (finish_command_fsm_ops): Remove.
12385 (new_finish_command_fsm): Remove.
12386 (finish_command_fsm::should_stop): Rename from
12387 finish_command_fsm_should_stop.
12388 (finish_command_fsm::clean_up): Rename from
12389 finish_command_fsm_clean_up.
12390 (finish_command_fsm::return_value): Rename from
12391 finish_command_fsm_return_value.
12392 (finish_command_fsm::do_async_reply_reason): Rename from
12393 finish_command_fsm_async_reply_reason.
12394 (finish_command): Update.
12395 * infcall.c (struct call_thread_fsm): Inherit from thread_fsm.
12396 Add constructor.
12397 (call_thread_fsm_ops): Remove.
12398 (call_thread_fsm::call_thread_fsm): Rename from
12399 new_call_thread_fsm.
12400 (call_thread_fsm::should_stop): Rename from
12401 call_thread_fsm_should_stop.
12402 (call_thread_fsm::should_notify_stop): Rename from
12403 call_thread_fsm_should_notify_stop.
12404 (run_inferior_call, call_function_by_hand_dummy): Update.
12405 * cli/cli-interp.c (should_print_stop_to_console): Update.
12406 * breakpoint.c (struct until_break_fsm): Inherit from thread_fsm.
12407 Add constructor. Change type of location_breakpoint,
12408 caller_breakpoint.
12409 (until_break_fsm_ops): Remove.
12410 (new_until_break_fsm): Remove.
12411 (until_break_fsm::should_stop): Rename from
12412 until_break_fsm_should_stop.
12413 (until_break_fsm::clean_up): Rename from
12414 until_break_fsm_clean_up.
12415 (until_break_fsm::do_async_reply_reason): Rename from
12416 until_break_fsm_async_reply_reason.
12417 (until_break_command): Update.
12418 * thread-fsm.c: Remove.
12419 * Makefile.in (COMMON_SFILES): Remove thread-fsm.c.
12420
12421 2019-02-07 Tom Tromey <tom@tromey.com>
12422
12423 * yy-remap.h: Add include guard.
12424 * xtensa-tdep.h: Add include guard.
12425 * xcoffread.h: Rename include guard.
12426 * varobj-iter.h: Add include guard.
12427 * tui/tui.h: Rename include guard.
12428 * tui/tui-winsource.h: Rename include guard.
12429 * tui/tui-wingeneral.h: Rename include guard.
12430 * tui/tui-windata.h: Rename include guard.
12431 * tui/tui-win.h: Rename include guard.
12432 * tui/tui-stack.h: Rename include guard.
12433 * tui/tui-source.h: Rename include guard.
12434 * tui/tui-regs.h: Rename include guard.
12435 * tui/tui-out.h: Rename include guard.
12436 * tui/tui-layout.h: Rename include guard.
12437 * tui/tui-io.h: Rename include guard.
12438 * tui/tui-hooks.h: Rename include guard.
12439 * tui/tui-file.h: Rename include guard.
12440 * tui/tui-disasm.h: Rename include guard.
12441 * tui/tui-data.h: Rename include guard.
12442 * tui/tui-command.h: Rename include guard.
12443 * tic6x-tdep.h: Add include guard.
12444 * target/waitstatus.h: Rename include guard.
12445 * target/wait.h: Rename include guard.
12446 * target/target.h: Rename include guard.
12447 * target/resume.h: Rename include guard.
12448 * target-float.h: Rename include guard.
12449 * stabsread.h: Add include guard.
12450 * rs6000-tdep.h: Add include guard.
12451 * riscv-fbsd-tdep.h: Add include guard.
12452 * regformats/regdef.h: Rename include guard.
12453 * record.h: Rename include guard.
12454 * python/python.h: Rename include guard.
12455 * python/python-internal.h: Rename include guard.
12456 * python/py-stopevent.h: Rename include guard.
12457 * python/py-ref.h: Rename include guard.
12458 * python/py-record.h: Rename include guard.
12459 * python/py-record-full.h: Rename include guard.
12460 * python/py-record-btrace.h: Rename include guard.
12461 * python/py-instruction.h: Rename include guard.
12462 * python/py-events.h: Rename include guard.
12463 * python/py-event.h: Rename include guard.
12464 * procfs.h: Add include guard.
12465 * proc-utils.h: Add include guard.
12466 * p-lang.h: Add include guard.
12467 * or1k-tdep.h: Rename include guard.
12468 * observable.h: Rename include guard.
12469 * nto-tdep.h: Rename include guard.
12470 * nat/x86-linux.h: Rename include guard.
12471 * nat/x86-linux-dregs.h: Rename include guard.
12472 * nat/x86-gcc-cpuid.h: Add include guard.
12473 * nat/x86-dregs.h: Rename include guard.
12474 * nat/x86-cpuid.h: Rename include guard.
12475 * nat/ppc-linux.h: Rename include guard.
12476 * nat/mips-linux-watch.h: Rename include guard.
12477 * nat/linux-waitpid.h: Rename include guard.
12478 * nat/linux-ptrace.h: Rename include guard.
12479 * nat/linux-procfs.h: Rename include guard.
12480 * nat/linux-osdata.h: Rename include guard.
12481 * nat/linux-nat.h: Rename include guard.
12482 * nat/linux-namespaces.h: Rename include guard.
12483 * nat/linux-btrace.h: Rename include guard.
12484 * nat/glibc_thread_db.h: Rename include guard.
12485 * nat/gdb_thread_db.h: Rename include guard.
12486 * nat/gdb_ptrace.h: Rename include guard.
12487 * nat/fork-inferior.h: Rename include guard.
12488 * nat/amd64-linux-siginfo.h: Rename include guard.
12489 * nat/aarch64-sve-linux-sigcontext.h: Rename include guard.
12490 * nat/aarch64-sve-linux-ptrace.h: Rename include guard.
12491 * nat/aarch64-linux.h: Rename include guard.
12492 * nat/aarch64-linux-hw-point.h: Rename include guard.
12493 * mn10300-tdep.h: Add include guard.
12494 * mips-linux-tdep.h: Add include guard.
12495 * mi/mi-parse.h: Rename include guard.
12496 * mi/mi-out.h: Rename include guard.
12497 * mi/mi-main.h: Rename include guard.
12498 * mi/mi-interp.h: Rename include guard.
12499 * mi/mi-getopt.h: Rename include guard.
12500 * mi/mi-console.h: Rename include guard.
12501 * mi/mi-common.h: Rename include guard.
12502 * mi/mi-cmds.h: Rename include guard.
12503 * mi/mi-cmd-break.h: Rename include guard.
12504 * m2-lang.h: Add include guard.
12505 * location.h: Rename include guard.
12506 * linux-record.h: Rename include guard.
12507 * linux-nat.h: Add include guard.
12508 * linux-fork.h: Add include guard.
12509 * i386-darwin-tdep.h: Rename include guard.
12510 * hppa-linux-offsets.h: Add include guard.
12511 * guile/guile.h: Rename include guard.
12512 * guile/guile-internal.h: Rename include guard.
12513 * gnu-nat.h: Rename include guard.
12514 * gdb-stabs.h: Rename include guard.
12515 * frv-tdep.h: Add include guard.
12516 * f-lang.h: Add include guard.
12517 * event-loop.h: Add include guard.
12518 * darwin-nat.h: Rename include guard.
12519 * cp-abi.h: Rename include guard.
12520 * config/sparc/nm-sol2.h: Rename include guard.
12521 * config/nm-nto.h: Rename include guard.
12522 * config/nm-linux.h: Add include guard.
12523 * config/i386/nm-i386gnu.h: Rename include guard.
12524 * config/djgpp/nl_types.h: Rename include guard.
12525 * config/djgpp/langinfo.h: Rename include guard.
12526 * compile/gcc-cp-plugin.h: Add include guard.
12527 * compile/gcc-c-plugin.h: Add include guard.
12528 * compile/compile.h: Rename include guard.
12529 * compile/compile-object-run.h: Rename include guard.
12530 * compile/compile-object-load.h: Rename include guard.
12531 * compile/compile-internal.h: Rename include guard.
12532 * compile/compile-cplus.h: Rename include guard.
12533 * compile/compile-c.h: Rename include guard.
12534 * common/xml-utils.h: Rename include guard.
12535 * common/x86-xstate.h: Rename include guard.
12536 * common/version.h: Rename include guard.
12537 * common/vec.h: Rename include guard.
12538 * common/tdesc.h: Rename include guard.
12539 * common/selftest.h: Rename include guard.
12540 * common/scoped_restore.h: Rename include guard.
12541 * common/scoped_mmap.h: Rename include guard.
12542 * common/scoped_fd.h: Rename include guard.
12543 * common/safe-iterator.h: Rename include guard.
12544 * common/run-time-clock.h: Rename include guard.
12545 * common/refcounted-object.h: Rename include guard.
12546 * common/queue.h: Rename include guard.
12547 * common/ptid.h: Rename include guard.
12548 * common/print-utils.h: Rename include guard.
12549 * common/preprocessor.h: Rename include guard.
12550 * common/pathstuff.h: Rename include guard.
12551 * common/observable.h: Rename include guard.
12552 * common/netstuff.h: Rename include guard.
12553 * common/job-control.h: Rename include guard.
12554 * common/host-defs.h: Rename include guard.
12555 * common/gdb_wait.h: Rename include guard.
12556 * common/gdb_vecs.h: Rename include guard.
12557 * common/gdb_unlinker.h: Rename include guard.
12558 * common/gdb_unique_ptr.h: Rename include guard.
12559 * common/gdb_tilde_expand.h: Rename include guard.
12560 * common/gdb_sys_time.h: Rename include guard.
12561 * common/gdb_string_view.h: Rename include guard.
12562 * common/gdb_splay_tree.h: Rename include guard.
12563 * common/gdb_setjmp.h: Rename include guard.
12564 * common/gdb_ref_ptr.h: Rename include guard.
12565 * common/gdb_optional.h: Rename include guard.
12566 * common/gdb_locale.h: Rename include guard.
12567 * common/gdb_assert.h: Rename include guard.
12568 * common/filtered-iterator.h: Rename include guard.
12569 * common/filestuff.h: Rename include guard.
12570 * common/fileio.h: Rename include guard.
12571 * common/environ.h: Rename include guard.
12572 * common/common-utils.h: Rename include guard.
12573 * common/common-types.h: Rename include guard.
12574 * common/common-regcache.h: Rename include guard.
12575 * common/common-inferior.h: Rename include guard.
12576 * common/common-gdbthread.h: Rename include guard.
12577 * common/common-exceptions.h: Rename include guard.
12578 * common/common-defs.h: Rename include guard.
12579 * common/common-debug.h: Rename include guard.
12580 * common/cleanups.h: Rename include guard.
12581 * common/buffer.h: Rename include guard.
12582 * common/btrace-common.h: Rename include guard.
12583 * common/break-common.h: Rename include guard.
12584 * cli/cli-utils.h: Rename include guard.
12585 * cli/cli-style.h: Rename include guard.
12586 * cli/cli-setshow.h: Rename include guard.
12587 * cli/cli-script.h: Rename include guard.
12588 * cli/cli-interp.h: Rename include guard.
12589 * cli/cli-decode.h: Rename include guard.
12590 * cli/cli-cmds.h: Rename include guard.
12591 * charset-list.h: Add include guard.
12592 * buildsym-legacy.h: Rename include guard.
12593 * bfin-tdep.h: Add include guard.
12594 * ax.h: Rename include guard.
12595 * arm-linux-tdep.h: Add include guard.
12596 * arm-fbsd-tdep.h: Add include guard.
12597 * arch/xtensa.h: Rename include guard.
12598 * arch/tic6x.h: Add include guard.
12599 * arch/i386.h: Add include guard.
12600 * arch/arm.h: Rename include guard.
12601 * arch/arm-linux.h: Rename include guard.
12602 * arch/arm-get-next-pcs.h: Rename include guard.
12603 * arch/amd64.h: Add include guard.
12604 * arch/aarch64-insn.h: Rename include guard.
12605 * arch-utils.h: Rename include guard.
12606 * annotate.h: Add include guard.
12607 * amd64-darwin-tdep.h: Rename include guard.
12608 * aarch64-linux-tdep.h: Add include guard.
12609 * aarch64-fbsd-tdep.h: Add include guard.
12610 * aarch32-linux-nat.h: Add include guard.
12611
12612 2019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12613
12614 * macrotab.c (macro_define_internal): New function that
12615 factorizes macro_define_object_internal and macro_define_function
12616 code.
12617 (macro_define_object_internal): Use macro_define_internal.
12618 (macro_define_function): Likewise.
12619
12620 2019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12621
12622 * macrocmd.c (extract_identifier): Return
12623 a gdb::unique_xmalloc_ptr<char> instead of a char *, and update
12624 callers.
12625
12626 2019-02-06 John Baldwin <jhb@FreeBSD.org>
12627
12628 * fbsd-nat.c (fbsd_fetch_cmdline): Join arguments with spaces.
12629
12630 2019-02-05 Tom Tromey <tom@tromey.com>
12631
12632 * target.c (target_stack::unpush): Move assertion earlier.
12633
12634 2019-01-30 Tom Tromey <tom@tromey.com>
12635
12636 PR python/23615:
12637 * python/python.c (execute_gdb_command): Use gdbpy_allow_threads.
12638 (gdbpy_parse_and_eval): Likewise.
12639 * python/python-internal.h (gdbpy_allow_threads): New class.
12640
12641 2019-01-28 John Baldwin <jhb@FreeBSD.org>
12642
12643 * aarch64-fbsd-tdep.c (aarch64_fbsd_gregmap)
12644 (aarch64_fbsd_fpregmap): Move earlier.
12645 (AARCH64_MCONTEXT_REG_SIZE, AARCH64_MCONTEXT_FPREG_SIZE): Delete.
12646 (aarch64_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
12647 instead of individual calls to trad_frame_set_reg_addr.
12648 * arm-fbsd-tdep.c (arm_fbsd_gregmap, arm_fbsd_vfpregmap): Move
12649 earlier.
12650 (ARM_MCONTEXT_REG_SIZE, ARM_MCONTEXT_VFP_REG_SIZE): Delete.
12651 (arm_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
12652 instead of individual calls to trad_frame_set_reg_addr.
12653
12654 2019-01-28 Alan Hayward <alan.hayward@arm.com>
12655
12656 * CONTRIBUTE: Replace contribution list with wiki link.
12657
12658 2019-01-25 Tom Tromey <tom@tromey.com>
12659
12660 * Makefile.in (GDB_CFLAGS): Don't add -I for common.
12661
12662 2019-01-25 Tom Tromey <tom@tromey.com>
12663
12664 * xtensa-linux-nat.c: Fix common/ includes.
12665 * xml-support.h: Fix common/ includes.
12666 * xml-support.c: Fix common/ includes.
12667 * x86-linux-nat.c: Fix common/ includes.
12668 * windows-nat.c: Fix common/ includes.
12669 * varobj.h: Fix common/ includes.
12670 * varobj.c: Fix common/ includes.
12671 * value.c: Fix common/ includes.
12672 * valops.c: Fix common/ includes.
12673 * utils.c: Fix common/ includes.
12674 * unittests/xml-utils-selftests.c: Fix common/ includes.
12675 * unittests/utils-selftests.c: Fix common/ includes.
12676 * unittests/unpack-selftests.c: Fix common/ includes.
12677 * unittests/tracepoint-selftests.c: Fix common/ includes.
12678 * unittests/style-selftests.c: Fix common/ includes.
12679 * unittests/string_view-selftests.c: Fix common/ includes.
12680 * unittests/scoped_restore-selftests.c: Fix common/ includes.
12681 * unittests/scoped_mmap-selftests.c: Fix common/ includes.
12682 * unittests/scoped_fd-selftests.c: Fix common/ includes.
12683 * unittests/rsp-low-selftests.c: Fix common/ includes.
12684 * unittests/parse-connection-spec-selftests.c: Fix common/
12685 includes.
12686 * unittests/optional-selftests.c: Fix common/ includes.
12687 * unittests/offset-type-selftests.c: Fix common/ includes.
12688 * unittests/observable-selftests.c: Fix common/ includes.
12689 * unittests/mkdir-recursive-selftests.c: Fix common/ includes.
12690 * unittests/memrange-selftests.c: Fix common/ includes.
12691 * unittests/memory-map-selftests.c: Fix common/ includes.
12692 * unittests/lookup_name_info-selftests.c: Fix common/ includes.
12693 * unittests/function-view-selftests.c: Fix common/ includes.
12694 * unittests/environ-selftests.c: Fix common/ includes.
12695 * unittests/copy_bitwise-selftests.c: Fix common/ includes.
12696 * unittests/common-utils-selftests.c: Fix common/ includes.
12697 * unittests/cli-utils-selftests.c: Fix common/ includes.
12698 * unittests/array-view-selftests.c: Fix common/ includes.
12699 * ui-file.c: Fix common/ includes.
12700 * tui/tui-io.c: Fix common/ includes.
12701 * tracepoint.h: Fix common/ includes.
12702 * tracepoint.c: Fix common/ includes.
12703 * tracefile-tfile.c: Fix common/ includes.
12704 * top.h: Fix common/ includes.
12705 * top.c: Fix common/ includes.
12706 * thread.c: Fix common/ includes.
12707 * target/waitstatus.h: Fix common/ includes.
12708 * target/waitstatus.c: Fix common/ includes.
12709 * target.h: Fix common/ includes.
12710 * target.c: Fix common/ includes.
12711 * target-memory.c: Fix common/ includes.
12712 * target-descriptions.c: Fix common/ includes.
12713 * symtab.h: Fix common/ includes.
12714 * symfile.c: Fix common/ includes.
12715 * stap-probe.c: Fix common/ includes.
12716 * spu-linux-nat.c: Fix common/ includes.
12717 * sparc-nat.c: Fix common/ includes.
12718 * source.c: Fix common/ includes.
12719 * solib.c: Fix common/ includes.
12720 * solib-target.c: Fix common/ includes.
12721 * ser-unix.c: Fix common/ includes.
12722 * ser-tcp.c: Fix common/ includes.
12723 * ser-pipe.c: Fix common/ includes.
12724 * ser-base.c: Fix common/ includes.
12725 * selftest-arch.c: Fix common/ includes.
12726 * s12z-tdep.c: Fix common/ includes.
12727 * rust-exp.y: Fix common/ includes.
12728 * rs6000-aix-tdep.c: Fix common/ includes.
12729 * riscv-tdep.c: Fix common/ includes.
12730 * remote.c: Fix common/ includes.
12731 * remote-notif.h: Fix common/ includes.
12732 * remote-fileio.h: Fix common/ includes.
12733 * remote-fileio.c: Fix common/ includes.
12734 * regcache.h: Fix common/ includes.
12735 * regcache.c: Fix common/ includes.
12736 * record-btrace.c: Fix common/ includes.
12737 * python/python.c: Fix common/ includes.
12738 * python/py-type.c: Fix common/ includes.
12739 * python/py-inferior.c: Fix common/ includes.
12740 * progspace.h: Fix common/ includes.
12741 * producer.c: Fix common/ includes.
12742 * procfs.c: Fix common/ includes.
12743 * proc-api.c: Fix common/ includes.
12744 * printcmd.c: Fix common/ includes.
12745 * ppc-linux-nat.c: Fix common/ includes.
12746 * parser-defs.h: Fix common/ includes.
12747 * osdata.c: Fix common/ includes.
12748 * obsd-nat.c: Fix common/ includes.
12749 * nat/x86-linux.c: Fix common/ includes.
12750 * nat/x86-linux-dregs.c: Fix common/ includes.
12751 * nat/x86-dregs.h: Fix common/ includes.
12752 * nat/x86-dregs.c: Fix common/ includes.
12753 * nat/ppc-linux.c: Fix common/ includes.
12754 * nat/mips-linux-watch.h: Fix common/ includes.
12755 * nat/mips-linux-watch.c: Fix common/ includes.
12756 * nat/linux-waitpid.c: Fix common/ includes.
12757 * nat/linux-ptrace.h: Fix common/ includes.
12758 * nat/linux-ptrace.c: Fix common/ includes.
12759 * nat/linux-procfs.c: Fix common/ includes.
12760 * nat/linux-personality.c: Fix common/ includes.
12761 * nat/linux-osdata.c: Fix common/ includes.
12762 * nat/linux-namespaces.c: Fix common/ includes.
12763 * nat/linux-btrace.h: Fix common/ includes.
12764 * nat/linux-btrace.c: Fix common/ includes.
12765 * nat/fork-inferior.c: Fix common/ includes.
12766 * nat/amd64-linux-siginfo.c: Fix common/ includes.
12767 * nat/aarch64-sve-linux-ptrace.c: Fix common/ includes.
12768 * nat/aarch64-linux.c: Fix common/ includes.
12769 * nat/aarch64-linux-hw-point.h: Fix common/ includes.
12770 * nat/aarch64-linux-hw-point.c: Fix common/ includes.
12771 * namespace.h: Fix common/ includes.
12772 * mips-linux-tdep.c: Fix common/ includes.
12773 * minsyms.c: Fix common/ includes.
12774 * mi/mi-parse.h: Fix common/ includes.
12775 * mi/mi-main.c: Fix common/ includes.
12776 * mi/mi-cmd-env.c: Fix common/ includes.
12777 * memrange.h: Fix common/ includes.
12778 * memattr.c: Fix common/ includes.
12779 * maint.h: Fix common/ includes.
12780 * maint.c: Fix common/ includes.
12781 * main.c: Fix common/ includes.
12782 * machoread.c: Fix common/ includes.
12783 * location.c: Fix common/ includes.
12784 * linux-thread-db.c: Fix common/ includes.
12785 * linux-nat.c: Fix common/ includes.
12786 * linux-fork.c: Fix common/ includes.
12787 * inline-frame.c: Fix common/ includes.
12788 * infrun.c: Fix common/ includes.
12789 * inflow.c: Fix common/ includes.
12790 * inferior.h: Fix common/ includes.
12791 * inferior.c: Fix common/ includes.
12792 * infcmd.c: Fix common/ includes.
12793 * inf-ptrace.c: Fix common/ includes.
12794 * inf-child.c: Fix common/ includes.
12795 * ia64-linux-nat.c: Fix common/ includes.
12796 * i387-tdep.c: Fix common/ includes.
12797 * i386-tdep.c: Fix common/ includes.
12798 * i386-linux-tdep.c: Fix common/ includes.
12799 * i386-linux-nat.c: Fix common/ includes.
12800 * i386-go32-tdep.c: Fix common/ includes.
12801 * i386-fbsd-tdep.c: Fix common/ includes.
12802 * i386-fbsd-nat.c: Fix common/ includes.
12803 * guile/scm-type.c: Fix common/ includes.
12804 * guile/guile.c: Fix common/ includes.
12805 * go32-nat.c: Fix common/ includes.
12806 * gnu-nat.c: Fix common/ includes.
12807 * gdbthread.h: Fix common/ includes.
12808 * gdbarch-selftests.c: Fix common/ includes.
12809 * gdb_usleep.c: Fix common/ includes.
12810 * gdb_select.h: Fix common/ includes.
12811 * gdb_bfd.c: Fix common/ includes.
12812 * gcore.c: Fix common/ includes.
12813 * fork-child.c: Fix common/ includes.
12814 * findvar.c: Fix common/ includes.
12815 * fbsd-nat.c: Fix common/ includes.
12816 * event-top.c: Fix common/ includes.
12817 * event-loop.c: Fix common/ includes.
12818 * dwarf2read.c: Fix common/ includes.
12819 * dwarf2loc.c: Fix common/ includes.
12820 * dwarf2-frame.c: Fix common/ includes.
12821 * dwarf-index-cache.c: Fix common/ includes.
12822 * dtrace-probe.c: Fix common/ includes.
12823 * disasm-selftests.c: Fix common/ includes.
12824 * defs.h: Fix common/ includes.
12825 * csky-tdep.c: Fix common/ includes.
12826 * cp-valprint.c: Fix common/ includes.
12827 * cp-support.h: Fix common/ includes.
12828 * cp-support.c: Fix common/ includes.
12829 * corelow.c: Fix common/ includes.
12830 * completer.h: Fix common/ includes.
12831 * completer.c: Fix common/ includes.
12832 * compile/compile.c: Fix common/ includes.
12833 * compile/compile-loc2c.c: Fix common/ includes.
12834 * compile/compile-cplus-types.c: Fix common/ includes.
12835 * compile/compile-cplus-symbols.c: Fix common/ includes.
12836 * command.h: Fix common/ includes.
12837 * cli/cli-dump.c: Fix common/ includes.
12838 * cli/cli-cmds.c: Fix common/ includes.
12839 * charset.c: Fix common/ includes.
12840 * build-id.c: Fix common/ includes.
12841 * btrace.h: Fix common/ includes.
12842 * btrace.c: Fix common/ includes.
12843 * breakpoint.h: Fix common/ includes.
12844 * breakpoint.c: Fix common/ includes.
12845 * ax.h:
12846 (enum agent_op): Fix common/ includes.
12847 * ax-general.c (struct aop_map): Fix common/ includes.
12848 * ax-gdb.c: Fix common/ includes.
12849 * auxv.c: Fix common/ includes.
12850 * auto-load.c: Fix common/ includes.
12851 * arm-tdep.c: Fix common/ includes.
12852 * arch/riscv.c: Fix common/ includes.
12853 * arch/ppc-linux-common.c: Fix common/ includes.
12854 * arch/i386.c: Fix common/ includes.
12855 * arch/arm.c: Fix common/ includes.
12856 * arch/arm-linux.c: Fix common/ includes.
12857 * arch/arm-get-next-pcs.c: Fix common/ includes.
12858 * arch/amd64.c: Fix common/ includes.
12859 * arch/aarch64.c: Fix common/ includes.
12860 * arch/aarch64-insn.c: Fix common/ includes.
12861 * arch-utils.c: Fix common/ includes.
12862 * amd64-windows-tdep.c: Fix common/ includes.
12863 * amd64-tdep.c: Fix common/ includes.
12864 * amd64-sol2-tdep.c: Fix common/ includes.
12865 * amd64-obsd-tdep.c: Fix common/ includes.
12866 * amd64-nbsd-tdep.c: Fix common/ includes.
12867 * amd64-linux-tdep.c: Fix common/ includes.
12868 * amd64-linux-nat.c: Fix common/ includes.
12869 * amd64-fbsd-tdep.c: Fix common/ includes.
12870 * amd64-fbsd-nat.c: Fix common/ includes.
12871 * amd64-dicos-tdep.c: Fix common/ includes.
12872 * amd64-darwin-tdep.c: Fix common/ includes.
12873 * agent.c: Fix common/ includes.
12874 * ada-lang.h: Fix common/ includes.
12875 * ada-lang.c: Fix common/ includes.
12876 * aarch64-tdep.c: Fix common/ includes.
12877
12878 2019-01-25 Tom Tromey <tom@tromey.com>
12879
12880 * common/create-version.sh: Use common/version.h.
12881
12882 2019-01-24 Pedro Alves <palves@redhat.com>
12883
12884 * infrun.c (signal_stop, signal_print, signal_program)
12885 (signal_catch, signal_pass): Now arrays instead of pointers.
12886 (update_signals_program_target, do_target_resume)
12887 (signal_catch_update, handle_command, _initialize_infrun): Adjust.
12888 * linux-nat.c (linux_nat_target::pass_signals)
12889 (linux_nat_target::create_inferior, linux_nat_target::attach):
12890 Adjust.
12891 * linux-nat.h (linux_nat_target::pass_signals): Adjust.
12892 * nto-procfs.c (nto_procfs_target::pass_signals): Adjust.
12893 * procfs.c (procfs_target::pass_signals): Adjust.
12894 * record-full.c (record_full_target::resume): Adjust.
12895 * remote.c (remote_target::pass_signals)
12896 (remote_target::program_signals): Adjust.
12897 * target-debug.h (target_debug_print_signals): Now takes a
12898 gdb::array_view as parameter. Adjust.
12899 * target.h (target_ops) <pass_signals, program_signals>: Replace
12900 pointer and length parameters with gdb::array_view.
12901 (target_pass_signals, target_program_signals): Likewise.
12902 * target-delegates.c: Regenerate.
12903
12904 2019-01-24 Pedro Alves <palves@redhat.com>
12905
12906 * common/forward-scope-exit.h
12907 (forward_scope_exit::forward_scope_exit): Pass arguments to
12908 m_bind_function directly, instead of creating a std::bind and
12909 copying that.
12910
12911 2019-01-24 Alan Hayward <alan.hayward@arm.com>
12912
12913 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
12914 for static members.
12915 (pass_in_v_vfp_candidate): Likewise.
12916
12917 2019-01-23 Tom Tromey <tom@tromey.com>
12918 Pedro Alves <palves@redhat.com>
12919
12920 * regcache.c (class regcache_invalidator): Remove.
12921 (regcache::raw_write): Use make_scope_exit.
12922
12923 2019-01-23 Tom Tromey <tom@tromey.com>
12924
12925 * ui-out.h (class ui_out_emit_type): Update comment.
12926
12927 2019-01-23 Tom Tromey <tom@tromey.com>
12928
12929 * infrun.c (fetch_inferior_event): Update comment.
12930
12931 2019-01-23 Tom Tromey <tom@tromey.com>
12932 Pedro Alves <palves@redhat.com>
12933
12934 * infrun.c (reinstall_readline_callback_handler_cleanup): Remove
12935 parameter.
12936 (fetch_inferior_event): Use SCOPE_EXIT.
12937
12938
12939 2019-01-23 Tom Tromey <tom@tromey.com>
12940 Pedro Alves <palves@redhat.com>
12941
12942 * infrun.c (disable_thread_events): Delete.
12943 (stop_all_threads): Use SCOPE_EXIT.
12944
12945 2019-01-23 Tom Tromey <tom@tromey.com>
12946 Pedro Alves <palves@redhat.com>
12947
12948 * symfile.c: Include forward-scope-exit.h.
12949 (clear_symtab_users_cleanup): Replace forward declaration with
12950 a FORWARD_SCOPE_EXIT.
12951 (syms_from_objfile_1): Use the forward_scope_exit and
12952 gdb::optional instead of cleanup_function.
12953 (reread_symbols): Use the forward_scope_exit instead of
12954 cleanup_function.
12955 (clear_symtab_users_cleanup): Remove function.
12956
12957 2019-01-23 Tom Tromey <tom@tromey.com>
12958 Pedro Alves <palves@redhat.com>
12959
12960 * linux-nat.c: Include scope-exit.h.
12961 (cleanup_target_stop): Remove.
12962 (linux_nat_target::static_tracepoint_markers_by_strid): Use
12963 SCOPE_EXIT.
12964
12965 2019-01-23 Tom Tromey <tom@tromey.com>
12966 Pedro Alves <palves@redhat.com>
12967
12968 * infcall.c (cleanup_delete_std_terminate_breakpoint): Remove.
12969 (call_function_by_hand_dummy): Use SCOPE_EXIT.
12970
12971 2019-01-23 Tom Tromey <tom@tromey.com>
12972 Andrew Burgess <andrew.burgess@embecosm.com>
12973 Pedro Alves <palves@redhat.com>
12974
12975 * infrun.c (fetch_inferior_event): Use scope_exit.
12976 * utils.h (make_bpstat_clear_actions_cleanup): Don't declare.
12977 * top.c (execute_command): Use scope_exit.
12978 * breakpoint.c (bpstat_do_actions): Use scope_exit.
12979 * utils.c (do_bpstat_clear_actions_cleanup)
12980 (make_bpstat_clear_actions_cleanup): Remove.
12981
12982 2019-01-23 Tom Tromey <tom@tromey.com>
12983 Pedro Alves <palves@redhat.com>
12984
12985 * infrun.c: Include "common/scope-exit.h"
12986 (delete_just_stopped_threads_infrun_breakpoints_cleanup): Remove.
12987 (wait_for_inferior): Use SCOPE_EXIT.
12988 (fetch_inferior_event): Use scope_exit.
12989
12990 2019-01-23 Tom Tromey <tom@tromey.com>
12991 Pedro Alves <palves@redhat.com>
12992
12993 * breakpoint.c (create_breakpoint): Remove cleanup.
12994
12995 2019-01-23 Tom Tromey <tom@tromey.com>
12996 Andrew Burgess <andrew.burgess@embecosm.com>
12997 Pedro Alves <palves@redhat.com>
12998
12999 2019-01-23 Pedro Alves <palves@redhat.com>
13000
13001 * gdbarch-selftests.c (struct on_exit): Use SCOPE_EXIT.
13002
13003 2019-01-23 Pedro Alves <palves@redhat.com>
13004 Andrew Burgess <andrew.burgess@embecosm.com>
13005
13006 * gdbthread.h: Include "common/forward-scope-exit.h".
13007 (scoped_finish_thread_state): Redefine custom class in terms of
13008 forward_scope_exit.
13009
13010 2019-01-23 Pedro Alves <palves@redhat.com>
13011 Andrew Burgess <andrew.burgess@embecosm.com>
13012
13013 * common/forward-scope-exit.h: New file.
13014
13015 2019-01-23 Pedro Alves <palves@redhat.com>
13016 Andrew Burgess <andrew.burgess@embecosm.com>
13017 Tom Tromey <tom@tromey.com>
13018
13019 * common/scope-exit.h: New file.
13020
13021 2019-01-23 Pedro Alves <palves@redhat.com>
13022
13023 * common/preprocessor.h (ESC): Rename to ...
13024 (ESC_PARENS): ... this.
13025 * common/valid-expr.h (CHECK_VALID_EXPR_1, CHECK_VALID_EXPR_2)
13026 (CHECK_VALID_EXPR_3, CHECK_VALID_EXPR_4): Adjust.
13027
13028 2019-01-23 Tom Tromey <tom@tromey.com>
13029
13030 * language.h (class scoped_switch_to_sym_language_if_auto):
13031 Initialize m_lang in both cases.
13032
13033 2019-01-23 Alan Hayward <alan.hayward@arm.com>
13034
13035 * nat/aarch64-linux.c (aarch64_linux_new_thread): Replace XNEW
13036 with XCNEW.
13037
13038 2019-01-22 Tom Tromey <tom@tromey.com>
13039
13040 * corelow.c: Do not include sys/file.h.
13041
13042 2019-01-22 Tom Tromey <tom@tromey.com>
13043
13044 * tui/tui-wingeneral.h: Include gdb_curses.h.
13045
13046 2019-01-22 Tom Tromey <tom@tromey.com>
13047
13048 * source-cache.h (class source_cache) <get_source_lines,
13049 get_plain_source_lines, extract_lines>: Rename "lines" parameter.
13050
13051 2019-01-22 Tom Tromey <tom@tromey.com>
13052
13053 * remote-fileio.h (struct remote_target): Declare.
13054
13055 2019-01-22 Tom Tromey <tom@tromey.com>
13056
13057 * python/py-arch.c: Do not include py-ref.h.
13058 * python/py-bpevent.c: Do not include py-ref.h.
13059 * python/py-cmd.c: Do not include py-ref.h.
13060 * python/py-continueevent.c: Do not include py-ref.h.
13061 * python/py-event.h: Do not include py-ref.h.
13062 * python/py-evtregistry.c: Do not include py-ref.h.
13063 * python/py-finishbreakpoint.c: Do not include py-ref.h.
13064 * python/py-frame.c: Do not include py-ref.h.
13065 * python/py-framefilter.c: Do not include py-ref.h.
13066 * python/py-function.c: Do not include py-ref.h.
13067 * python/py-infevents.c: Do not include py-ref.h.
13068 * python/py-linetable.c: Do not include py-ref.h.
13069 * python/py-objfile.c: Do not include py-ref.h.
13070 * python/py-param.c: Do not include py-ref.h.
13071 * python/py-prettyprint.c: Do not include py-ref.h.
13072 * python/py-progspace.c: Do not include py-ref.h.
13073 * python/py-symbol.c: Do not include py-ref.h.
13074 * python/py-symtab.c: Do not include py-ref.h.
13075 * python/py-type.c: Do not include py-ref.h.
13076 * python/py-unwind.c: Do not include py-ref.h.
13077 * python/py-utils.c: Do not include py-ref.h.
13078 * python/py-value.c: Do not include py-ref.h.
13079 * python/py-varobj.c: Do not include py-ref.h.
13080 * python/py-xmethods.c: Do not include py-ref.h.
13081 * python/python.c: Do not include py-ref.h.
13082 * varobj.c: Do not include py-ref.h.
13083
13084 2019-01-22 Tom Tromey <tom@tromey.com>
13085
13086 * objfiles.h (struct objfile_per_bfd_storage): Use "struct"
13087 keyword for bcache.
13088
13089 2019-01-22 Tom Tromey <tom@tromey.com>
13090
13091 * compile/compile-cplus-types.c: Remove a comment by #include.
13092
13093 2019-01-22 Tom Tromey <tom@tromey.com>
13094
13095 * compile/gcc-c-plugin.h: Include compile-internal.h.
13096
13097 2019-01-22 Tom Tromey <tom@tromey.com>
13098
13099 * stabsread.c (EXTERN): Do not define.
13100 (symnum, next_symbol_text_func, processing_gcc_compilation)
13101 (within_function, global_sym_chain, global_stabs)
13102 (previous_stab_code, this_object_header_files)
13103 (n_this_object_header_files)
13104 (n_allocated_this_object_header_files): Define.
13105 * stabsread.h (EXTERN): Never define. Use "extern".
13106
13107 2019-01-22 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13108
13109 * event-top.c (handle_line_of_input): use unique_xmalloc_ptr for
13110 history_value.
13111
13112 2019-01-21 Tom Tromey <tom@tromey.com>
13113
13114 * ui-out.c: Fix includes.
13115 * tui/tui-source.c: Fix includes.
13116 * target.c: Fix includes.
13117 * remote.c: Fix includes.
13118 * regcache.c: Fix includes.
13119 * python/py-block.c: Fix includes.
13120 * printcmd.c: Fix includes.
13121 * or1k-tdep.c: Fix includes.
13122 * mi/mi-main.c: Fix includes.
13123 * m32r-tdep.c: Fix includes.
13124 * csky-tdep.c: Fix includes.
13125 * compile/compile-cplus-types.c: Fix includes.
13126 * cli/cli-interp.c: Fix includes.
13127
13128 2019-01-21 Alan Hayward <alan.hayward@arm.com>
13129
13130 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
13131 for padding.
13132
13133 2019-01-16 Tom Tromey <tom@tromey.com>
13134
13135 * objfiles.h (struct minimal_symbol_iterator): Rename. Move
13136 earlier.
13137 (struct objfile) <msymbols_range>: Move from top level.
13138 <msymbols>: New method.
13139 (class objfile_msymbols): Remove.
13140 * symtab.c (default_collect_symbol_completion_matches_break_on):
13141 Update.
13142 * symmisc.c (dump_msymbols): Update.
13143 * stabsread.c (scan_file_globals): Update.
13144 * objc-lang.c (info_selectors_command, info_classes_command)
13145 (find_methods): Update.
13146 * minsyms.c (find_solib_trampoline_target): Update.
13147 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Update.
13148 * coffread.c (coff_symfile_read): Update.
13149 * ada-lang.c (ada_lookup_simple_minsym)
13150 (ada_collect_symbol_completion_matches): Update.
13151
13152 2019-01-16 Tom Tromey <tom@tromey.com>
13153
13154 * objfiles.h (class objfile_msymbols) <iterator>: Change argument
13155 type. Remove no-argument constructor.
13156 <iterator::operator++>: Simplify.
13157 <begin>: Update.
13158 <end>: Use minimal_symbol_count.
13159
13160 2019-01-16 Tom Tromey <tom@tromey.com>
13161
13162 * objfiles.h (struct objfile) <psymtabs>: New method.
13163 (class objfile_psymtabs): Remove.
13164 * psymtab.h (class psymtab_storage) <partial_symtab_range>: New
13165 typedef.
13166 <range>: New method.
13167 (require_partial_symbols): Change return type.
13168 * psymtab.c (require_partial_symbols)
13169 (psym_expand_symtabs_matching): Update.
13170 * mdebugread.c (parse_partial_symbols): Update.
13171 * dbxread.c (dbx_end_psymtab): Update.
13172
13173 2019-01-15 Tom Tromey <tom@tromey.com>
13174
13175 * symtab.c (lookup_objfile_from_block)
13176 (lookup_symbol_in_objfile_symtabs)
13177 (basic_lookup_transparent_type_1, find_pc_sect_compunit_symtab)
13178 (find_line_symtab, info_sources_command)
13179 (default_collect_symbol_completion_matches_break_on)
13180 (make_source_files_completion_list): Update.
13181 * symmisc.c (print_objfile_statistics, dump_objfile)
13182 (maintenance_print_symbols, maintenance_info_symtabs)
13183 (maintenance_check_symtabs, maintenance_info_line_tables):
13184 Update.
13185 * source.c (select_source_symtab)
13186 (forget_cached_source_info_for_objfile): Update.
13187 * objfiles.h (class objfile_compunits): Remove.
13188 (struct objfile) <compunits_range>: New typedef.
13189 (compunits): New method.
13190 * objfiles.c (objfile_relocate1): Update.
13191 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
13192 * maint.c (count_symtabs_and_blocks): Update.
13193 * linespec.c (iterate_over_all_matching_symtabs): Update.
13194 * cp-support.c (add_symbol_overload_list_qualified): Update.
13195 * coffread.c (coff_symtab_read): Update.
13196 * ada-lang.c (add_nonlocal_symbols)
13197 (ada_collect_symbol_completion_matches)
13198 (ada_add_global_exceptions): Update.
13199
13200 2019-01-15 Tom Tromey <tom@tromey.com>
13201
13202 * progspace.h (program_space) <objfiles_safe_range>: New
13203 typedef.
13204 <objfiles_safe>: New method.
13205 * objfiles.h (class all_objfiles_safe): Remove.
13206 * objfiles.c (free_all_objfiles, objfile_purge_solibs): Update.
13207 * jit.c (jit_inferior_exit_hook): Update.
13208
13209 2019-01-17 Tom Tromey <tom@tromey.com>
13210
13211 * progspace.h (program_space) <objfiles_range>: New typedef.
13212 <objfiles>: New method.
13213 <objfiles_head>: Rename from objfiles.
13214 (object_files): Update.
13215 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Update.
13216 * guile/scm-pretty-print.c
13217 (ppscm_find_pretty_printer_from_objfiles): Update.
13218 * guile/scm-objfile.c (gdbscm_objfiles): Update.
13219 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers):
13220 Update.
13221 * python/py-progspace.c (pspy_get_objfiles): Update.
13222 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
13223 Update.
13224 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
13225 (objfpy_lookup_objfile_by_build_id): Update.
13226 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
13227 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
13228 Update.
13229 * symtab.c (iterate_over_symtabs, matching_obj_sections)
13230 (expand_symtab_containing_pc, lookup_objfile_from_block)
13231 (lookup_static_symbol, basic_lookup_transparent_type)
13232 (find_pc_sect_compunit_symtab, find_symbol_at_address)
13233 (find_line_symtab, info_sources_command)
13234 (default_collect_symbol_completion_matches_break_on)
13235 (make_source_files_completion_list, find_main_name): Update.
13236 * symmisc.c (print_symbol_bcache_statistics)
13237 (print_objfile_statistics, maintenance_print_symbols)
13238 (maintenance_print_msymbols, maintenance_print_objfiles)
13239 (maintenance_info_symtabs, maintenance_check_symtabs)
13240 (maintenance_expand_symtabs, maintenance_info_line_tables):
13241 Update.
13242 * symfile.c (remove_symbol_file_command, overlay_invalidate_all)
13243 (find_pc_overlay, find_pc_mapped_section, list_overlays_command)
13244 (map_overlay_command, unmap_overlay_command)
13245 (simple_overlay_update, expand_symtabs_matching)
13246 (map_symbol_filenames): Update.
13247 * symfile-debug.c (set_debug_symfile): Update.
13248 * spu-tdep.c (spu_overlay_update, spu_objfile_from_frame):
13249 Update.
13250 * source.c (select_source_symtab, forget_cached_source_info):
13251 Update.
13252 * solib.c (solib_read_symbols): Update.
13253 * solib-spu.c (append_ocl_sos): Update.
13254 * psymtab.c (maintenance_print_psymbols)
13255 (maintenance_info_psymtabs, maintenance_check_psymtabs): Update.
13256 * probe.c (parse_probes_in_pspace, find_probe_by_pc): Update.
13257 * printcmd.c (info_symbol_command): Update.
13258 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created):
13259 Update.
13260 * objfiles.h (class all_objfiles): Remove.
13261 * objfiles.c (have_partial_symbols, have_full_symbols)
13262 (have_minimal_symbols, qsort_cmp, update_section_map)
13263 (shared_objfile_contains_address_p)
13264 (default_iterate_over_objfiles_in_search_order): Update.
13265 * objc-lang.c (info_selectors_command, info_classes_command)
13266 (find_methods): Update.
13267 * minsyms.c (find_solib_trampoline_target): Update.
13268 * maint.c (maintenance_info_sections)
13269 (maintenance_translate_address, count_symtabs_and_blocks):
13270 Update.
13271 * main.c (captured_main_1): Update.
13272 * linux-thread-db.c (try_thread_db_load_from_pdir)
13273 (has_libpthread): Update.
13274 * linespec.c (iterate_over_all_matching_symtabs)
13275 (search_minsyms_for_name): Update.
13276 * jit.c (jit_find_objf_with_entry_addr): Update.
13277 * hppa-tdep.c (find_unwind_entry)
13278 (hppa_lookup_stub_minimal_symbol): Update.
13279 * gcore.c (gcore_create_callback, objfile_find_memory_regions):
13280 Update.
13281 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
13282 (elf_gnu_ifunc_resolve_by_got): Update.
13283 * dwarf2-frame.c (dwarf2_frame_find_fde): Update.
13284 * dwarf-index-write.c (save_gdb_index_command): Update.
13285 * cp-support.c (add_symbol_overload_list_qualified): Update.
13286 * breakpoint.c (create_overlay_event_breakpoint)
13287 (create_longjmp_master_breakpoint)
13288 (create_std_terminate_master_breakpoint)
13289 (create_exception_master_breakpoint): Update.
13290 * blockframe.c (find_pc_partial_function): Update.
13291 * ada-lang.c (ada_lookup_simple_minsym, add_nonlocal_symbols)
13292 (ada_collect_symbol_completion_matches)
13293 (ada_add_global_exceptions): Update.
13294
13295 2019-01-17 Tom Tromey <tom@tromey.com>
13296
13297 * solib-target.c (lm_info_target_p): Remove typedef. Don't
13298 declare VEC.
13299 (solib_target_parse_libraries): Change return type.
13300 (library_list_start_segment, library_list_start_section)
13301 (library_list_end_library, library_list_start_library); Update.
13302 (solib_target_free_library_list): Remove.
13303 (solib_target_parse_libraries): Remove cleanup. Change return
13304 type.
13305 (solib_target_current_sos): Update.
13306
13307 2019-01-17 Tom Tromey <tromey@bapiya>
13308
13309 * valprint.c: Replace "the the" with "the".
13310 * symtab.c: Replace "the the" with "the".
13311 * solib.c: Replace "the the" with "the".
13312 * solib-dsbt.c: Replace "the the" with "the".
13313 * linespec.c: Replace "the the" with "the".
13314 * dwarf2loc.h: Replace "the the" with "the".
13315 * amd64-windows-tdep.c: Replace "the the" with "the".
13316 * aarch64-tdep.c: Replace "the the" with "the".
13317
13318 2019-01-16 Keith Seitz <keiths@redhat.com>
13319
13320 PR gdb/23773
13321 * dwarf2read.c (dwarf2_cu) <ancestor>: New field.
13322 <builder>: Rename to ..
13323 <m_builder>: ... this and make private.
13324 (dwarf2_cu::get_builder): New method. Change all users of
13325 `builder' to use this method.
13326 (dwarf2_start_symtab): Move to ...
13327 (dwarf2_cu::start_symtab): ... here. Update all callers
13328 (setup_type_unit_groups): Move to ...
13329 (dwarf2_cu::setup_type_unit_groups): ... here. Update all
13330 callers.
13331 (dwarf2_cu::reset_builder): New method.
13332 (process_full_compunit, process_full_type_unit): Use
13333 dwarf2_cu::reset_builder.
13334 (follow_die_offset): Record the ancestor CU if it is different
13335 from the followed DIE's CU.
13336 (follow_die_sig_1): Likewise.
13337
13338 2019-01-15 Tom Tromey <tom@tromey.com>
13339
13340 * remote.c (class remote_state) <buf>: Now a char_vector.
13341 <buf_size>: Remove.
13342 (remote_target::getpkt): Change type of buf. Remove sizeof_buf
13343 parameter.
13344 (remote_target::getpkt_or_notif_sane_1)
13345 (remote_target::getpkt_sane)
13346 (remote_target::getpkt_or_notif_sane): Likewise.
13347 (class remote_target) <putpkt>: New overload.
13348 (remote_target::read_frame): Change type of "buf_p". Remove
13349 sizeof_p parameter.
13350 (packet_ok): New overload.
13351 (packet_check_result): New overload.
13352 Update all uses.
13353
13354 2019-01-14 Tom Tromey <tom@tromey.com>
13355
13356 * remote-notif.c (handle_notification, remote_notif_ack)
13357 (remote_notif_parse): Make "buf" const.
13358 * remote-notif.h (struct notif_client) <parse, ack>: Make "buf"
13359 const.
13360 (remote_notif_parse, remote_notif_ack, handle_notification):
13361 Likewise.
13362 * remote.c (remote_notif_stop_parse): Make "buf" const.
13363 (remote_target::remote_parse_stop_reply): Make "buf" const.
13364 (remote_notif_stop_ack): Make "buf" const.
13365
13366 2019-01-14 Tom Tromey <tom@tromey.com>
13367
13368 * remote.c (remote_console_output): Make parameter const.
13369
13370 2019-01-14 Tom Tromey <tom@tromey.com>
13371
13372 * target-debug.h (target_debug_print_signals): Constify.
13373 * nto-procfs.c (nto_procfs_target::pass_signals): Update.
13374 * procfs.c (procfs_target::pass_signals): Update.
13375 * linux-nat.c (linux_nat_target::pass_signals): Update.
13376 * linux-nat.h (class linux_nat_target) <pass_signals>: Update.
13377 * target-delegates.c: Rebuild.
13378 * remote.c (remote_target::program_signals): Update.
13379 (remote_target::pass_signals): Update.
13380 * target.c (target_pass_signals): Constify argument.
13381 (target_program_signals): Likewise.
13382 * target.h (struct target_ops) <pass_signals, program_signals>:
13383 Constify argument.
13384 (target_pass_signals, target_program_signals): Constify argument.
13385
13386 2019-01-14 Tom Tromey <tom@tromey.com>
13387
13388 PR tui/28819:
13389 * tui/tui-io.c (gdb_wgetch): Print \r when needed.
13390
13391 2019-01-14 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
13392
13393 * ppc-tdep.h (struct gdbarch_tdep) <ppc_v0_alias_regnum>: New
13394 field.
13395 * rs6000-tdep.c: Include reggroups.h.
13396 (IS_V_ALIAS_PSEUDOREG): Define.
13397 (rs6000_register_name): Return names for the "vX" aliases.
13398 (rs6000_pseudo_register_type): Return type for the "vX" aliases.
13399 (rs6000_pseudo_register_reggroup_p): Restore. Handle "vX"
13400 aliases. Call default_register_reggroup_p for all other
13401 pseudo-registers.
13402 (v_alias_pseudo_register_read, v_alias_pseudo_register_write):
13403 New functions.
13404 (rs6000_pseudo_register_read, rs6000_pseudo_register_write):
13405 Handle "vX" aliases.
13406 (v_alias_pseudo_register_collect): New function.
13407 (rs6000_ax_pseudo_register_collect): Handle "vX" aliases.
13408 (rs6000_gdbarch_init): Initialize "vX" aliases as
13409 pseudo-registers. Restore registration of
13410 rs6000_pseudo_register_reggroup_p with
13411 set_tdesc_pseudo_register_reggroup_p.
13412
13413 2019-01-13 Max Filippov <jcmvbkbc@gmail.com>
13414
13415 * xtensa-linux-tdep.c (xtensa_linux_init_abi): Update
13416 tdep->num_pseudo_regs. Add calls to set_gdbarch_num_regs and
13417 set_gdbarch_num_pseudo_regs.
13418
13419 2019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13420
13421 * cli/cli-style.h (class cli_style_option): <add_setshow_commands>
13422 Remove arg prefixname, add do_set and do_show.
13423 Add member functions set_list and show_list.
13424 * cli/cli-style.c (class cli_style_option): Update accordingly.
13425 (style_set_list): Move to file scope.
13426 (style_show_list): Likewise.
13427 (set_style): Call help_list.
13428 (show_style): Call cmd_show_list.
13429 (_initialize_cli_style): New macro STYLE_ADD_SETSHOW_COMMANDS.
13430 Update to use the new macro.
13431
13432 2019-10-12 Joel Brobecker <brobecker@adacore.com>
13433
13434 * ada-lang.c (_initialize_ada_language): Expand the help text
13435 for the "catch exception" command.
13436
13437 2019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13438
13439 * symtab.c (matching_obj_sections): Initialize obj,
13440 declare it closer to its usage.
13441
13442 2019-01-10 Tom Tromey <tom@tromey.com>
13443
13444 * thread-iter.h (inf_threads_iterator): Use next_iterator.
13445 (basic_inf_threads_range): Remove.
13446 (inf_threads_range, inf_non_exited_threads_range)
13447 (safe_inf_threads_range): Use next_adapter.
13448
13449 2019-01-10 Keith Seitz <keiths@redhat.com>
13450
13451 PR gdb/23712
13452 PR symtab/23010
13453 * dwarf2read.c (dw2_add_symbol_to_list): Remove.
13454 (fixup_go_packaging, new_symbol): Use add_symbol_to_list.
13455
13456 2019-01-10 Keith Seitz <keiths@redhat.com>
13457
13458 PR gdb/23712
13459 PR symtab/23010
13460 * dictionary.c (pending_to_vector): Remove.
13461 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
13462 Remove _1 suffix, replacing functions of the same name. Update
13463 all callers.
13464 (dict_create_hashed, dict_create_hashed_expandable)
13465 (dict_create_linear, dict_create_linear_expandable, dict_free)
13466 (dict_add_symbol, dict_add_pending, dict_size, dict_empty):
13467 Make functions static.
13468
13469 2019-01-10 Keith Seitz <keiths@redhat.com>
13470
13471 PR gdb/23712
13472 PR symtab/23010
13473 * dictionary.h (struct dictionary): Replace declaration with
13474 multidictionary.
13475 (dict_create_hashed, dict_create_hashed_expandable)
13476 (dict_create_linear, dict_create_linear_expandable)
13477 (dict_free, dict_add_symbol, dict_add_pending, dict_empty)
13478 (dict_iterator_first, dict_iterator_next, dict_iter_match_first)
13479 (dict_iter_match_next, dict_size): Rename to "mdict_" versions
13480 taking multidictionary argument.
13481 [ALL_DICT_SYMBOLS]: Update for multidictionary.
13482 * block.h (struct block) <dict>: Change to multidictionary
13483 and rename `multidict'.
13484 * block.c, buildsym.c, jit.c, mdebugread.c, objfiles.c,
13485 symmisc.c: Update all dictionary references to multidictionary.
13486
13487 2019-01-10 Keith Seitz <keiths@redhat.com>
13488
13489 PR gdb/23712
13490 PR symtab/23010
13491 * dictionary.c: Include unordered_map.
13492 (pending_to_vector): New function.
13493 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
13494 Rewrite the non-"_1" functions to take vector instead
13495 of linked list.
13496 (dict_create_hashed, dict_create_linear, dict_add_pending): Use the
13497 "new" _1 versions of the same name.
13498 (multidictionary): Define.
13499 (std::hash<enum language): New definition.
13500 (collate_pending_symbols_by_language, mdict_create_hashed)
13501 (mdict_create_hashed_expandable, mdict_create_linear)
13502 (mdict_create_linear_expandable, mdict_free)
13503 (find_language_dictionary, create_new_language_dictionary)
13504 (mdict_add_symbol, mdict_add_pending, mdict_iterator_first)
13505 (mdict_iterator_next, mdict_iter_match_first, mdict_iter_match_next)
13506 (mdict_size, mdict_empty): New functions.
13507 * dictionary.h (mdict_iterator): Define.
13508
13509 2019-01-10 Pedro Alves <palves@redhat.com>
13510
13511 * breakpoint.c (read_uploaded_action)
13512 (create_tracepoint_from_upload): Adjust to use
13513 gdb::unique_xmalloc_ptr.
13514 * ctf.c (ctf_write_uploaded_tp):
13515 (SET_ARRAY_FIELD): Use emplace_back.
13516 (SET_STRING_FIELD): Adjust to use gdb::unique_xmalloc_ptr.
13517 * tracefile-tfile.c (tfile_write_uploaded_tp):
13518 * tracepoint.c (parse_tracepoint_definition): Adjust to use
13519 gdb::unique_xmalloc_ptr.
13520 * tracepoint.h (struct uploaded_tp) <cond, actions, step_actions,
13521 at_string, cond_string, cmd_strings>: Replace char pointers
13522 with gdb::unique_xmalloc_ptr.
13523
13524 2019-01-10 Pedro Alves <palves@redhat.com>
13525
13526 * solib-target.c (library_list_start_library): Don't xstrdup name.
13527
13528 2019-01-10 Pedro Alves <palves@redhat.com>
13529
13530 * mdebugread.c (parse_partial_symbols): Use
13531 gdb::unique_xmalloc_ptr to manage heap-allocated 'stabsstring'.
13532
13533 2019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
13534
13535 * linux-fork.c (scoped_switch_fork_info)
13536 <~scoped_switch_fork_info>: Fix incorrect variable name.
13537
13538 2019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
13539
13540 * linux-fork.c (scoped_switch_fork_info)
13541 <scoped_switch_fork_info>: Make explicit.
13542 <~scoped_switch_fork_info>: Wrap core in TRY/CATCH.
13543
13544 2019-01-10 Tom Tromey <tom@tromey.com>
13545
13546 * objfiles.h (objfile::reset_psymtabs): Update.
13547 * objfiles.c (objfile::objfile): Update.
13548 * psymtab.h (psymtab_storage::obstack): Update.
13549 (psymtab_storage::m_obstack): Use gdb::optional.
13550 (class psymtab_storage): Update comment. Remove objfile
13551 parameter.
13552 * psymtab.c (psymtab_storage::psymtab_storage): Update.
13553
13554 2019-01-10 Tom Tromey <tom@tromey.com>
13555
13556 * psymtab.h (psymtab_storage::allocate_psymtab): New method.
13557 <free_psymtabs>: Now private.
13558 * psymtab.c (psymtab_storage::allocate_psymtab): Implement.
13559 (allocate_psymtab): Use new method.
13560
13561 2019-01-10 Tom Tromey <tom@tromey.com>
13562
13563 * xcoffread.c (xcoff_end_psymtab): Use allocate_dependencies.
13564 * psymtab.h (psymtab_storage::allocate_dependencies): New method.
13565 * mdebugread.c (parse_partial_symbols): Use
13566 allocate_dependencies.
13567 * dwarf2read.c (dwarf2_create_include_psymtab): Use
13568 allocate_dependencies.
13569 (process_psymtab_comp_unit_reader)
13570 (build_type_psymtab_dependencies): Likewise.
13571 * dbxread.c (dbx_end_psymtab): Use allocate_dependencies.
13572
13573 2019-01-10 Tom Tromey <tom@tromey.com>
13574
13575 * psymtab.c (add_psymbol_to_bcache): Pass psymtab obstack to
13576 PSYMBOL_SET_LANGUAGE.
13577 (allocate_psymtab): Allocate psymtab on the psymtab obstack.
13578
13579 2019-01-10 Tom Tromey <tom@tromey.com>
13580
13581 * psymtab.h (psymtab_storage::obstack): New method.
13582 <m_obstack>: Rename from obstack; now private.
13583 * psymtab.c (psymtab_storage): Update.
13584 * dwarf2read.c (create_addrmap_from_index)
13585 (create_addrmap_from_aranges, dwarf2_build_psymtabs_hard):
13586 Update.
13587
13588 2019-01-10 Tom Tromey <tom@tromey.com>
13589
13590 * symfile.c (reread_symbols): Call objfile->reset_psymtabs.
13591 * objfiles.h (objfile::reset_psymtabs): New method.
13592
13593 2019-01-10 Tom Tromey <tom@tromey.com>
13594
13595 * symmisc.c (print_symbol_bcache_statistics): Update.
13596 (print_objfile_statistics): Update.
13597 * symfile.c (reread_symbols): Update.
13598 * psymtab.h (class psymtab_storage): New.
13599 * psymtab.c (psymtab_storage): New constructor.
13600 (~psymtab_storage): New destructor.
13601 (require_partial_symbols): Update.
13602 (ALL_OBJFILE_PSYMTABS_REQUIRED): Rewrite.
13603 (find_pc_sect_psymtab, find_pc_sect_psymbol)
13604 (match_partial_symbol, lookup_partial_symbol, dump_psymtab)
13605 (psym_dump, recursively_search_psymtabs, psym_has_symbols)
13606 (psym_find_compunit_symtab_by_address, sort_pst_symbols)
13607 (start_psymtab_common, end_psymtab_common)
13608 (add_psymbol_to_bcache, add_psymbol_to_list, init_psymbol_list)
13609 (allocate_psymtab): Update.
13610 (psymtab_storage::discard_psymtab): Rename from discard_psymtab.
13611 Update.
13612 (dump_psymtab_addrmap, maintenance_print_psymbols)
13613 (maintenance_check_psymtabs): Update.
13614 (class objfile_psymtabs): Move to objfiles.h.
13615 * psympriv.h (discard_psymtab): Now inline.
13616 (psymtab_discarder::psymtab_discarder): Update.
13617 (psymtab_discarder::~psymtab_discarder): Update.
13618 (ALL_OBJFILE_PSYMTABS): Rewrite.
13619 * objfiles.h (struct objfile) <psymtabs, psymtabs_addrmap,
13620 free_psymtabs, psymbol_cache, global_psymbols, static_psymbols>:
13621 Remove fields.
13622 <partial_symtabs>: New field.
13623 (class objfile_psymtabs): Move from psymtab.h. Update.
13624 * objfiles.c (objfile::objfile): Initialize partial_symtabs, not
13625 psymbol_cache.
13626 (objfile::~objfile): Don't destroy psymbol_cache.
13627 * mdebugread.c (parse_partial_symbols): Update.
13628 * dwarf2read.c (create_addrmap_from_index)
13629 (create_addrmap_from_aranges, dw2_find_pc_sect_compunit_symtab)
13630 (process_psymtab_comp_unit_reader, dwarf2_build_psymtabs_hard)
13631 (add_partial_subprogram, dwarf2_ranges_read): Update.
13632 * dwarf-index-write.c (write_address_map)
13633 (write_one_signatured_type, recursively_write_psymbols)
13634 (class debug_names, class debug_names, write_psymtabs_to_index):
13635 Update.
13636
13637 2019-01-10 Tom Tromey <tom@tromey.com>
13638
13639 * symtab.h (SYMBOL_SET_NAMES): Update.
13640 (symbol_set_names): Update.
13641 (MSYMBOL_SET_NAMES): Update.
13642 * symtab.c (symbol_set_names): Change argument to be an
13643 objfile_per_bfd_storage.
13644 * psymtab.c (add_psymbol_to_bcache): Update.
13645 * psympriv.h (PSYMBOL_SET_NAMES): Take per_bfd argument.
13646
13647 2019-01-10 Tom Tromey <tom@tromey.com>
13648
13649 * symtab.c (create_demangled_names_hash): Change argument to be an
13650 objfile_per_bfd_storage.
13651 (symbol_set_names): Update.
13652
13653 2019-01-10 Tom Tromey <tom@tromey.com>
13654
13655 * xcoffread.c (xcoff_initial_scan): Unconditionally call
13656 init_psymbol_list.
13657 * psymtab.c (init_psymbol_list): Do nothing if already called.
13658 * psympriv.h (init_psymbol_list): Add comment.
13659 * dwarf2read.c (dwarf2_build_psymtabs): Unconditionally call
13660 init_psymbol_list.
13661 * dbxread.c (dbx_symfile_read): Unconditionally call
13662 init_psymbol_list.
13663
13664 2019-01-10 Tom Tromey <tom@tromey.com>
13665
13666 * xcoffread.c (scan_xcoff_symtab): Update.
13667 * psymtab.c (add_psymbol_to_list): Replace "list" parameter with
13668 "where".
13669 * mdebugread.c (parse_partial_symbols)
13670 (handle_psymbol_enumerators): Update.
13671 * dwarf2read.c (add_partial_symbol, load_partial_dies): Update.
13672 * dbxread.c (read_dbx_symtab): Update.
13673 * psympriv.h (psymbol_placement): New enum.
13674 (add_psymbol_to_list): Update.
13675
13676 2019-01-10 Tom Tromey <tom@tromey.com>
13677
13678 * xcoffread.c (xcoff_start_psymtab): Remove global_psymbols and
13679 static_psymbols parameters.
13680 (scan_xcoff_symtab): Update.
13681 * psymtab.c (start_psymtab_common): Remove global_psymbols and
13682 static_psymbols parameters.
13683 * psympriv.h (start_psymtab_common): Update.
13684 * mdebugread.c (parse_partial_symbols): Update.
13685 * dwarf2read.c (create_partial_symtab): Update.
13686 * dbxread.c (read_dbx_symtab): Update.
13687 (start_psymtab): Remove global_psymbols and static_psymbols
13688 parameters.
13689
13690 2019-01-10 Tom Tromey <tom@tromey.com>
13691
13692 * xcoffread.c (xcoff_end_psymtab): Remove some initializations.
13693 * psymtab.c (allocate_psymtab): Add comment.
13694 * psympriv.h (allocate_psymtab): Add comment.
13695 * dwarf2read.c (dwarf2_create_include_psymtab): Remove some
13696 initializations.
13697 * dbxread.c (dbx_end_psymtab): Remove some initializations.
13698
13699 2019-01-10 Tom Tromey <tom@tromey.com>
13700
13701 * symfile.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
13702 Don't declare.
13703 * mipsread.c: Include mdebugread.h.
13704 * mdebugread.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
13705 Declare.
13706 * elfread.c: Include mdebugread.h.
13707
13708 2019-01-09 Tom Tromey <tom@tromey.com>
13709
13710 * dbxread.c (dbx_end_psymtab): Use objfile_psymtabs.
13711 * mdebugread.c (parse_partial_symbols): Use objfile_psymtabs.
13712 * psymtab.c (ALL_OBJFILE_PSYMTABS_REQUIRED): Remove.
13713 (psym_map_symtabs_matching_filename, find_pc_sect_psymtab)
13714 (psym_lookup_symbol, psym_find_last_source_symtab)
13715 (psym_forget_cached_source_info, psym_print_stats)
13716 (psym_expand_symtabs_for_function, psym_expand_all_symtabs)
13717 (psym_expand_symtabs_with_fullname, psym_map_symbol_filenames)
13718 (psym_map_matching_symbols, psym_expand_symtabs_matching)
13719 (psym_find_compunit_symtab_by_address)
13720 (maintenance_print_psymbols, maintenance_info_psymtabs)
13721 (maintenance_check_psymtabs): Use ranged for.
13722 * psymtab.h (class objfile_psymtabs): New.
13723 (require_partial_symbols): Return objfile_psymtabs.
13724 * psympriv.h (ALL_OBJFILE_PSYMTABS): Remove.
13725
13726 2019-01-09 Tom Tromey <tom@tromey.com>
13727
13728 * symfile.c (overlay_invalidate_all, find_pc_overlay)
13729 (find_pc_mapped_section, list_overlays_command)
13730 (map_overlay_command, unmap_overlay_command)
13731 (simple_overlay_update): Use all_objfiles.
13732 * spu-tdep.c (spu_overlay_update): Use all_objfiles.
13733 * printcmd.c (info_symbol_command): Use all_objfiles.
13734 * objfiles.h (ALL_OBJSECTIONS): Remove.
13735 * maint.c (maintenance_translate_address): Use all_objfiles.
13736 * gcore.c (gcore_create_callback): Use all_objfiles.
13737 (objfile_find_memory_regions): Likewise.
13738
13739 2019-01-09 Tom Tromey <tom@tromey.com>
13740
13741 * symtab.c (find_line_symtab, info_sources_command)
13742 (make_source_files_completion_list): Use objfile_compunits.
13743 * source.c (select_source_symtab): Use objfile_compunits.
13744 * objfiles.h (struct objfile): Update comment.
13745 (ALL_OBJFILES): Remove.
13746 (ALL_FILETABS): Remove.
13747 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Use
13748 objfile_compunits.
13749
13750 2019-01-09 Tom Tromey <tom@tromey.com>
13751
13752 * symmisc.c (print_objfile_statistics, dump_objfile)
13753 (maintenance_print_symbols): Use compunit_filetabs.
13754 * source.c (forget_cached_source_info_for_objfile): Use
13755 compunit_filetabs.
13756 * objfiles.h (ALL_OBJFILE_FILETABS): Remove.
13757 (ALL_FILETABS): Use compunit_filetabs.
13758 * objfiles.c (objfile_relocate1): Use compunit_filetabs.
13759 * coffread.c (coff_symtab_read): Use compunit_filetabs.
13760
13761 2019-01-09 Tom Tromey <tom@tromey.com>
13762
13763 * symtab.h (ALL_COMPUNIT_FILETABS): Remove.
13764 (compunit_filetabs): New.
13765 * symtab.c (iterate_over_some_symtabs, find_pc_sect_line): Use
13766 compunit_filetabs.
13767 (info_sources_command, make_source_files_completion_list): Remove
13768 declaration.
13769 * symmisc.c (print_objfile_statistics, dump_objfile)
13770 (maintenance_print_symbols): Remove declaration.
13771 (maintenance_info_symtabs): Use compunit_filetabs.
13772 (maintenance_info_line_tables): Likewise.
13773 * source.c (select_source_symtab): Change local variable name.
13774 (forget_cached_source_info_for_objfile): Remove declaration.
13775 * objfiles.h (ALL_OBJFILE_FILETABS): Use compunit_filetabs.
13776 * objfiles.c (objfile_relocate1): Remove declaration.
13777 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
13778 declaration.
13779 * maint.c (count_symtabs_and_blocks): Use compunit_filetabs.
13780 * coffread.c (coff_symtab_read): Remove declaration.
13781 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
13782 compunit_filetabs.
13783
13784 2019-01-09 Tom Tromey <tom@tromey.com>
13785
13786 * symtab.c (lookup_objfile_from_block)
13787 (find_pc_sect_compunit_symtab, search_symbols)
13788 (default_collect_symbol_completion_matches_break_on): Use
13789 objfile_compunits.
13790 * objfiles.h (ALL_COMPUNITS): Remove.
13791 * maint.c (count_symtabs_and_blocks): Use objfile_compunits.
13792 * cp-support.c (add_symbol_overload_list_qualified): Use
13793 objfile_compunits.
13794 * ada-lang.c (ada_collect_symbol_completion_matches)
13795 (ada_add_global_exceptions): Use objfile_compunits.
13796
13797 2019-01-09 Tom Tromey <tom@tromey.com>
13798
13799 * source.c (select_source_symtab)
13800 (forget_cached_source_info_for_objfile): Remove declaration.
13801 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
13802 declaration.
13803 * maint.c (count_symtabs_and_blocks): Remove declaration.
13804 * cp-support.c (add_symbol_overload_list_qualified): Remove
13805 declaration.
13806 * coffread.c (coff_symtab_read): Remove declaration.
13807 * symtab.c (lookup_symbol_in_objfile_symtabs)
13808 (basic_lookup_transparent_type_1): Use objfile_compunits.
13809 (lookup_objfile_from_block, find_pc_sect_compunit_symtab)
13810 (info_sources_command, search_symbols)
13811 (default_collect_symbol_completion_matches_break_on)
13812 (make_source_files_completion_list): Remove declaration.
13813 * ada-lang.c (add_nonlocal_symbols): Use objfile_compunits.
13814 (ada_collect_symbol_completion_matches)
13815 (ada_add_global_exceptions): Remove declaration.
13816 * linespec.c (iterate_over_all_matching_symtabs): Use
13817 objfile_compunits.
13818 * objfiles.h (ALL_OBJFILE_COMPUNITS): Remove.
13819 (class objfile_compunits): New.
13820 (ALL_COMPUNITS): Use objfile_compunits.
13821 * symmisc.c (print_objfile_statistics, maintenance_info_symtabs)
13822 (maintenance_check_symtabs, maintenance_info_line_tables): Use
13823 objfile_compunits.
13824 * objfiles.c (objfile_relocate1): Use objfile_compunits.
13825
13826 2019-01-09 Tom Tromey <tom@tromey.com>
13827
13828 * symtab.c (search_symbols)
13829 (default_collect_symbol_completion_matches_break_on): Use
13830 objfile_msymbols.
13831 * ada-lang.c (ada_lookup_simple_minsym)
13832 (ada_collect_symbol_completion_matches): Use objfile_msymbols.
13833 * minsyms.c (find_solib_trampoline_target): Use objfile_msymbols.
13834 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Use
13835 objfile_msymbols.
13836 * coffread.c (coff_symfile_read): Use objfile_msymbols.
13837 * symmisc.c (dump_msymbols): Use objfile_msymbols.
13838 * objc-lang.c (find_methods): Use objfile_msymbols.
13839 (info_selectors_command, info_classes_command): Likewise.
13840 * stabsread.c (scan_file_globals): Use objfile_msymbols.
13841 * objfiles.h (class objfile_msymbols): New.
13842 (ALL_OBJFILE_MSYMBOLS): Remove.
13843 (ALL_MSYMBOLS): Remove.
13844
13845 2019-01-09 Tom Tromey <tom@tromey.com>
13846
13847 * common/next-iterator.h (next_adapter): Add Iterator template
13848 parameter.
13849 * objfiles.h (ALL_OBJFILES_SAFE): Remove.
13850 (class all_objfiles_safe): New.
13851 * jit.c (jit_inferior_exit_hook): Use all_objfiles_safe.
13852 * objfiles.c (put_objfile_before): Update comment.
13853 (add_separate_debug_objfile): Likewise.
13854 (free_all_objfiles): Use all_objfiles_safe.
13855 (objfile_purge_solibs): Likewise.
13856
13857 2019-01-09 Tom Tromey <tom@tromey.com>
13858
13859 * symtab.c (iterate_over_symtabs, matching_obj_sections)
13860 (expand_symtab_containing_pc, lookup_static_symbol)
13861 (basic_lookup_transparent_type, find_pc_sect_compunit_symtab)
13862 (find_symbol_at_address, find_line_symtab, find_main_name): Use
13863 all_objfiles.
13864 * probe.c (find_probe_by_pc, collect_probes): Use all_objfiles.
13865 * breakpoint.c (create_overlay_event_breakpoint)
13866 (create_longjmp_master_breakpoint)
13867 (create_std_terminate_master_breakpoint)
13868 (create_exception_master_breakpoint): Use all_objfiles.
13869 * linux-thread-db.c (try_thread_db_load_from_pdir)
13870 (has_libpthread): Use all_objfiles.
13871 * ada-lang.c (add_nonlocal_symbols): Use all_objfiles.
13872 * linespec.c (iterate_over_all_matching_symtabs)
13873 (search_minsyms_for_name): Use all_objfiles.
13874 * maint.c (maintenance_info_sections): Use all_objfiles.
13875 * main.c (captured_main_1): Use all_objfiles.
13876 * spu-tdep.c (spu_objfile_from_frame): Use all_objfiles.
13877 * guile/scm-objfile.c (gdbscm_objfiles): Use all_objfiles.
13878 * guile/scm-pretty-print.c
13879 (ppscm_find_pretty_printer_from_objfiles): Use all_objfiles.
13880 * solib-spu.c (append_ocl_sos): Use all_objfiles.
13881 * symmisc.c (maintenance_print_symbols): Use all_objfiles.
13882 (maintenance_print_msymbols): Use all_objfiles.
13883 * source.c (select_source_symtab): Use all_objfiles.
13884 * jit.c (jit_find_objf_with_entry_addr): Use all_objfiles.
13885 * symfile.c (remove_symbol_file_command)
13886 (expand_symtabs_matching, map_symbol_filenames): Use
13887 all_objfiles.
13888 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created): Use
13889 all_objfiles.
13890 * dwarf2-frame.c (dwarf2_frame_find_fde): Use all_objfiles.
13891 * objc-lang.c (find_methods): Use all_objfiles.
13892 * objfiles.c (have_partial_symbols, have_full_symbols)
13893 (have_minimal_symbols, qsort_cmp)
13894 (default_iterate_over_objfiles_in_search_order): Use
13895 all_objfiles.
13896 * hppa-tdep.c (find_unwind_entry): Use all_objfiles.
13897 * psymtab.c (maintenance_print_psymbols): Use all_objfiles.
13898 (maintenance_check_psymtabs): Use all_objfiles.
13899 (ALL_PSYMTABS): Remove.
13900 * compile/compile-object-run.c (do_module_cleanup): Use
13901 all_objfiles.
13902 * blockframe.c (find_pc_partial_function): Use all_objfiles.
13903 * cp-support.c (add_symbol_overload_list_qualified): Use
13904 all_objfiles.
13905 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
13906 Use all_objfiles.
13907 * dwarf-index-write.c (save_gdb_index_command): Use all_objfiles.
13908 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): Use
13909 all_objfiles.
13910 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
13911 (objfpy_lookup_objfile_by_build_id): Use all_objfiles.
13912 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
13913 Uses all_objfiles.
13914 * solib.c (solib_read_symbols): Use all_objfiles
13915
13916 2019-01-09 Tom Tromey <tom@tromey.com>
13917
13918 * probe.c (parse_probes_in_pspace): Use all_objfiles.
13919 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Use
13920 all_objfiles.
13921 * objfiles.h (ALL_PSPACE_OBJFILES): Remove.
13922 * symmisc.c (print_symbol_bcache_statistics)
13923 (print_objfile_statistics, maintenance_print_objfiles)
13924 (maintenance_info_symtabs, maintenance_check_symtabs)
13925 (maintenance_expand_symtabs, maintenance_info_line_tables): Use
13926 all_objfiles.
13927 * source.c (forget_cached_source_info): Use all_objfiles.
13928 * symfile-debug.c (set_debug_symfile): Use all_objfiles.
13929 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
13930 (elf_gnu_ifunc_resolve_by_got): Use all_objfiles.
13931 * objfiles.c (update_section_map): Use all_objfiles.
13932 (shared_objfile_contains_address_p): Likewise.
13933 * psymtab.c (maintenance_info_psymtabs): Use all_objfiles.
13934 * python/py-progspace.c (pspy_get_objfiles): Use all_objfiles.
13935
13936 2019-01-09 Tom Tromey <tom@tromey.com>
13937
13938 * common/next-iterator.h: New file.
13939 * objfiles.h (class all_objfiles): New.
13940 (struct objfile_iterator): New.
13941
13942 2019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13943
13944 * NEWS: Move the description of the changed "frame", "select-frame",
13945 and "info frame" commands to the Changed commands section.
13946
13947 2019-01-09 Simon Marchi <simon.marchi@ericsson.com>
13948
13949 * gdbtypes.c (check_stub_method_group): Remove handling of old
13950 mangling schemes.
13951 * linespec.c (find_methods): Likewise.
13952 * stabsread.c (read_member_functions): Likewise.
13953 * valops.c (search_struct_method): Likewise.
13954 (value_struct_elt_for_reference): Likewise.
13955 * NEWS: Mention this change.
13956
13957 2019-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
13958
13959 * cli/cli-cmds.c (list_command): Pass a source_lines_range to
13960 print_source_lines.
13961 * source.c (print_source_lines_base): Update line number check.
13962 (print_source_lines): New function.
13963 (source_lines_range::source_lines_range): New function.
13964 * source.h (class source_lines_range): New class.
13965 (print_source_lines): New declaration.
13966
13967 2019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13968
13969 * linespec.c (linespec_state_destructor): Free self->canonical_names.
13970
13971 2019-01-08 Tom Tromey <tom@tromey.com>
13972 Simon Marchi <simon.marchi@ericsson.com>
13973
13974 PR gdb/24060
13975 * ada-exp.y (DOLLAR_VARIABLE): Rename from SPECIAL_VARIABLE.
13976 * ada-lex.l (DOLLAR_VARIABLE): Likewise.
13977 * c-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
13978 * f-exp.y (DOLLAR_VARIABLE): Likewise.
13979 * m2-exp.y (DOLLAR_VARIABLE): Rename from INTERNAL_VAR.
13980 * p-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
13981
13982 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
13983
13984 * source.c (select_source_symtab): Move header comment to
13985 declaration in source.h.
13986 (forget_cached_source_info_for_objfile): Likewise.
13987 (forget_cached_source_info): Likewise.
13988 (identify_source_line): Likewise.
13989 * source.h (identify_source_line): Move declaration from symtab.h
13990 and add comment from source.c
13991 (print_source_lines): Likewise.
13992 (forget_cached_source_info_for_objfile): Likewise.
13993 (forget_cached_source_info): Likewise.
13994 (select_source_symtab): Likewise.
13995 (enum print_source_lines_flag): Move definition from symtab.h.
13996 * symtab.h (identify_source_line): Move declaration to source.h.
13997 (print_source_lines): Likewise.
13998 (forget_cached_source_info_for_objfile): Likewise.
13999 (forget_cached_source_info): Likewise.
14000 (select_source_symtab): Likewise.
14001 (enum print_source_lines_flag): Move definition to source.h.
14002 * tui/tui-hooks.c: Add 'source.h' include.
14003
14004 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
14005
14006 * source.c (print_source_lines_base): Handle requests to print
14007 reverse line number sequences, and guard against empty lines
14008 string.
14009
14010 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
14011
14012 * source.c (print_source_lines_base): Fix skip of '\r' if next
14013 character is '\n'.
14014
14015 2019-01-06 Tom Tromey <tom@tromey.com>
14016
14017 * c-exp.y (struct c_parse_state) <macro_original_text,
14018 expansion_obstack>: New member.
14019 (macro_original_text, expansion_obstack): Remove globals.
14020 (scan_macro_expansion, scanning_macro_expansion)
14021 (finished_macro_expansion): Update.
14022 (scan_macro_cleanup): Remove.
14023 (yylex, c_parse): Update.
14024
14025 2019-01-06 Tom Tromey <tom@tromey.com>
14026
14027 * c-exp.y (struct c_parse_state) <strings>: New member.
14028 (operator_stoken): Update.
14029
14030 2019-01-06 Tom Tromey <tom@tromey.com>
14031
14032 * parser-defs.h (type_ptr): Remove typedef. Don't declare VEC.
14033 (union type_stack_elt) <typelist_val>: Now a pointer to
14034 std::vector.
14035 (type_stack_cleanup): Don't declare.
14036 (push_typelist): Update.
14037 * parse.c (pop_typelist): Return a std::vector.
14038 (push_typelist): Take a std::vector.
14039 (follow_types): Update. Do not free args.
14040 (type_stack_cleanup): Remove.
14041 * c-exp.y (struct c_parse_state): New.
14042 (cpstate): New global.
14043 (type_aggregate_p, exp, ptr_operator, parameter_typelist)
14044 (nonempty_typelist): Update.
14045 (func_mod): Create a new vector.
14046 (c_parse): Create a c_parse_state.
14047 (check_parameter_typelist): Do not delete params.
14048 (function_method): Update. Do not delete type_list.
14049
14050 2019-01-06 Tom Tromey <tom@tromey.com>
14051
14052 PR gdb/28155:
14053 * python/py-finishbreakpoint.c (bpfinishpy_init): Use
14054 check_typedef.
14055 * infcmd.c (finish_command_fsm_should_stop): Use check_typedef.
14056 (print_return_value): Likewise.
14057
14058 2019-01-05 Tom Tromey <tom@tromey.com>
14059
14060 * contrib/cleanup_check.py: Remove.
14061 * contrib/gcc-with-excheck: Remove.
14062 * contrib/exsummary.py: Remove.
14063 * contrib/excheck.py: Remove.
14064
14065 2019-01-05 Joel Brobecker <brobecker@adacore.com>
14066
14067 * thread.c (delete_thread_1): Add gdb_assert that THR is not
14068 NULL. Initialize tpprev to NULL instead of assigning it
14069 to NULL on the next statement.
14070 * windows-nat.c (windows_delete_thread): Remove check for
14071 main_thread_id before printing thread exit notifications.
14072 (get_windows_debug_event) <EXIT_THREAD_DEBUG_EVENT>:
14073 Remove thread ID check against main_thread_id.
14074 <CREATE_PROCESS_DEBUG_EVENT>: Remove call to
14075 windows_delete_thread.
14076 <EXIT_PROCESS_DEBUG_EVENT>: Add call to windows_delete_thread.
14077
14078 2019-01-04 Tom Tromey <tom@tromey.com>
14079
14080 * compile/compile.c (_initialize_compile): Use upper case for
14081 metasyntactic variables.
14082 * symmisc.c (_initialize_symmisc): Use upper case for
14083 metasyntactic variables.
14084 * psymtab.c (_initialize_psymtab): Use upper case for
14085 metasyntactic variables.
14086 * demangle.c (demangle_command): Use upper case for metasyntactic
14087 variables.
14088 (_initialize_demangler): Likewise.
14089 * ax-gdb.c (_initialize_ax_gdb): Use upper case for metasyntactic
14090 variables.
14091
14092 2019-01-03 Tom Tromey <tom@tromey.com>
14093
14094 * tui/tui-source.c (tui_set_source_content): Use xstrdup.
14095
14096 2019-01-03 Tom Tromey <tom@tromey.com>
14097
14098 * python/py-symtab.c (salpy_str): Update.
14099 (struct salpy_sal_object) <symtab>: Now a PyObject.
14100 (salpy_dealloc): Update.
14101 (del_objfile_sal): Use gdbpy_ref.
14102
14103 2019-01-03 Tom Tromey <tom@tromey.com>
14104
14105 * python/py-type.c (convert_field): Use new_reference. Return
14106 gdbpy_ref.
14107 (make_fielditem): Return gdbpy_ref.
14108 (typy_fields): Update.
14109 (typy_getitem): Update.
14110 (field_name): Return gdbpy_ref. Use new_reference.
14111 (typy_iterator_iternext): Update.
14112
14113 2019-01-03 Tom Tromey <tom@tromey.com>
14114
14115 * python/py-record.c (gdbpy_stop_recording): Use Py_RETURN_NONE.
14116
14117 2019-01-03 Tom Tromey <tom@tromey.com>
14118
14119 * python/py-value.c (valpy_dealloc): Use Py_XDECREF.
14120 * python/py-type.c (typy_fields_items): Use gdbpy_ref.
14121 * python/py-progspace.c (pspy_set_printers): Use gdbpy_ref.
14122 (pspy_set_frame_filters, pspy_set_frame_unwinders)
14123 (pspy_set_type_printers): Likewise.
14124 * python/py-function.c (fnpy_init): Use gdbpy_ref.
14125 * python/py-cmd.c (cmdpy_init): Use gdbpy_ref.
14126 * python/py-objfile.c (objfpy_set_printers): Use gdbpy_ref.
14127 (objfpy_set_frame_filters, objfpy_set_frame_unwinders)
14128 (objfpy_set_type_printers): Likewise.
14129
14130 2019-01-03 Tom Tromey <tom@tromey.com>
14131
14132 * python/python.c (gdbpy_enter, ~gdbpy_enter): Update.
14133 (gdbpy_print_stack): Use gdbpy_err_fetch.
14134 * python/python-internal.h (class gdbpy_err_fetch): New class.
14135 (class gdbpy_enter) <m_error_type, m_error_value,
14136 m_error_traceback>: Remove.
14137 <m_error>: New member.
14138 (gdbpy_exception_to_string): Don't declare.
14139 * python/py-varobj.c (py_varobj_iter_next): Use gdbpy_err_fetch.
14140 * python/py-value.c (convert_value_from_python): Use
14141 gdbpy_err_fetch.
14142 * python/py-utils.c (gdbpy_err_fetch::to_string): Rename from
14143 gdbpy_exception_to_string.
14144 (gdbpy_handle_exception): Use gdbpy_err_fetch.
14145 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
14146 gdbpy_err_fetch.
14147
14148 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14149
14150 * linux-nat.c (delete_lwp_cleanup): Delete.
14151 (struct lwp_deleter): New struct.
14152 (lwp_info_up): New typedef.
14153 (linux_nat_target::follow_fork): Delete cleanup, and make use of
14154 lwp_info_up.
14155
14156 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14157
14158 * linux-fork.c (class scoped_switch_fork_info): New class.
14159 (inferior_call_waitpid): Update to use scoped_switch_fork_info.
14160
14161 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14162
14163 * valops.c (find_overload_match): Remove use of null_cleanup, and
14164 calls to do_cleanups.
14165
14166 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14167
14168 * compile/compile-cplus-types.c
14169 (compile_cplus_instance::decl_name): Handle changes to
14170 cp_func_name.
14171 * cp-support.c (cp_func_name): Update header comment, update
14172 return type.
14173 * cp-support.h (cp_func_name): Update return type in declaration.
14174 * valops.c (find_overload_match): Move temp_func local to top
14175 level of function and change its type. Use temp_func to hold and
14176 delete temporary string obtained from cp_func_name.
14177
14178 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14179
14180 * remote.c (remote_target::remote_check_symbols): Convert `msg` to
14181 gdb::char_vector, remove cleanup, and update uses of `msg`.
14182
14183 2019-01-03 Jim Wilson <jimw@sifive.com>
14184
14185 * riscv-tdep.c (riscv_freg_feature): Drop s0 name from f8.
14186
14187 2019-01-02 Tom Tromey <tom@tromey.com>
14188
14189 * xml-tdesc.c (xml_cache): Hold a target_desc_up.
14190 (tdesc_parse_xml): Remove cleanups.
14191 * target-descriptions.h (make_cleanup_free_target_description):
14192 Don't declare.
14193 (target_desc_deleter): New struct.
14194 (target_desc_up): New typedef.
14195 * target-descriptions.c (target_desc_deleter::operator()): Rename
14196 from free_target_description.
14197 (make_cleanup_free_target_description): Remove.
14198
14199 2019-01-02 Tom Tromey <tom@tromey.com>
14200
14201 * linespec.c (struct linespec_parser): Rename from ls_parser. Add
14202 constructor, destructor.
14203 (linespec_parser): Remove typedef.
14204 (~linespec_parser): Rename from linespec_parser_delete.
14205 (linespec_lex_to_end, linespec_complete_label)
14206 (linespec_complete): Update.
14207 (decode_line_full): Remove cleanups.
14208 (decode_line_1): Update.
14209
14210 2019-01-02 Tom Tromey <tom@tromey.com>
14211
14212 * python/python-internal.h (inferior_to_inferior_object): Change
14213 return type.
14214 * python/py-exitedevent.c (create_exited_event_object): Update.
14215 * python/py-inferior.c (inferior_to_inferior_object): Return
14216 gdbpy_ref.
14217 (python_new_inferior, python_inferior_deleted)
14218 (thread_to_thread_object, delete_thread_object)
14219 (build_inferior_list, gdbpy_selected_inferior): Update.
14220 * python/py-infthread.c (create_thread_object): Update. Also fail
14221 if inferior_to_inferior_object fails.
14222
14223 2019-01-02 Simon Marchi <simon.marchi@ericsson.com>
14224
14225 * inferior.h (class inferior) <displaced_step_state>: New field.
14226 * infrun.h (struct displaced_step_state): Move here from
14227 infrun.c. Initialize fields, add constructor.
14228 <inf>: Remove field.
14229 <reset>: New method.
14230 * infrun.c (struct displaced_step_inferior_state): Move to
14231 infrun.h.
14232 (displaced_step_inferior_states): Remove.
14233 (get_displaced_stepping_state): Adust.
14234 (displaced_step_in_progress_any_inferior): Adjust.
14235 (displaced_step_in_progress_thread): Adjust.
14236 (displaced_step_in_progress): Adjust.
14237 (add_displaced_stepping_state): Remove.
14238 (get_displaced_step_closure_by_addr): Adjust.
14239 (remove_displaced_stepping_state): Remove.
14240 (infrun_inferior_exit): Call displaced_step_state.reset.
14241 (use_displaced_stepping): Don't check for NULL.
14242 (displaced_step_prepare_throw): Call
14243 get_displaced_stepping_state.
14244 (displaced_step_fixup): Don't check for NULL.
14245 (prepare_for_detach): Don't check for NULL.
14246
14247 2019-01-02 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14248
14249 * infcall.c (call_function_by_hand_dummy): cleanup/destroy sm
14250 in case of call that did not complete.
14251
14252 2019-01-02 Andrey Utkin <autkin@undo.io>
14253
14254 * symfile.c (find_separate_debug_file): Fix search of debug files for
14255 remote debuggee.
14256
14257 2019-01-02 Tom Tromey <tom@tromey.com>
14258
14259 * python/py-inferior.c (gdbpy_initialize_inferior): Fix
14260 indentation.
14261 * python/py-frame.c (frapy_older): Remove cast.
14262 (frapy_newer): Likewise.
14263 * python/py-breakpoint.c (local_setattro): Remove cast.
14264 * python/py-arch.c (archpy_name): Remove local variable.
14265 * python/py-type.c (gdbpy_lookup_type): Remove cast.
14266
14267 2019-01-02 Joel Brobecker <brobecker@adacore.com>
14268
14269 * unittests/basic_string_view/element_access/char/empty.cc:
14270 Fix year range in copyright header.
14271
14272 2019-01-01 Andrew Burgess <andrew.burgess@embecosm.com>
14273
14274 * arch/riscv.h (struct riscv_gdbarch_features) <hw_float_abi>:
14275 Delete.
14276 <operator==>: Update with for removed field.
14277 <hash>: Likewise.
14278 * riscv-tdep.h (struct gdbarch_tdep) <features>: Renamed to...
14279 <isa_features>: ...this.
14280 <abi_features>: New field.
14281 (riscv_isa_flen): Update comment.
14282 (riscv_abi_xlen): New declaration.
14283 (riscv_abi_flen): New declaration.
14284 * riscv-tdep.c (riscv_isa_xlen): Update to get answer from
14285 isa_features.
14286 (riscv_abi_xlen): New function.
14287 (riscv_isa_flen): Update to get answer from isa_features.
14288 (riscv_abi_flen): New function.
14289 (riscv_has_fp_abi): Update to get answer from abi_features.
14290 (riscv_call_info::riscv_call_info): Use abi xlen and flen, not isa
14291 xlen and flen.
14292 (riscv_call_info) <xlen, flen>: Update comment.
14293 (riscv_call_arg_struct): Remove invalid assertions
14294 (riscv_features_from_gdbarch_info): Update now hw_float_abi field
14295 is removed.
14296 (riscv_gdbarch_init): Gather isa features and abi features
14297 separately, ensure both match on the gdbarch when reusing an old
14298 gdbarch. Relax an error check to allow 32-bit abi float to run on
14299 a target with 64-bit float hardware.
14300
14301 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14302
14303 * source.c (search_command_helper): Stop reverse search
14304 when line 1 has been searched.
14305
14306 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14307
14308 * record-full.c (record_full_base_target::close): Rewrite
14309 record_full_core_buf_list free logic.
14310
14311 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14312
14313 * break-catch-syscall.c (print_one_catch_syscall): xfree
14314 the last text.
14315
14316 2019-01-01 Joel Brobecker <brobecker@adacore.com>
14317
14318 * top.c (print_gdb_version): Update Copyright year in version
14319 message.
14320
14321 2019-01-01 Joel Brobecker <brobecker@adacore.com>
14322
14323 Update copyright year range in all GDB files.
14324
14325 2019-01-01, 19 Joel Brobecker <brobecker@adacore.com>
14326
14327 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2018.
14328
14329 For older changes see ChangeLog-2018.
14330 \f
14331 Local Variables:
14332 mode: change-log
14333 left-margin: 8
14334 fill-column: 74
14335 version-control: never
14336 coding: utf-8
14337 End:
14338
This page took 0.312922 seconds and 5 git commands to generate.