Use libxxhash for hashing, if present
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
ccb1ba62
CB
12019-10-22 Christian Biesinger <cbiesinger@google.com>
2
3 * Makefile.in: Link with libxxhash.
4 * config.in: Regenerate.
5 * configure: Regenerate.
6 * configure.ac: Search for libxxhash.
7 * utils.c (fast_hash): Use xxhash if present.
8
1a6ff1a9
CB
92019-10-22 Christian Biesinger <cbiesinger@google.com>
10
11 * utils.h (fast_hash): New function.
12 * symtab.c (hash_demangled_name_entry): Call new function
13 fast_hash.
14
7bb43059
CB
152019-10-22 Christian Biesinger <cbiesinger@google.com>
16
17 * symtab.c (struct demangled_name_entry): Change type of mangled
18 to gdb::string_view. Also adds a constructor that takes the
19 mangled name.
20 (hash_demangled_name_entry): Update.
21 (eq_demangled_name_entry): Update.
22 (free_demangled_name_entry): New function to call the destructor
23 now that this is not a POD anymore.
24 (create_demangled_names_hash): Pass free_demangled_name_entry to
25 htab_create_alloc.
26 (symbol_set_names): Update.
27
7ba99d21
AT
282019-10-21 Ali Tamur <tamu@google.com>
29
30 * dwarf2read.c (dir_index): Change type.
31 (file_name_index): Likewise.
32 (line_header::include_dir_at): Change comment and implementation on
33 whether it is DWARF 5.
34 (line_header::is_valid_file_index): New function.
35 (line_header::file_name_at): Change comment and implementation on
36 whether it is DWARF 5.
37 (line_header::file_names): Change to private field renamed as
38 m_file_names and introduce a new accessor method.
39 (line_header::file_names_size): New method.
40 (line_header::include_dirs): Change to private field and rename as
41 m_include_dirs.
42 (dw2_get_file_names_reader): Define local var at a smaller scope and
43 reflect API change.
44 (dwarf2_cu::setup_type_unit_groups): Reflect API change.
45 (process_structure_scope): Likewise.
46 (line_header::add_include_dir): Change message and reflect renaming.
47 (line_header::add_file_name): Likewise.
48 (read_formatted_entries): Handle DW_FORM_data16.
49 (dwarf_decode_line_header): Fix line header length calculation.
50 (psymtab_include_file_name): Change comment and API.
51 (lnp_state_machine::m_file): Update comment and reflect type change.
52 (lnp_state_machine::record_line): Reflect type change.
53 (dwarf_decode_lines): Reflect API change.
54 (file_file_name): Likewise.
55 (file_full_name): Likewise.
56
45f47c3a
AB
572019-10-21 Andrew Burgess <andrew.burgess@embecosm.com>
58
59 * objfiles.c (sort_cmp): Ensure that !(a < a) holds true.
60
e5f3c0e3
TT
612019-10-21 Tom Tromey <tom@tromey.com>
62
63 * tui/tui-winsource.h (tui_exec_info_content): Remove typedef.
64
a0a461e5
TT
652019-10-21 Tom Tromey <tom@tromey.com>
66
67 * configure.ac (nm.h): Conditionally create nm.h link. Subst
68 NM_H. Use AC_CONFIG_LINKS.
69 * configure: Rebuild.
70 * Makefile.in (NM_H): New variable.
71 (generated_files): Add NM_H. Remove gcore.
72 (nm.h, stamp-nmh): New targets.
73
54d83b8d
TT
742019-10-20 Tom Tromey <tom@tromey.com>
75
76 * objfiles.h (unlink_objfile, put_objfile_before): Don't declare.
77 * objfiles.c (unlink_objfile): Move earlier. Now static. Remove
78 obsolete comment.
79 (put_objfile_before): Now static.
80
23771117
SM
812019-10-19 Simon Marchi <simon.marchi@polymtl.ca>
82
83 * gdbsupport/common-utils.h (startswith): Change return type to
84 bool.
85
39ef2f62
CB
862019-10-19 Christian Biesinger <cbiesinger@google.com>
87
88 * bcache.c (bcache::print_statistics): Use std::sort instead of qsort.
89 * breakpoint.c (bp_locations_compare): Rename to...
90 (bp_location_is_less_than): ...this, and change to std::sort semantics.
91 (update_global_location_list): Use std::sort instead of qsort.
92 * buildsym.c (compare_line_numbers): Rename to...
93 (lte_is_less_than): ...this, and change to std::sort semantics.
94 (buildsym_compunit::end_symtab_with_blockvector): Use std::sort
95 instead of qsort.
96 * disasm.c (compare_lines): Rename to...
97 (line_is_less_than): ...this, and change to std::sort semantics.
98 (do_mixed_source_and_assembly_deprecated): Call std::sort instead
99 of qsort.
100 * dwarf2-frame.c (qsort_fde_cmp): Rename to...
101 (fde_is_less_than): ...this, and change to std::sort semantics.
102 (dwarf2_build_frame_info): Call std::sort instead of qsort.
103 * mdebugread.c (compare_blocks):
104 (block_is_less_than): ...this, and change to std::sort semantics.
105 (sort_blocks): Call std::sort instead of qsort.
106 * objfiles.c (qsort_cmp): Rename to...
107 (sort_cmp): ...this, and change to std::sort semantics.
108 (update_section_map): Call std::sort instead of qsort.
109 * remote.c (compare_pnums): Remove.
110 (map_regcache_remote_table): Call std::sort instead of qsort.
111 * utils.c (compare_positive_ints): Remove.
112 * utils.h (compare_positive_ints): Remove.
113 * xcoffread.c (compare_lte): Remove.
114 (arrange_linetable): Call std::sort instead of qsort.
115
f71433ee
SDJ
1162019-10-19 Sergio Durigan Junior <sergiodj@redhat.com>
117
118 * symfile.c (init_entry_point_info): Fix typo.
119 * i386-darwin-tdep.c (darwin_dwarf_signal_frame_p): Fix typo.
120
85102364
TV
1212019-10-18 Tom de Vries <tdevries@suse.de>
122
123 * aarch64-tdep.c: Fix typos in comments.
124 * ada-lang.c: Same.
125 * ada-tasks.c: Same.
126 * alpha-tdep.c: Same.
127 * alpha-tdep.h: Same.
128 * amd64-nat.c: Same.
129 * amd64-windows-tdep.c: Same.
130 * arc-tdep.c: Same.
131 * arc-tdep.h: Same.
132 * arch-utils.c: Same.
133 * arm-nbsd-tdep.c: Same.
134 * arm-tdep.c: Same.
135 * ax-gdb.c: Same.
136 * blockframe.c: Same.
137 * btrace.c: Same.
138 * c-varobj.c: Same.
139 * coff-pe-read.c: Same.
140 * coffread.c: Same.
141 * cris-tdep.c: Same.
142 * darwin-nat.c: Same.
143 * dbxread.c: Same.
144 * dcache.c: Same.
145 * disasm.c: Same.
146 * dtrace-probe.c: Same.
147 * dwarf-index-write.c: Same.
148 * dwarf2-frame-tailcall.c: Same.
149 * dwarf2-frame.c: Same.
150 * dwarf2read.c: Same.
151 * eval.c: Same.
152 * exceptions.c: Same.
153 * fbsd-tdep.c: Same.
154 * findvar.c: Same.
155 * frame.c: Same.
156 * frv-tdep.c: Same.
157 * gnu-v3-abi.c: Same.
158 * go32-nat.c: Same.
159 * h8300-tdep.c: Same.
160 * hppa-tdep.c: Same.
161 * i386-linux-tdep.c: Same.
162 * i386-tdep.c: Same.
163 * ia64-libunwind-tdep.c: Same.
164 * ia64-tdep.c: Same.
165 * infcmd.c: Same.
166 * infrun.c: Same.
167 * linespec.c: Same.
168 * linux-nat.c: Same.
169 * linux-thread-db.c: Same.
170 * machoread.c: Same.
171 * mdebugread.c: Same.
172 * mep-tdep.c: Same.
173 * mn10300-tdep.c: Same.
174 * namespace.c: Same.
175 * objfiles.c: Same.
176 * opencl-lang.c: Same.
177 * or1k-tdep.c: Same.
178 * osabi.c: Same.
179 * ppc-linux-nat.c: Same.
180 * ppc-linux-tdep.c: Same.
181 * ppc-sysv-tdep.c: Same.
182 * printcmd.c: Same.
183 * procfs.c: Same.
184 * record-btrace.c: Same.
185 * record-full.c: Same.
186 * remote-fileio.c: Same.
187 * remote.c: Same.
188 * rs6000-tdep.c: Same.
189 * s12z-tdep.c: Same.
190 * score-tdep.c: Same.
191 * ser-base.c: Same.
192 * ser-go32.c: Same.
193 * skip.c: Same.
194 * sol-thread.c: Same.
195 * solib-svr4.c: Same.
196 * solib.c: Same.
197 * source.c: Same.
198 * sparc-nat.c: Same.
199 * sparc-sol2-tdep.c: Same.
200 * sparc-tdep.c: Same.
201 * sparc64-tdep.c: Same.
202 * stabsread.c: Same.
203 * stack.c: Same.
204 * symfile.c: Same.
205 * symtab.c: Same.
206 * target-descriptions.c: Same.
207 * target-float.c: Same.
208 * thread.c: Same.
209 * utils.c: Same.
210 * valops.c: Same.
211 * valprint.c: Same.
212 * value.c: Same.
213 * varobj.c: Same.
214 * windows-nat.c: Same.
215 * xcoffread.c: Same.
216 * xstormy16-tdep.c: Same.
217 * xtensa-tdep.c: Same.
218
c5adaa19
TT
2192019-10-17 Tom Tromey <tromey@adacore.com>
220
221 * configure: Rebuild.
222 * configure.ac: Use AC_CONFIG_HEADERS. Create stamp-h there, not
223 in AC_CONFIG_FILES invocation.
224 * Makefile.in (Makefile, data-directory/Makefile, stamp-h): Use
225 new-style config.status invocation.
226
405feb71
TV
2272019-10-17 Tom de Vries <tdevries@suse.de>
228
229 * arm-nbsd-nat.c: Fix typos in comments.
230 * arm-tdep.c: Same.
231 * darwin-nat-info.c: Same.
232 * dwarf2read.c: Same.
233 * elfread.c: Same.
234 * event-top.c: Same.
235 * findvar.c: Same.
236 * gdbtypes.c: Same.
237 * hppa-tdep.c: Same.
238 * i386-tdep.c: Same.
239 * jit.c: Same.
240 * main.c: Same.
241 * mdebugread.c: Same.
242 * moxie-tdep.c: Same.
243 * nto-procfs.c: Same.
244 * osabi.c: Same.
245 * ppc-linux-tdep.c: Same.
246 * remote.c: Same.
247 * riscv-tdep.c: Same.
248 * s390-tdep.c: Same.
249 * sh-tdep.c: Same.
250 * sparc-linux-tdep.c: Same.
251 * sparc-nat.c: Same.
252 * stack.c: Same.
253 * target-descriptions.c: Same.
254 * top.c: Same.
255 * varobj.c: Same.
256
befcd486
TT
2572019-10-16 Tom Tromey <tom@tromey.com>
258
259 * objfiles.h (struct objfile) <original_name>: Now const.
260
17bfe554
CB
2612019-10-16 Christian Biesinger <cbiesinger@google.com>
262
263 * gdbsupport/gdb_setjmp.h (SIGSETJMP): Allow passing in the value to
264 pass on to sigsetjmp's second argument.
265 * cp-support.c (gdb_demangle): Unblock SIGSEGV if we caught a crash.
266
950b7495
KS
2672019-10-16 Keith Seitz <keiths@redhat.com>
268
269 PR gdb/23567
270 * dwarf2read.c (dwarf2_per_objfile::locate_sections): Discard
271 sections whose size is greater than the file size.
272
ff371ec9
JW
2732019-10-16 Jim Wilson <jimw@sifive.com>
274
275 * riscv-tdep.c (riscv_gcc_target_options): New.
276 (riscv_gnu_triplet_regexp): New.
277 (riscv_gdbarch_init): Call set_gdbarch_gcc_triplet_options and
278 set_gdbarch_gnu_triplet_regexp.
279
fec4e896
CB
2802019-10-16 Christian Biesinger <cbiesinger@google.com>
281
282 * Makefile.in: Add xml-builtin.h.
283 * features/feature_to_c.sh: Add an include for xml-builtin.h
284 to ensure that the compiler checks that the types match.
285 * xml-builtin.h: New file.
286 * xml-support.c (fetch_xml_builtin): Add missing const.
287 * xml-support.h: Remove declaration of xml_builtins.
288
d10eccaa
TV
2892019-10-16 Tom de Vries <tdevries@suse.de>
290
291 PR tdep/25096
292 * amd64-tdep.c (amd64_classify_aggregate_field): Factor out of ...
293 (amd64_classify_aggregate): ... here.
294 (amd64_classify_aggregate_field): Handled fiels of nested structs
295 recursively.
296
745ff14e
TV
2972019-10-16 Tom de Vries <tdevries@suse.de>
298
299 PR tdep/24104
300 * amd64-tdep.c (amd64_push_arguments): Handle AMD64_NO_CLASS in loop
301 that handles 'theclass'.
302
791b7405
AB
3032019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
304
305 * linespec.c (decode_digits_ordinary): Update comment.
306 * make-target-delegates: No longer need to handle VEC case.
307 * memrange.c (normalize_mem_ranges): Update comment.
308 * namespace.c (add_using_directive): Update comment.
309 * objc-lang.c (uniquify_strings): Update comment.
310 * ppc-linux-nat.c (struct thread_points): Update comment.
311 * probe.h (find_probes_in_objfile): Update comment.
312 * target.h (enum flash_preserve_mode): Update comment.
313 * varobj.c (varobj_restrict_range): Update comment.
314 * varobj.h (varobj_list_children): Update comment.
315
0dc32745
AB
3162019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
317
318 * Makefile.in: Remove references to vec.h and vec.c.
319 * aarch64-tdep.c: No longer include vec.h.
320 * ada-lang.c: Likewise.
321 * ada-lang.h: Likewise.
322 * arm-tdep.c: Likewise.
323 * ax.h: Likewise.
324 * breakpoint.h: Likewise.
325 * charset.c: Likewise.
326 * cp-support.h: Likewise.
327 * dtrace-probe.c: Likewise.
328 * dwarf2read.c: Likewise.
329 * extension.h: Likewise.
330 * gdb_bfd.c: Likewise.
331 * gdbsupport/gdb_vecs.h: Likewise.
332 * gdbsupport/vec.c: Remove.
333 * gdbsupport/vec.h: Remove.
334 * gdbthread.h: Likewise.
335 * guile/scm-type.c: Likewise.
336 * inline-frame.c: Likewise.
337 * machoread.c: Likewise.
338 * memattr.c: Likewise.
339 * memrange.h: Likewise.
340 * namespace.h: Likewise.
341 * nat/linux-btrace.h: Likewise.
342 * osdata.c: Likewise.
343 * parser-defs.h: Likewise.
344 * progspace.h: Likewise.
345 * python/py-type.c: Likewise.
346 * record-btrace.c: Likewise.
347 * rust-exp.y: Likewise.
348 * solib-target.c: Likewise.
349 * stap-probe.c: Likewise.
350 * target-descriptions.c: Likewise.
351 * target-memory.c: Likewise.
352 * target.h: Likewise.
353 * varobj.c: Likewise.
354 * varobj.h: Likewise.
355 * xml-support.h: Likewise.
356
ae640021
AB
3572019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
358
359 * gdb/dwarf2read.c (dwarf2_per_objfile::~dwarf2_per_objfile):
360 Update for new std::vector based implementation.
361 (process_psymtab_comp_unit_reader): Likewise.
362 (scan_partial_symbols): Likewise.
363 (recursively_compute_inclusions): Likewise.
364 (compute_compunit_symtab_includes): Likewise.
365 (process_imported_unit_die): Likewise.
366 (queue_and_load_dwo_tu): Likewise.
367 (follow_die_sig_1): Likewise.
368 * gdb/dwarf2read.h: Remove DEF_VEC_P.
369 (typedef dwarf2_per_cu_ptr): Remove.
370 (struct dwarf2_per_cu_data) <imported_symtabs_empty>: New
371 function.
372 (struct dwarf2_per_cu_data) <imported_symtabs_push>: New function.
373 (struct dwarf2_per_cu_data) <imported_symtabs_size>: New function.
374 (struct dwarf2_per_cu_data) <imported_symtabs_free>: New function.
375 (struct dwarf2_per_cu_data) <imported_symtabs>: Change to
376 std::vector.
377
55dfc88f
TT
3782019-10-15 Tom Tromey <tromey@adacore.com>
379
380 * windows-nat.c (windows_nat_target::resume): Use %x when logging
381 TID.
382
96b49c5e
TT
3832019-10-15 Tom Tromey <tromey@adacore.com>
384
385 * windows-nat.c (windows_nat_target::fetch_registers)
386 (windows_nat_target::store_registers): Rename "pid" to "tid".
387
953cff56
TT
3882019-10-15 Tom Tromey <tromey@adacore.com>
389
390 * gdbarch.h, gdbarch.c: Rebuild.
391 * gdbarch.sh (gcc_target_options): Change return type to
392 std::string.
393 * compile/compile.c (get_args): Update.
394 * nios2-tdep.c (nios2_gcc_target_options): Return std::string.
395 * arm-linux-tdep.c (arm_linux_gcc_target_options): Return
396 std::string.
397 * aarch64-linux-tdep.c (aarch64_linux_gcc_target_options): Return
398 std::string.
399 * arch-utils.c (default_gcc_target_options): Return std::string.
400 * arch-utils.h (default_gcc_target_options): Return std::string.
401 * s390-tdep.c (s390_gcc_target_options): Return std::string.
402
81e6b8eb
CB
4032019-10-15 Christian Biesinger <cbiesinger@google.com>
404
405 * breakpoint.c (breakpoint_chain): Make static.
406 * tui/tui-winsource.c: Call iterate_over_breakpoints instead
407 of accessing breakpoint_chain.
408
95da600f
CB
4092019-10-15 Christian Biesinger <cbiesinger@google.com>
410
411 * breakpoint.c (iterate_over_breakpoints): Change function pointer
412 to a gdb::function_view and return value to bool.
413 * breakpoint.h (iterate_over_breakpoints): Likewise.
414 * dummy-frame.c (pop_dummy_frame_bpt): Update.
415 (pop_dummy_frame): Update.
416 * guile/scm-breakpoint.c (bpscm_build_bp_list): Update.
417 (gdbscm_breakpoints): Update.
418 * python/py-breakpoint.c (build_bp_list): Update.
419 (gdbpy_breakpoints): Update.
420 * python/py-finishbreakpoint.c (bpfinishpy_detect_out_scope_cb):
421 Update.
422 (bpfinishpy_handle_stop): Update.
423 (bpfinishpy_handle_exit): Update.
424 * solib-svr4.c (svr4_update_solib_event_breakpoint): Update.
425 (svr4_update_solib_event_breakpoints): Update.
426
ba18312d
AA
4272019-10-15 Andreas Arnez <arnez@linux.ibm.com>
428
429 * s390-tdep.c (s390_effective_inner_type): Ignore static fields
430 when unwrapping single-field structs.
431
6acc1a0b
SM
4322019-10-14 Simon Marchi <simon.marchi@polymtl.ca>
433
434 * dwarf2read.c: Remove includes.
435
284782de
SM
4362019-10-13 Simon Marchi <simon.marchi@polymtl.ca>
437
438 * ui-out.c (ui_out::call_do_message): Silence
439 -Wformat-nonliteral warning.
440
073bbbb0
SM
4412019-10-12 Simon Marchi <simon.marchi@polymtl.ca>
442
443 * breakpoint.c: Remove some includes: continuations.h, skip.h,
444 mi/mi-main.h, readline/readline.h, readline/history.h. Add
445 include: readline/tilde.h.
446
7b9a15e1
CB
4472019-10-12 Christian Biesinger <cbiesinger@google.com>
448
449 * remote.c (remote_target::get_trace_status): Remove declaration of
450 trace_regblock_size.
451
cc8dee1f
CB
4522019-10-12 Christian Biesinger <cbiesinger@google.com>
453
454 * cli/cli-cmds.c (max_user_call_depth): Move comment to header.
455 (show_user): Remove declaration of cmdlist.
456 * cli/cli-cmds.h (max_user_call_depth): Declare.
457 * cli/cli-script.c (execute_user_command): Remove declaration
458 of max_user_call_depth.
459
a83d4ef6
JW
4602019-10-11 Jim Wilson <jimw@sifive.com>
461
5f93c5a6
JW
462 * gdbsupport/print-utils.h (pulongest): Fix comment.
463 (plongest): Likewise.
464 (phex): Add missing comment, mention leading zeros.
465 (phex_nz): Add mention of no leading zeros to comment.
466
a83d4ef6
JW
467 * riscv-tdep.c (riscv_push_dummy_code): Change %lld to %s and use
468 plongest instead of unsigned long long cast.
469
26344e0c
CB
4702019-10-10 Christian Biesinger <cbiesinger@google.com>
471
472 * main.c (captured_main_1): Include gdbtk.h and remove declarations
473 for external_editor_command and gdbtk_test.
474
c2c440a9
CB
4752019-10-10 Christian Biesinger <cbiesinger@google.com>
476
477 * mi/mi-cmd-var.c (varobjdebug): Remove declaration.
478 * varobj.c (varobjdebug): Move comment to...
479 * varobj.h (varobjdebug): ...here, and declare.
480
a31bff9d
TT
4812019-10-09 Tom Tromey <tom@tromey.com>
482
483 * tui/tui-regs.c (tui_data_window::show_registers): Don't call
484 erase_data_content.
485
7523da63
TT
4862019-10-09 Tom Tromey <tom@tromey.com>
487
488 * tui/tui-wingeneral.h (tui_delete_win): Don't declare.
489 * tui/tui-stack.c (tui_locator_window::rerender): Update.
490 * tui/tui-command.c (tui_cmd_window::resize)
491 (tui_refresh_cmd_win): Update.
492 * tui/tui-win.c (tui_resize_all, tui_set_focus_command): Update.
493 * tui/tui.c (tui_rl_other_window, tui_enable): Update.
494 * tui/tui-data.c (~tui_gen_win_info): Remove.
495 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
496 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
497 (tui_redisplay_readline, tui_mld_flush)
498 (tui_mld_erase_entire_line, tui_mld_getc, tui_getc): Update.
499 * tui/tui-regs.c (tui_data_window::delete_data_content_windows)
500 (tui_data_window::erase_data_content)
501 (tui_data_item_window::rerender)
502 (tui_data_item_window::refresh_window): Update.
503 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window)
504 (box_win, tui_gen_win_info::make_window)
505 (tui_gen_win_info::make_visible): Update.
506 (tui_delete_win): Remove.
507 * tui/tui-winsource.c
508 (tui_source_window_base::do_erase_source_content): Update.
509 (tui_show_source_line, tui_source_window_base::update_tab_width)
510 (tui_source_window_base::update_exec_info): Update.
511 * tui/tui-data.h (struct curses_deleter): New.
512 (struct tui_gen_win_info) <handle>: Now a unique_ptr.
513 (struct tui_gen_win_info) <~tui_gen_win_info>: Define.
514
a7798e7f
TT
5152019-10-09 Tom Tromey <tom@tromey.com>
516
517 * tui/tui-wingeneral.h (struct tui_gen_win_info): Don't declare.
518
5c45899e
TT
5192019-10-09 Tom Tromey <tom@tromey.com>
520
521 * tui/tui-data.c (tui_win_is_auxiliary): Remove.
522 * tui/tui-data.h (tui_win_is_auxiliary): Don't declare.
523
6d7fd9aa
TT
5242019-10-09 Tom Tromey <tom@tromey.com>
525
526 * tui/tui-disasm.c (tui_get_low_disassembly_address): Compute
527 window height directly.
528 * tui/tui-layout.h (tui_default_win_viewport_height): Don't
529 declare.
530 * tui/tui-layout.c (tui_default_win_height): Remove.
531 (tui_default_win_viewport_height): Remove.
532
d2dd1084
TT
5332019-10-09 Tom Tromey <tom@tromey.com>
534
535 * tui/tui.h: Remove comments.
536
cff32449
TV
5372019-10-09 Tom de Vries <tdevries@suse.de>
538
539 * python/lib/gdb/printer/bound_registers.py: Use
540 '^builtin_type_bound128' as regexp argument for
541 add_builtin_pretty_printer.
542
6a25e8a2
CB
5432019-10-09 Christian Biesinger <cbiesinger@google.com>
544
545 * guile/guile.c (guile_extension_script_ops): Remove forward
546 declaration and mark as static.
547 (guile_script_ops): Likewise.
548 (extension_language_guile): Move further down in the file so
549 it can reference the definitions for guile_{extension_,}script_ops.
550
6d9d6da4
AA
5512019-10-09 Andreas Arnez <arnez@linux.ibm.com>
552
553 * s390-tdep.c (390_process_record): Handle new arch13 instructions
554 except SORTL, DFLTCC, and KDSA.
555
3abea05d
TT
5562019-10-08 Tom Tromey <tromey@adacore.com>
557
558 * windows-nat.c (struct windows_thread_info_struct) <sf>: Remove.
559 (struct safe_symbol_file_add_args): Remove.
560
dde996e2
TT
5612019-10-08 Tom Tromey <tromey@adacore.com>
562
563 * windows-nat.c: Don't include buildsym-legacy.h.
564
cd6fdaa1
TT
5652019-10-08 Tom Tromey <tromey@adacore.com>
566
567 * contrib/ari/gdb_ari.sh (%p): Allow gdb-specific %p extensions.
568
79bb1944
CB
5692019-10-08 Christian Biesinger <cbiesinger@google.com>
570
571 * gdbtypes.c (overload_debug): Move comment to header.
572 * gdbtypes.h (overload_debug): Declare.
573 * valops.c: Remove declaration of overload_debug, instead
574 include gdbtypes.h.
575
34916edc
CB
5762019-10-08 Christian Biesinger <cbiesinger@google.com>
577
578 * language.c (show_language_command): Pass lang_frame_mismatch_warn
579 through _().
580 (lang_frame_mismatch_warn): Make const, mark with N_(), and
581 move comment...
582 * language.h (lang_frame_mismatch_warn): ... here. Also add
583 declaration.
584 * top.c (lang_frame_mismatch_warn): Remove declaration.
585 (check_frame_language_change): Pass lang_frame_mismatch_warn
586 through _().
587
bad5c026
CB
5882019-10-07 Christian Biesinger <cbiesinger@google.com>
589
590 * c-lang.h (vtbl_ptr_name): Declare.
591 * cp-valprint.c (vtbl_ptr_name): Remove "extern" now that we get
592 it from the header.
593 * stabsread.c (define_symbol): Remove declaration of vtbl_ptr_name.
594
51f1fdc3
CB
5952019-10-07 Christian Biesinger <cbiesinger@google.com>
596
597 * charset.c (your_gdb_wchar_t_is_bogus): Replace with a
598 gdb_static_assert.
599
30d1f018
WP
6002019-10-07 Weimin Pan <weimin.pan@oracle.com>
601
606813d5
WP
602 * ../Makefile.def (dependencies): Add all-libctf to all-gdb
603 * ../Makefile.in: Add "all-gdb: maybe-all-libctf"
30d1f018
WP
604 * ctfread.c: New file.
605 * ctfread.h: New file.
606 * elfread.c: Include ctfread.h.
607 (struct elfinfo text_p): New member ctfsect.
608 (elf_locate_sections): Mark CTF section.
609 (elf_symfile_read): Call elfctf_build_psymtabs.
610 * Makefile.in (LIBCTF): Add.
611 (CLIBS): Use it.
612 (CDEPS): Likewise.
613 (DIST): Add ctfread.c.
606813d5
WP
614
6152019-10-07 Andrew Burgess <andrew.burgess@embecosm.com>
616
617 * ctfread.c (struct nextfield): Renamed to ...
618 (struct ctf_nextfield): ... this.
619 (struct field_info): Renamed to ...
620 (strut ctf_field_info): ... this.
621 (attach_fields_to_type): Update for renamed structures.
622 (ctf_add_member_cb): Likewise.
623 (ctf_add_enum_member_cb): Likewise.
624 (process_struct_members): Likewise.
625 (process_enum_type): Likewise.
30d1f018 626
518fe38c
WP
6272019-10-07 Weimin Pan <weimin.pan@oracle.com>
628
629 * tracectf.h: Rename, was ctf.h.
630 * tracectf.c: Rename, was ctf.c, replace ctf.h with tracectf.h.
631 * tracefile.c: Likewise.
632 * tracepoint.c: Remove unused include ctf.h.
633 * mi/mi-main.c: Likewise.
634 * Makefile.in Replace ctf.c with tracectf.c.
635
225f296a
JB
6362019-10-06 Joel Brobecker <brobecker@adacore.com>
637
638 * version.in: Change version number to "9.0.50.DATE-git".
639
77c2dba3
TT
6402019-10-03 Tom Tromey <tom@tromey.com>
641
642 PR rust/24976:
643 * dwarf2read.c (quirk_rust_enum): Handle single-element unions.
644
179aed7f
AB
6452019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
646
647 * f-lang.c (f_language_defn): Use cp_get_symbol_name_matcher and
648 cp_search_name_hash.
649 * NEWS: Add entry about nested function support.
650
0a4b0913
AB
6512019-10-03 Bernhard Heckel <bernhard.heckel@intel.com>
652 Andrew Burgess <andrew.burgess@embecosm.com>
653
654 * cp-namespace.c (cp_search_static_and_baseclasses): Only search
655 for nested static variables when searchin VAR_DOMAIN.
656 * dwarf2read.c (add_partial_symbol): Add nested subroutines to the
657 global scope, update comment.
658 (add_partial_subprogram): Call add_partial_subprogram recursively
659 for nested subroutines when processinng Fortran.
660 (load_partial_dies): Process the child entities of a subprogram
661 when processing Fortran.
662 (partial_die_parent_scope): Handle building scope
663 for Fortran nested functions.
664 (process_die): Record that nested functions have a scope.
665 (new_symbol): Always record Fortran subprograms on the global
666 symbol list.
667 (determine_prefix): How to build the prefix for Fortran
668 subprograms.
669
d8c06f22
AB
6702019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
671
672 * linux-nat.c (linux_nat_filter_event): Don't ignore SIGSTOP if we
673 have just sent the thread a SIGSTOP and are waiting for it to
674 arrive.
675
a8b3b8e9
AB
6762019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
677
678 * btrace.c (btrace_add_pc): Remove whitespace before the template
679 parameter in 'std::vector <...>'.
680 (parse_xml_btrace_block): Likewise.
681 (btrace_maint_decode_pt): Likewise.
682 (btrace_maint_update_packets): Likewise.
683 (btrace_maint_print_packets): Likewise.
684 * btrace.h (struct btrace_maint_info): Likewise.
685 * dwarf2read.c (struct type_unit_group): Likewise.
686 (build_type_psymtabs_reader): Likewise.
687 * gdbsupport/btrace-common.c (btrace_data_append): Likewise.
688 * gdbsupport/btrace-common.h (struct btrace_data_bts): Likewise.
689 * nat/linux-btrace.c (perf_event_read_bts): Likewise.
690
4d825eab
TV
6912019-10-03 Tom de Vries <tdevries@suse.de>
692
693 * cli/cli-style.c (_initialize_cli_style): Adding a '.' at the end of
694 the first line of the help text for set/show style metadata.
695
80fd2826
TT
6962019-10-02 Tom Tromey <tromey@adacore.com>
697
698 * Makefile.in (COMMON_SFILES): Add common-inferior.c.
699 * gdbsupport/common-inferior.c: New file.
700 * infcmd.c (startup_with_shell): Don't define.
701 * nat/fork-inferior.h (startup_with_shell): Don't declare.
702 * gdbsupport/common-inferior.h (startup_with_shell): Declare.
703 * inferior.h (startup_with_shell): Don't declare.
704
70054538
CB
7052019-10-02 Christian Biesinger <cbiesinger@google.com>
706
707 * gdbsupport/gdb_assert.h: Include errors.h.
708 * gdbsupport/gdb_string_view.h: Include gdb_assert.h.
709
37f6a7f4
TT
7102019-10-02 Tom Tromey <tromey@adacore.com>
711
712 * NEWS: Add $_ada_exception entry.
713 * ada-lang.c (struct ada_catchpoint): Add constructor.
714 <m_kind>: New member.
715 (allocate_location_exception, re_set_exception): Remove
716 "ex" parameter.
717 (should_stop_exception): Compute $_ada_exception.
718 (check_status_exception, print_it_exception)
719 (print_one_exception, print_mention_exception): Remove
720 "ex" parameter.
721 (allocate_location_catch_exception, re_set_catch_exception)
722 (check_status_exception, print_it_catch_exception)
723 (print_one_catch_exception, print_mention_catch_exception)
724 (print_recreate_catch_exception)
725 (allocate_location_catch_exception_unhandled)
726 (re_set_catch_exception_unhandled)
727 (check_status_exception, print_it_catch_exception_unhandled)
728 (print_one_catch_exception_unhandled)
729 (print_mention_catch_exception_unhandled)
730 (print_recreate_catch_exception_unhandled)
731 (allocate_location_catch_assert, re_set_catch_assert)
732 (check_status_assert, print_it_catch_assert)
733 (print_one_catch_assert, print_mention_catch_assert)
734 (print_recreate_catch_assert)
735 (allocate_location_catch_handlers, re_set_catch_handlers)
736 (check_status_handlers, print_it_catch_handlers)
737 (print_one_catch_handlers, print_mention_catch_handlers)
738 (print_recreate_catch_handlers): Remove.
739 (create_ada_exception_catchpoint): Update.
740 (initialize_ada_catchpoint_ops): Update.
741
fccf9de1
TT
7422019-10-02 Tom Tromey <tromey@adacore.com>
743
744 * ada-lang.c (ada_lookup_simple_minsyms): Remove.
745 (create_excep_cond_exprs): Simplify exception string computation.
746 (ada_exception_catchpoint_cond_string): Likewise.
747
4b610737
TT
7482019-10-02 Tom Tromey <tromey@adacore.com>
749
750 * symmisc.c (dump_msymbols): Don't use MSYMBOL_VALUE_ADDRESS.
751 * ada-lang.c (lesseq_defined_than): Handle
752 LOC_STATIC.
753 * dwarf2read.c (dwarf2_per_objfile): Add can_copy
754 parameter.
755 (dwarf2_has_info): Likewise.
756 (new_symbol): Set maybe_copied on symbol when
757 appropriate.
758 * dwarf2read.h (dwarf2_per_objfile): Add can_copy
759 parameter.
760 <can_copy>: New member.
761 * elfread.c (record_minimal_symbol): Set maybe_copied
762 on symbol when appropriate.
763 (elf_symfile_read): Update call to dwarf2_has_info.
764 * minsyms.c (lookup_minimal_symbol_linkage): New
765 function.
766 * minsyms.h (lookup_minimal_symbol_linkage): Declare.
767 * symtab.c (get_symbol_address, get_msymbol_address):
768 New functions.
769 * symtab.h (get_symbol_address, get_msymbol_address):
770 Declare.
771 (SYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_ADDRESS): Handle
772 maybe_copied.
773 (struct symbol, struct minimal_symbol) <maybe_copied>:
774 New member.
775
1dd58850
TT
7762019-10-02 Tom Tromey <tromey@adacore.com>
777
778 * source.c (struct current_source_location): New.
779 (current_source_key): New global.
780 (current_source_symtab, current_source_line)
781 (current_source_pspace): Remove.
782 (get_source_location): New function.
783 (get_current_source_symtab_and_line)
784 (set_default_source_symtab_and_line)
785 (set_current_source_symtab_and_line)
786 (clear_current_source_symtab_and_line, select_source_symtab)
787 (info_source_command, print_source_lines_base)
788 (info_line_command, search_command_helper, _initialize_source):
789 Update.
790
5c281dbb
TT
7912019-10-02 Tom Tromey <tromey@adacore.com>
792
793 * source.c (select_source_symtab): Don't call
794 decode_line_with_current_source.
795
d3d32391
AB
7962019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
797
798 * symtab.c (lookup_global_symbol): Search global block.
799
38583298
TT
8002019-10-02 Tom Tromey <tromey@adacore.com>
801
802 * coffread.c (process_coff_symbol): Update.
803 * dwarf2read.c (var_decode_location, new_symbol): Update.
804 * mdebugread.c (parse_symbol): Update.
805 * objfiles.c (relocate_one_symbol): Update.
806 * stabsread.c (define_symbol, fix_common_block)
807 (scan_file_globals): Update.
808 * symtab.h (SYMBOL_VALUE_ADDRESS): Expand to an rvalue.
809 (SET_SYMBOL_VALUE_ADDRESS): New macro.
810 * xcoffread.c (process_xcoff_symbol): Update.
811
9344c18f
AA
8122019-10-02 Andreas Arnez <arnez@linux.ibm.com>
813
814 * MAINTAINERS: Update my email address.
815
df07e2c7
AB
8162019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
817
818 * dwarf2read.c (struct type_unit_group) <tus>: Convert to
819 std::vector.
820 (build_type_psymtabs_reader): Update for std::vector.
821 (build_type_psymtab_dependencies): Likewise.
822 * dwarf2read.h: Remove use of DEF_VEC_P.
823 (typedef sig_type_ptr): Delete.
824
554ac434
AB
8252019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
826
827 * btrace.c (btrace_maint_clear): Update to handle change from VEC
828 to std::vector.
829 (btrace_maint_decode_pt): Likewise, and move allocation of the
830 vector outside of the loop.
831 (btrace_maint_update_packets): Update to handle change from VEC to
832 std::vector.
833 (btrace_maint_print_packets): Likewise.
834 (maint_info_btrace_cmd): Likewise.
835 * btrace.h: Remove use of DEF_VEC_O.
836 (typedef btrace_pt_packet_s): Delete.
837 (struct btrace_maint_info) <packets>: Change fromm VEC to
838 std::vector.
839 * gdbsupport/btrace-common.h: Remove 'vec.h' include.
840
46f29a9a
AB
8412019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
842
843 * btrace.c (btrace_compute_ftrace_bts): Update for std::vector,
844 make accesses into the vector constant references.
845 (btrace_add_pc): Update for std::vector.
846 (btrace_stitch_bts): Likewise.
847 (parse_xml_btrace_block): Likewise.
848 (btrace_maint_update_packets): Likewise.
849 (btrace_maint_print_packets): Likewise.
850 (maint_info_btrace_cmd): Likewise.
851 * gdbsupport/btrace-common.c (btrace_data::fini): Update for
852 std::vector.
853 (btrace_data::empty): Likewise.
854 (btrace_data_append): Likewise.
855 * gdbsupport/btrace-common.h: Remove use of DEF_VEC_O.
856 (typedef btrace_block_s): Delete.
857 (struct btrace_block): Add constructor.
858 (struct btrace_data_bts) <blocks>: Change to std::vector.
859 * nat/linux-btrace.c (perf_event_read_bts): Update for
860 std::vector.
861 (linux_read_bts): Likewise.
862
d770d56f
TT
8632019-10-01 Tom Tromey <tom@tromey.com>
864
865 * cli/cli-logging.c (show_logging_filename): Use styled_string.
866
9d636d67
TT
8672019-10-01 Tom Tromey <tom@tromey.com>
868
869 * stack.c (print_frame, info_frame_command_core): Use
870 styled_string.
871 * linux-thread-db.c (try_thread_db_load_1)
872 (try_thread_db_load_from_pdir_1): Use styled_string.
873 * auto-load.c (file_is_auto_load_safe, execute_script_contents)
874 (auto_load_section_scripts, info_auto_load_local_gdbinit)
875 (maybe_print_unsupported_script_warning)
876 (maybe_print_script_not_found_warning): Use styled_string.
877 * ada-lang.c (user_select_syms): Use styled_string.
878
7f6aba03
TT
8792019-10-01 Tom Tromey <tom@tromey.com>
880
881 * p-lang.c (pascal_printstr): Use metadata style.
882 * value.c (show_convenience): Use metadata style.
883 * valprint.c (valprint_check_validity, val_print_optimized_out)
884 (val_print_not_saved, val_print_unavailable)
885 (val_print_invalid_address, generic_val_print, val_print)
886 (value_check_printable, val_print_array_elements): Use metadata
887 style.
888 * ui-out.h (class ui_out) <field_fmt>: New overload.
889 <do_field_fmt>: Add style parameter.
890 * ui-out.c (ui_out::field_fmt): New overload.
891 * typeprint.c (type_print_unknown_return_type)
892 (val_print_not_allocated, val_print_not_associated): Use metadata
893 style.
894 * tui/tui-out.h (class tui_ui_out) <do_field_fmt>: Add style
895 parameter.
896 * tui/tui-out.c (tui_ui_out::do_field_fmt): Update.
897 * tracepoint.c (tvariables_info_1): Use metadata style.
898 * stack.c (print_frame_arg, print_frame_info, print_frame)
899 (info_frame_command_core): Use metadata style.
900 * skip.c (info_skip_command): Use metadata style.
901 * rust-lang.c (rust_print_enum): Use metadata style.
902 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
903 metadata style.
904 * python/py-framefilter.c (py_print_single_arg): Use metadata
905 style.
906 * printcmd.c (do_one_display, print_variable_and_value): Use
907 metadata style.
908 * p-valprint.c (pascal_val_print)
909 (pascal_object_print_value_fields): Use metadata style.
910 * p-typeprint.c (pascal_type_print_base): Use metadata style.
911 * mi/mi-out.h (class mi_ui_out) <do_field_fmt>: Add style
912 parameter.
913 * mi/mi-out.c (mi_ui_out::do_field_fmt): Update.
914 * m2-valprint.c (m2_print_long_set): Use metadata style.
915 * m2-typeprint.c (m2_print_type): Use metadata style.
916 * infcmd.c (print_return_value_1): Use metadata style.
917 * gnu-v3-abi.c (print_one_vtable): Use metadata style.
918 * f-valprint.c (info_common_command_for_block): Use metadata
919 style.
920 * f-typeprint.c (f_type_print_base): Use metadata style.
921 * expprint.c (print_subexp_standard): Use metadata style.
922 * cp-valprint.c (cp_print_value_fields): Use metadata style.
923 * cli/cli-style.h (class cli_style_option): Add constructor.
924 (metadata_style): Declare.
925 * cli/cli-style.c (metadata_style): New global.
926 (_initialize_cli_style): Register metadata style.
927 * cli-out.h (class cli_ui_out) <do_field_fmt>: Add style
928 parameter.
929 * cli-out.c (cli_ui_out::do_field_fmt): Update.
930 * c-typeprint.c (c_type_print_base_struct_union)
931 (c_type_print_base_1): Use metadata style.
932 * breakpoint.c (watchpoint_value_print)
933 (print_one_breakpoint_location): Use metadata style.
934 * break-catch-syscall.c (print_one_catch_syscall): Use metadata
935 style.
936 * break-catch-sig.c (signal_catchpoint_print_one): Use metadata
937 style.
938 * ada-valprint.c (val_print_packed_array_elements, printstr)
939 (print_field_values, ada_val_print_ref, ada_val_print): Use
940 metadata style.
941 * ada-typeprint.c (print_array_type, ada_print_type): Use metadata
942 style.
943 * ada-tasks.c (print_ada_task_info, info_task): Use metadata
944 style.
945 * ada-lang.c (user_select_syms): Use metadata style.
946
14309bb6
TT
9472019-10-01 Tom Tromey <tom@tromey.com>
948
949 * cli/cli-cmds.c (pwd_command): Style output.
950
6a831f06
PA
9512019-10-01 Pedro Alves <palves@redhat.com>
952 Tom Tromey <tom@tromey.com>
953
954 * symtab.c (print_symbol_info): Use %ps.
955 (print_msymbol_info): Use %ps.
956 * symfile.c (symbol_file_add_with_addrs): Use %ps.
957 * printcmd.c (print_variable_and_value): Use %ps.
958 * macrocmd.c (show_pp_source_pos): Use %ps.
959 * infrun.c (print_exited_reason): Use ui_out::message.
960 * breakpoint.c (watchpoint_check, print_one_breakpoint_location)
961 (describe_other_breakpoints): Use ui_out::message and new
962 formats.
963 (say_where): Use new formats.
964 (bkpt_print_it, tracepoint_print_one_detail): Use ui_out::message
965 and new formats.
966
2a3c1174
PA
9672019-10-01 Pedro Alves <palves@redhat.com>
968 Tom Tromey <tom@tromey.com>
969
970 * unittests/format_pieces-selftests.c: Add gdb_format parameter.
971 (test_gdb_formats): New function.
972 (run_tests): Call it.
973 (test_format_specifier): Update.
974 * utils.h (fputs_filtered): Update comment.
975 (vfprintf_styled, vfprintf_styled_no_gdbfmt)
976 (fputs_styled_unfiltered): Declare.
977 * utils.c (fputs_styled_unfiltered): New function.
978 (vfprintf_maybe_filtered): Add gdbfmt parameter.
979 (vfprintf_filtered): Update.
980 (vfprintf_unfiltered, vprintf_filtered): Update.
981 (vfprintf_styled, vfprintf_styled_no_gdbfmt): New functions.
982 * ui-out.h (enum ui_out_flag) <unfiltered_output,
983 disallow_ui_out_field>: New constants.
984 (enum class field_kind): New.
985 (struct base_field_s, struct signed_field_s): New.
986 (signed_field): New function.
987 (struct string_field_s): New.
988 (string_field): New function.
989 (struct styled_string_s): New.
990 (styled_string): New function.
991 (class ui_out) <message>: Add comment.
992 <vmessage, call_do_message>: New methods.
993 <do_message>: Add style parameter.
994 * ui-out.c (ui_out::call_do_message, ui_out::vmessage): New
995 methods.
996 (ui_out::message): Rewrite.
997 * mi/mi-out.h (class mi_ui_out) <do_message>: Add style
998 parameter.
999 * mi/mi-out.c (mi_ui_out::do_message): Add style parameter.
1000 * gdbsupport/format.h (class format_pieces) <format_pieces>: Add
1001 gdb_extensions parameter.
1002 (class format_piece): Add parameter to constructor.
1003 (n_int_args): New field.
1004 * gdbsupport/format.c (format_pieces::format_pieces): Add
1005 gdb_extensions parameter. Handle '*'.
1006 * cli-out.h (class cli_ui_out) <do_message>: Add style parameter.
1007 * cli-out.c (cli_ui_out::do_message): Add style parameter. Call
1008 vfprintf_styled_no_gdbfmt.
1009 (cli_ui_out::do_field_string, cli_ui_out::do_spaces)
1010 (cli_ui_out::do_text, cli_ui_out::field_separator): Allow
1011 unfiltered output.
1012 * ui-style.h (struct ui_file_style) <ptr>: New method.
1013
0dfe5bfb
TT
10142019-10-01 Tom Tromey <tom@tromey.com>
1015
1016 * unittests/format_pieces-selftests.c: Update. Add final format.
1017 * gdbsupport/format.c (format_pieces::format_pieces): Don't add
1018 empty literal pieces.
1019
e43b10e1
TT
10202019-10-01 Tom Tromey <tom@tromey.com>
1021
1022 * ui-out.h (enum class ui_out_style_kind): Remove.
1023 (class ui_out) <field_string, field_stsream, do_field_string>:
1024 Change type of "style".
1025 * ui-out.c (ui_out::field_core_addr, ui_out::field_stream)
1026 (ui_out::field_string): Update.
1027 * tui/tui-out.h (class tui_ui_out) <do_field_string>: Change type
1028 of "style".
1029 * tui/tui-out.c (tui_ui_out::do_field_string): Update.
1030 * tracepoint.c (print_one_static_tracepoint_marker): Update.
1031 * stack.c (print_frame_arg, print_frame_info, print_frame):
1032 Update.
1033 * source.c (print_source_lines_base): Update.
1034 * solib.c (info_sharedlibrary_command): Update.
1035 * skip.c (info_skip_command): Update.
1036 * record-btrace.c (btrace_call_history_src_line)
1037 (btrace_call_history): Update.
1038 * python/py-framefilter.c (py_print_frame): Update.
1039 * mi/mi-out.h (class mi_ui_out) <do_field_string>: Change type of
1040 "style".
1041 * mi/mi-out.c (mi_ui_out::do_table_header)
1042 (mi_ui_out::do_field_signed, mi_ui_out::do_field_unsigned)
1043 (mi_ui_out::do_field_string): Update.
1044 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
1045 Update.
1046 * cli-out.h (class cli_ui_out) <do_field_string>: Change type of
1047 "style".
1048 * cli-out.c (cli_ui_out::do_table_header)
1049 (cli_ui_out::do_field_signed, cli_ui_out::do_field_unsigned)
1050 (cli_ui_out::do_field_skip, cli_ui_out::do_field_string)
1051 (cli_ui_out::do_field_fmt): Update.
1052 * breakpoint.c (print_breakpoint_location): Update.
1053 (update_static_tracepoint): Update.
1054
cd7c32c3
PW
10552019-10-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1056
1057 * main.c (relocate_gdbinit_path_maybe_in_datadir): Remove std::string
1058 conversion of gdb_datadir.
1059 (captured_main_1): Remove xstrdup when assigning to gdb_datadir,
1060 remove not needed c_str ().
1061
8fe0f950
AT
10622019-09-30 Ali Tamur <tamur@google.com>
1063
1064 * dwarf2read.c (skip_one_die): Handle DW_FORM_strx forms.
1065 (dwarf2_string_attr): Likewise.
1066
5f48f8f3
AT
10672019-09-30 Ali Tamur <tamur@google.com>
1068
1069 * dwarf2read.c (process_full_comp_unit): Remove whitespace at the EOL.
1070 (process_full_type_unit): Likewise.
1071 (dump_die_shallow): Likewise.
1072 (cu_debug_loc_section): Likewise.
1073
6fb08628
CB
10742019-09-28 Christian Biesinger <cbiesinger@google.com>
1075
1076 * minsyms.c (compare_minimal_symbols): Rename to...
1077 (minimal_symbol_is_less_than): ...this, and adjust to STL
1078 conventions (return bool, take arguments as references)
1079 (minimal_symbol_reader::install): Call std::sort instead
1080 of qsort.
1081
c7ee338a
CB
10822019-09-29 Christian Biesinger <cbiesinger@google.com>
1083
1084 * minsyms.h (msymbol_hash): Document that this is a case-insensitive
1085 hash and why.
1086 * objfiles.h (struct objfile_per_bfd_storage) <demangled_names_hash,
1087 msymbol_hash, msymbol_demangled_hash>: Improve comments.
1088
703a86c2
SM
10892019-09-30 Simon Marchi <simon.marchi@polymtl.ca>
1090
1091 * psymtab.c (add_psymbol_to_list): Move comment to psympriv.h.
1092 * psympriv.h (add_psymbol_to_list): Move comment here and update
1093 it.
1094
0df0352a
TV
10952019-09-29 Tom de Vries <tdevries@suse.de>
1096
1097 * contrib/cc-with-tweaks.sh (get_tmpdir): New function.
1098 Use $tmpdir/$(basename "$output_file").dwz instead of
1099 "${output_file}.dwz".
1100
ad75efa6
SM
11012019-09-28 Simon Marchi <simon.marchi@polymtl.ca>
1102
1103 PR gdb/25045
1104 * hppa-linux-nat.c: Include gdbarch.h.
1105
ececd218
CB
11062019-09-26 Christian Biesinger <cbiesinger@google.com>
1107
1108 * blockframe.c (find_pc_partial_function): Change return type to bool.
1109 * elfread.c (elf_gnu_ifunc_resolve_name): Likewise.
1110 * minsyms.c (in_gnu_ifunc_stub): Likewise.
1111 (stub_gnu_ifunc_resolve_name): Likewise.
1112 * symtab.c (compare_filenames_for_search): Likewise.
1113 (compare_glob_filenames_for_search): Likewise.
1114 (matching_obj_sections): Likewise.
1115 (symbol_matches_domain): Likewise.
1116 (find_line_symtab): Change out param EXACT_MATCH to bool *.
1117 (find_line_pc): Change return type to bool.
1118 (find_line_pc_range): Likewise.
1119 (producer_is_realview): Likewise.
1120 * symtab.h (symbol_matches_domain): Likewise.
1121 (find_pc_partial_function): Likewise.
1122 (find_pc_line_pc_range): Likewise.
1123 (in_gnu_ifunc_stub): Likewise.
1124 (struct gnu_ifunc_fns) <gnu_ifunc_resolve_name>: Likewise.
1125 (find_line_pc): Likewise.
1126 (find_line_pc_range): Likewise.
1127 (matching_obj_sections): Likewise.
1128 (find_line_symtab): Change out parameter to bool.
1129 (producer_is_realview): Change return type to bool.
1130 (compare_filenames_for_search): Likewise.
1131 (compare_glob_filenames_for_search): Likewise.
1132
27a900b8
TT
11332019-09-26 Tom Tromey <tom@tromey.com>
1134
1135 * Makefile.in (COMMON_SFILES): Remove gdb_usleep.c.
1136 (HFILES_NO_SRCDIR): Remove gdb_usleep.h.
1137 * gdb_usleep.h: Remove.
1138 * gdb_usleep.c: Remove.
1139 * utils.c: Don't include gdb_usleep.h.
1140
5d63b30a
TT
11412019-09-26 Tom Tromey <tromey@adacore.com>
1142
1143 * python/py-type.c (type_to_type_object): Call check_typedef
1144 for stub types.
1145
12904d37
TT
11462019-09-26 Tom Tromey <tom@tromey.com>
1147
1148 * utils.h (initialize_utils): Don't declare.
1149 * top.c (gdb_init): Don't call initialize_utils.
1150 * utils.c (initialize_utils): Remove. Move contents...
1151 (_initialize_utils): ... here.
1152
858f25f0
TT
11532019-09-25 Tom Tromey <tom@tromey.com>
1154
1155 * python/py-objfile.c (objfpy_get_build_id): Use bin2hex.
1156 * utils.h (make_hex_string): Don't declare.
1157 * utils.c (make_hex_string): Remove.
1158
3d435220
TV
11592019-09-24 Tom de Vries <tdevries@suse.de>
1160
1161 PR gdb/23815
1162 * amd64-linux-nat.c (amd64_linux_nat_target::fetch_registers):
1163 Initialize xstateregs before ptrace PTRACE_GETREGSET call.
1164
ddd44b70
DD
11652019-09-23 Dimitar Dimitrov <dimitar@dinux.eu>
1166
1167 * NEWS: Mention new simulator port for PRU.
1168
f945dedf
CB
11692019-09-23 Christian Biesinger <cbiesinger@google.com>
1170
1171 * ada-exp.y (write_object_remaining): Update.
1172 * ada-lang.c (ada_decode): Return a std::string instead of a char*
1173 and eliminate the static buffer.
1174 (ada_decode_symbol): Update.
1175 (ada_la_decode): Update.
1176 (ada_sniff_from_mangled_name): Update.
1177 (is_valid_name_for_wild_match): Update.
1178 (ada_lookup_name_info::matches): Update and simplify.
1179 (name_matches_regex): Update.
1180 (ada_add_global_exceptions): Update.
1181 * ada-lang.h (ada_decode): Update signature.
1182 * ada-varobj.c (ada_varobj_describe_simple_array_child): Update.
1183 * dwarf-index-write.c (debug_names::insert): Update.
1184
7ab78ccb
SM
11852019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
1186
1187 * solib-svr4.c (svr4_iterate_over_objfiles_in_search_order): Fix
1188 formatting.
1189
9252448b
SM
11902019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
1191
1192 * breakpoint.h (bp_location) <inserted, permanent, duplicate>:
1193 Change "nonzero" to "true" in documentation.
1194
626ca2c0
CB
11952019-09-20 Christian Biesinger <cbiesinger@google.com>
1196
1197 * solib-darwin.c (darwin_lookup_lib_symbol): Remove.
1198 (_initialize_darwin_solib): Don't set
1199 darwin_so_ops.lookup_lib_global_symbol.
1200 * solib-svr4.c (set_solib_svr4_fetch_link_map_offsets): Call
1201 set_gdbarch_iterate_over_objfiles_in_search_order.
1202 (elf_lookup_lib_symbol): Rename to...
1203 (svr4_iterate_over_objfiles_in_search_order): this, and update
1204 to iterate semantics.
1205 (_initialize_svr4_solib): Don't set lookup_lib_global_symbol.
1206 * solib.c (solib_global_lookup): Remove.
1207 * solist.h (struct target_so_ops): Remove lookup_lib_global_symbol.
1208 (solib_global_lookup): Remove.
1209 * symtab.c (lookup_global_or_static_symbol): Remove call to
1210 solib_global_lookup.
1211
5a3a0d63
JB
12122019-09-20 Joel Brobecker <brobecker@adacore.com>
1213
1214 * NEWS: Move entries about default MI version now being
1215 version 3, and about the GDB/MI fix for multi-location
1216 breakpoints to the "since GDB 8.3" section.
1217
ffea1427
JB
12182019-09-20 Joel Brobecker <brobecker@adacore.com>
1219
1220 GDB 8.3.1 released.
1221
abf516c6
UW
12222019-09-20 Ulrich Weigand <uweigand@de.ibm.com>
1223
1224 * NEWS: Mention that Cell/B.E. debugging support was removed.
1225 * MAINTAINERS: Remove spu target.
1226
1227 * config/djgpp/fnchange.lst: Remove entries for removed files.
1228
1229 * Makefile.in (ALL_TARGET_OBS): Remove solib-spu.o,
1230 spu-multiarch.o, and spu-tdep.o.
1231 (HFILES_NO_SRCDIR): Remove solib-spu.h and spu-tdep.h.
1232 (ALLDEPFILES): Remove solib-spu.c, spu-linux-nat.c,
1233 spu-multiarch.c, and spu-tdep.c.
1234 * spu-linux-nat.c: Remove file.
1235 * spu-multiarch.c: Remove file.
1236 * spu-tdep.c: Remove file.
1237 * spu-tdep.h: Remove file.
1238 * solib-spu.c: Remove file.
1239 * solib-spu.h: Remove file.
1240
1241 * configure.host (powerpc64*-*-linux*): Remove Cell/B.E. support.
1242 * configure.nat (spu-linux): Remove.
1243 * configure.tgt (powerpc*-*-linux*): Remove solib-spu.o and
1244 solib-multiarch.o from gdb_target_obs.
1245 (spu*-*-*): Remove.
1246
1247 * arch/ppc-linux-common.h (struct ppc_linux_features): Remove "cell"
1248 feature flag.
1249 (ppc_linux_no_features): Update.
1250 * arch/ppc-linux-common.c (ppc_linux_match_description): Remove
1251 Cell/B.E. support.
1252 * arch/ppc-linux-tdesc.h (tdesc_powerpc_cell32l): Remove declaration.
1253 (tdesc_powerpc_cell64l): Likewise.
1254 * nat/ppc-linux.h (PPC_FEATURE_CELL): Remove.
1255 * ppc-linux-nat.c (ppc_linux_nat_target::read_description): Remove
1256 Cell/B.E. support.
1257 * ppc-linux-tdep.h: Do not include "solib-spu.h" or "spu-tdep.h".
1258 Do not include "features/rs6000/powerpc-cell32l.c" or
1259 "features/rs6000/powerpc-cell64l.c".
1260 (ppc_linux_spu_section): Remove.
1261 (ppc_linux_core_read_description): Remove Cell/B.E. support.
1262 (spe_context_objfile, spe_context_lm_addr, spe_context_offset,
1263 spe_context_cache_ptid, spe_context_cache_ptid): Remove.
1264 (ppc_linux_spe_context_lookup): Remove.
1265 (ppc_linux_spe_context_inferior_created): Remove.
1266 (ppc_linux_spe_context_solib_loaded): Remove.
1267 (ppc_linux_spe_context_solib_unloaded): Remove.
1268 (ppc_linux_spe_context): Remove.
1269 (struct ppu2spu_cache): Remove.
1270 (ppu2spu_prev_arch, ppu2spu_this_id, ppu2spu_prev_register): Remove.
1271 (struct ppu2spu_data): Remove.
1272 (ppu2spu_unwind_register, ppu2spu_sniffer, ppu2spu_dealloc_cache,
1273 ppu2spu_unwind): Remove.
1274 (ppc_linux_init_abi): Remove Cell/B.E. support.
1275 * rs6000-tdep.h (rs6000_gdbarch_init): Remove Cell/B.E. support.
1276
1277 * features/Makefile (rs6000/powerpc-cell32l-expedite): Remove.
1278 (rs6000/powerpc-cell64l-expedite): Likewise
1279 (WHICH): Remove rs6000/powerpc-cell32l and rs6000/powerpc-cell64l.
1280 (XMLTOC): Remove rs6000/powerpc-cell32l.xml and
1281 rs6000/powerpc-cell64l.xml.
1282 * features/rs6000/powerpc-cell32l.xml: Remove.
1283 * features/rs6000/powerpc-cell64l.xml: Likewise.
1284 * features/rs6000/powerpc-cell32l.c: Remove generated file.
1285 * features/rs6000/powerpc-cell64l.c: Likewise.
1286 * regformats/rs6000/powerpc-cell32l.dat: Remove generated file.
1287 * regformats/rs6000/powerpc-cell64l.dat: Likewise.
1288 * regformats/reg-spu.dat: Remove.
1289
1290 * target.h (enum target_object): Remove TARGET_OBJECT_SPU.
1291 * corelow.c (struct spuid_list): Remove.
1292 (add_to_spuid_list): Remove.
1293 (core_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
1294 * remote.c (PACKET_qXfer_spu_read, PACKET_qXfer_spu_write): Remove.
1295 (remote_protocol_features): Remove associated entries.
1296 (_initialize_remote): No longer initialize them.
1297 (remote_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
1298 * linux-nat.c (SPUFS_MAGIC): Remove.
1299 (linux_proc_xfer_spu): Remove.
1300 (spu_enumerate_spu_ids): Remove.
1301 (linux_nat_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
1302 * linux-tdep.c (-linux_spu_make_corefile_notes): Remove.
1303 (linux_make_corefile_notes): No longer call it.
1304
1305 * regcache.c (cooked_read_test): Remove bfd_arch_spu special case.
1306 (cooked_write_test): Likewise.
1307
78e8cb91
TT
13082019-09-20 Tom Tromey <tom@tromey.com>
1309
1310 * NEWS: Mention case-sensitivity of TUI commands.
1311 * tui/tui-win.c (tui_set_focus_command): Now case-sensitive.
1312 (tui_set_win_height_command, parse_scrolling_args): Likewise.
1313 * tui/tui-layout.c (tui_layout_command): Now case-sensitive.
1314
f074b67e
TT
13152019-09-20 Tom Tromey <tom@tromey.com>
1316
1317 * tui/tui-source.c (tui_source_window::set_contents): Use
1318 make_unique_xstrdup.
1319 * tui/tui-disasm.c (tui_disasm_window::set_contents): Use
1320 make_unique_xstrdup.
1321
63c4bf19
TT
13222019-09-20 Tom Tromey <tom@tromey.com>
1323
1324 * tui/tui-data.c: Remove separator comments.
1325 * tui/tui-layout.c: Remove separator comments.
1326 * tui/tui-win.c: Remove separator comments.
1327 * tui/tui-wingeneral.c: Remove separator comments.
1328
43df9b2f
TT
13292019-09-20 Tom Tromey <tom@tromey.com>
1330
1331 * tui/tui.h (strcat_to_buf): Don't declare.
1332 * tui/tui.c (strcat_to_buf): Remove.
1333
7226433c
TT
13342019-09-20 Tom Tromey <tom@tromey.com>
1335
1336 * tui/tui-source.h (struct tui_source_window) <m_fullname>: Rename
1337 from "fullname".
1338 * tui/tui-source.c (tui_source_window::set_contents)
1339 (tui_source_window::location_matches_p)
1340 (tui_source_window::maybe_update): Update.
1341
80df3337
TT
13422019-09-20 Tom Tromey <tom@tromey.com>
1343
1344 * tui/tui-regs.h (struct tui_data_window) <get_current_group>:
1345 Update.
1346 <m_regs_content, m_regs_column_count, m_current_group>: Add "m_"
1347 prefix.
1348 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
1349 (tui_data_window::line_from_reg_element_no)
1350 (tui_data_window::first_reg_element_no_inline)
1351 (tui_data_window::show_registers)
1352 (tui_data_window::show_register_group)
1353 (tui_data_window::display_registers_from)
1354 (tui_data_window::display_registers_from_line)
1355 (tui_data_window::first_data_item_displayed)
1356 (tui_data_window::delete_data_content_windows)
1357 (tui_data_window::erase_data_content)
1358 (tui_data_window::do_scroll_vertical)
1359 (tui_data_window::refresh_window)
1360 (tui_data_window::check_register_values): Update.
1361
9923f347
TT
13622019-09-20 Tom Tromey <tom@tromey.com>
1363
1364 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN): Remove define.
1365 (struct tui_locator_window) <full_name, proc_name>: Now
1366 std::string.
1367 * tui/tui-stack.c (tui_locator_window::make_status_line)
1368 (tui_locator_window::set_locator_fullname)
1369 (tui_locator_window::set_locator_info): Update.
1370 * tui/tui-source.c (tui_source_window::set_contents)
1371 (tui_source_window::showing_source_p): Update.
1372
b76251ab
TT
13732019-09-20 Tom Tromey <tom@tromey.com>
1374
1375 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
1376 Don't call tui_locator_win_info_ptr.
1377
0891be08
TT
13782019-09-20 Tom Tromey <tom@tromey.com>
1379
1380 * tui/tui-win.c (tui_resize_all): Don't call refresh.
1381
1b935acf
TT
13822019-09-20 Tom Tromey <tom@tromey.com>
1383
1384 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use 1 as
1385 height for locator.
1386 * tui/tui-stack.c (tui_locator_window::rerender): Call scrollok.
1387 * tui/tui-layout.c (show_source_disasm_command, show_data)
1388 (show_source_or_disasm_and_command): Use 1 as height for locator.
1389
9abd8a65
TT
13902019-09-20 Tom Tromey <tom@tromey.com>
1391
1392 * tui/tui.c (tui_enable): Update.
1393 * tui/tui-win.c (tui_sigwinch_handler, tui_async_resize_screen):
1394 Update.
1395 * tui/tui-data.h (tui_win_resized, tui_set_win_resized_to):
1396 Update.
1397 * tui/tui-data.c (win_resized): Now bool.
1398 (tui_win_resized): Return bool.
1399 (tui_set_win_resized_to): Accept a bool.
1400
b5457826
TT
14012019-09-20 Tom Tromey <tom@tromey.com>
1402
1403 * tui/tui-regs.h (struct tui_data_window) <show_register_group>:
1404 Change type of "refresh_values_only".
1405 * tui/tui-regs.c (tui_data_window::show_register_group): Change
1406 type of "refresh_values_only".
1407
6b915f7d
TT
14082019-09-20 Tom Tromey <tom@tromey.com>
1409
1410 * tui/tui-disasm.c (struct tui_asm_line) <addr_string, insn>: Now
1411 std::string.
1412 (tui_disassemble): Add "pos" parameter.
1413 (tui_disasm_window::set_contents): Simplify.
1414
2ad52f6f
TT
14152019-09-20 Tom Tromey <tom@tromey.com>
1416
1417 * tui/tui-winsource.h (struct tui_source_window_base)
1418 <show_source_content>: Now private.
1419 * tui/tui-winsource.c
1420 (tui_source_window_base::show_source_content): Don't handle empty
1421 content case.
1422
b3b1bde6
TT
14232019-09-20 Tom Tromey <tom@tromey.com>
1424
1425 * tui/tui-layout.c (show_source_disasm_command)
1426 (show_source_or_disasm_and_command): Don't call
1427 show_source_content.
1428
71a25ed2
TT
14292019-09-20 Tom Tromey <tom@tromey.com>
1430
1431 * tui/tui-stack.h (struct tui_locator_window) <make_status_line>:
1432 Declare.
1433 * tui/tui-stack.c (tui_locator_window::make_status_line): Rename
1434 from tui_make_status_line.
1435 (tui_locator_window::rerender): Update.
1436
f8532154
TT
14372019-09-20 Tom Tromey <tom@tromey.com>
1438
1439 * tui/tui-stack.c (tui_make_status_line): Return std::string.
1440 (tui_locator_window::rerender): Update.
1441
2d81b349
TT
14422019-09-20 Tom Tromey <tom@tromey.com>
1443
1444 * tui/tui-winsource.h (struct tui_source_window_base)
1445 <~tui_source_window_base>: Don't declare.
1446 <fullname>: Remove.
1447 * tui/tui-winsource.c (~tui_source_window_base): Remove.
1448 * tui/tui-source.h (struct tui_source_window) <fullname>: New
1449 member.
1450 * tui/tui-source.c (tui_source_window::set_contents): Update.
1451 (tui_source_window::location_matches_p)
1452 (tui_source_window::maybe_update): Update.
1453
f14bec58
TT
14542019-09-20 Tom Tromey <tom@tromey.com>
1455
1456 * tui/tui-winsource.h (~tui_source_element): Remove.
1457 (tui_source_element): Update.
1458 (struct tui_source_element) <line>: Now a unique_xmalloc_ptr.
1459 * tui/tui-winsource.c (tui_show_source_line): Update.
1460 * tui/tui-source.c (tui_source_window::set_contents): Update.
1461 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
1462
78d5933a
TT
14632019-09-20 Tom Tromey <tom@tromey.com>
1464
1465 * tui/tui-data.h (tui_clear_source_windows_detail): Don't
1466 declare.
1467 * tui/tui-layout.c (tui_add_win_to_layout): Don't call
1468 tui_clear_source_windows_detail.
1469 * tui/tui-winsource.h (struct tui_source_window_base)
1470 <clear_detail>: Don't declare.
1471 * tui/tui-winsource.c (tui_source_window_base::clear_detail):
1472 Remove.
1473 * tui/tui-data.c (tui_clear_source_windows_detail): Remove.
1474
d4207696
TT
14752019-09-20 Tom Tromey <tromey@adacore.com>
1476
1477 PR ada/24919:
1478 * block.c (contained_in): Fix final return value.
1479
00f93c44
AM
14802019-09-20 Alan Modra <amodra@gmail.com>
1481
1482 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Use bfd_set_usrdata.
1483 * dwarf2read.c (dwarf2_read_gdb_index, dwarf2_read_debug_names),
1484 (read_indirect_string_from_dwz): Use bfd accessor.
1485 * dwarf2read.h (struct dwz_file <filename>): Likewise.
1486 * machoread.c (macho_symfile_read_all_oso): Likewise.
1487 * solib.c (solib_bfd_open): Likewise.
1488
e4153ae6
CB
14892019-09-19 Christian Biesinger <cbiesinger@google.com>
1490
1491 * eval.c: Move declaration of overload_resolution to...
1492 * value.h: ...here.
1493
c7ae7675
CB
14942019-09-19 Christian Biesinger <cbiesinger@google.com>
1495
1496 * arm-linux-nat.c: Remove extern declaration for arm_apcs_32.
1497 * arm-linux-tdep.c: Likewise.
1498 * arm-nbsd-nat.c: Likewise.
1499 * arm-tdep.h: Declare arm_apcs_32.
1500 * arm-tdep.c: Move documentation for arm_apcs_32 to arm-tdep.h.
1501
e86f08d2
CB
15022019-09-19 Christian Biesinger <cbiesinger@google.com>
1503
1504 * dwarf2loc.c: Remove extern declaration of dwarf_always_disassemble.
1505 * dwarf2read.h: Declare dwarf_always_disassemble.
1506
f64e2f40
TV
15072019-09-19 Tom de Vries <tdevries@suse.de>
1508
1509 PR gdb/25009
1510 * source-cache.c (source_cache::ensure): Catch exception thrown during
1511 construction of the highlighter.
1512
fd361982
AM
15132019-09-18 Alan Modra <amodra@gmail.com>
1514
1515 * aarch64-linux-tdep.c, * arm-tdep.c, * auto-load.c,
1516 * coff-pe-read.c, * coffread.c, * corelow.c, * dbxread.c,
1517 * dicos-tdep.c, * dwarf2-frame.c, * dwarf2read.c, * elfread.c,
1518 * exec.c, * fbsd-tdep.c, * gcore.c, * gdb_bfd.c, * gdb_bfd.h,
1519 * hppa-tdep.c, * i386-cygwin-tdep.c, * i386-fbsd-tdep.c,
1520 * i386-linux-tdep.c, * jit.c, * linux-tdep.c, * machoread.c,
1521 * maint.c, * mdebugread.c, * minidebug.c, * mips-linux-tdep.c,
1522 * mips-sde-tdep.c, * mips-tdep.c, * mipsread.c, * nto-tdep.c,
1523 * objfiles.c, * objfiles.h, * osabi.c, * ppc-linux-tdep.c,
1524 * ppc64-tdep.c, * record-btrace.c, * record-full.c, * remote.c,
1525 * rs6000-aix-tdep.c, * rs6000-tdep.c, * s390-linux-tdep.c,
1526 * s390-tdep.c, * solib-aix.c, * solib-dsbt.c, * solib-frv.c,
1527 * solib-spu.c, * solib-svr4.c, * solib-target.c,
1528 * spu-linux-nat.c, * spu-tdep.c, * symfile-mem.c, * symfile.c,
1529 * symmisc.c, * symtab.c, * target.c, * windows-nat.c,
1530 * xcoffread.c, * cli/cli-dump.c, * compile/compile-object-load.c,
1531 * mi/mi-interp.c: Update throughout for bfd section macro and
1532 function changes.
1533 * gcore (gcore_create_callback): Use bfd_set_section_lma.
1534 * spu-tdep.c (spu_overlay_new_objfile): Likewise.
1535
11061048
TT
15362019-09-18 Tom Tromey <tom@tromey.com>
1537
1538 * NEWS: Add entry.
1539 * tui/tui.c (tui_initialize_readline): Set name of keymap. Do not
1540 call rl_initialize.
1541 (tui_enable): Do not call rl_initialize.
1542
7a27b85f
CG
15432019-09-18 Christian Groessler <chris@groessler.org>
1544
1545 * alpha-linux-nat.c: Include gdbarch.h.
1546
f64eea3a
SM
15472019-09-18 Simon Marchi <simon.marchi@polymtl.ca>
1548
1549 * ui-file.c: Include cli/cli-style.h.
1550 (term_cli_styling): Remove cli_styling declaration.
1551
e6f7f6d1
AM
15522019-09-18 Alan Modra <amodra@gmail.com>
1553
1554 * arm-tdep.c (arm_record_special_symbol): Update bfd_get_section
1555 to bfd_asymbol_section.
1556
1d38e9d1
AM
15572019-09-18 Alan Modra <amodra@gmail.com>
1558
1559 * amd64-dicos-tdep.c (amd64_dicos_osabi_sniffer): Constify target.
1560 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
1561 * i386-dicos-tdep.c (i386_dicos_osabi_sniffer): Likewise.
1562
90d92a63
AM
15632019-09-18 Alan Modra <amodra@gmail.com>
1564
1565 * solib-spu.c (spu_bfd_open): Use bfd_set_filename.
1566 * spu-linux-nat.c (spu_bfd_open): Likewise.
1567
a3d181d2
CB
15682019-09-18 Christian Biesinger <cbiesinger@google.com>
1569
1570 * dwarf2loc.c: Change extern declaration of dwarf_always_disassemble
1571 to bool to match definition in dwarf2read.c.
1572
491144b5
CB
15732019-09-17 Christian Biesinger <cbiesinger@google.com>
1574
1575 * ada-lang.c (ada_ignore_descriptive_types_p): Change to bool.
1576 (print_signatures): Likewise.
1577 (trust_pad_over_xvs): Likewise.
1578 * arch/aarch64-insn.c (aarch64_debug): Likewise.
1579 * arch/aarch64-insn.h (aarch64_debug): Likewise.
1580 * arm-linux-nat.c (arm_apcs_32): Likewise.
1581 * arm-linux-tdep.c (arm_apcs_32): Likewise.
1582 * arm-nbsd-nat.c (arm_apcs_32): Likewise.
1583 * arm-tdep.c (arm_debug): Likewise.
1584 (arm_apcs_32): Likewise.
1585 * auto-load.c (debug_auto_load): Likewise.
1586 (auto_load_gdb_scripts): Likewise.
1587 (global_auto_load): Likewise.
1588 (auto_load_local_gdbinit): Likewise.
1589 (auto_load_local_gdbinit_loaded): Likewise.
1590 * auto-load.h (global_auto_load): Likewise.
1591 (auto_load_local_gdbinit): Likewise.
1592 (auto_load_local_gdbinit_loaded): Likewise.
1593 * breakpoint.c (disconnected_dprintf): Likewise.
1594 (breakpoint_proceeded): Likewise.
1595 (automatic_hardware_breakpoints): Likewise.
1596 (always_inserted_mode): Likewise.
1597 (target_exact_watchpoints): Likewise.
1598 (_initialize_breakpoint): Update.
1599 * breakpoint.h (target_exact_watchpoints): Change to bool.
1600 * btrace.c (maint_btrace_pt_skip_pad): Likewise.
1601 * cli/cli-cmds.c (trace_commands): Likewise.
1602 * cli/cli-cmds.h (trace_commands): Likewise.
1603 * cli/cli-decode.c (add_setshow_boolean_cmd): Change int* argument
1604 to bool*.
1605 * cli/cli-logging.c (logging_overwrite): Change to bool.
1606 (logging_redirect): Likewise.
1607 (debug_redirect): Likewise.
1608 * cli/cli-option.h (option_def) <boolean>: Change return type to bool*.
1609 (struct boolean_option_def) <get_var_address_cb_>: Change return type
1610 to bool.
1611 <boolean_option_def>: Update.
1612 (struct flag_option_def): Change default type of Context to bool
1613 from int.
1614 <flag_option_def>: Change return type of var_address_cb_ to bool*.
1615 * cli/cli-setshow.c (do_set_command): Cast to bool* instead of int*.
1616 (get_setshow_command_value_string): Likewise.
1617 * cli/cli-style.c (cli_styling): Change to bool.
1618 (source_styling): Likewise.
1619 * cli/cli-style.h (source_styling): Likewise.
1620 (cli_styling): Likewise.
1621 * cli/cli-utils.h (struct qcs_flags) <quiet, cont, silent>: Change
1622 to bool.
1623 * command.h (var_types): Update comment.
1624 (add_setshow_boolean_cmd): Change int* var argument to bool*.
1625 * compile/compile-cplus-types.c (debug_compile_cplus_types): Change to
1626 bool.
1627 (debug_compile_cplus_scopes): Likewise.
1628 * compile/compile-internal.h (compile_debug): Likewise.
1629 * compile/compile.c (compile_debug): Likewise.
1630 (struct compile_options) <raw>: Likewise.
1631 * cp-support.c (catch_demangler_crashes): Likewise.
1632 * cris-tdep.c (usr_cmd_cris_version_valid): Likewise.
1633 (usr_cmd_cris_dwarf2_cfi): Likewise.
1634 * csky-tdep.c (csky_debug): Likewise.
1635 * darwin-nat.c (enable_mach_exceptions): Likewise.
1636 * dcache.c (dcache_enabled_p): Likewise.
1637 * defs.h (info_verbose): Likewise.
1638 * demangle.c (demangle): Likewise.
1639 (asm_demangle): Likewise.
1640 * dwarf-index-cache.c (debug_index_cache): Likewise.
1641 * dwarf2-frame.c (dwarf2_frame_unwinders_enabled_p): Likewise.
1642 * dwarf2-frame.h (dwarf2_frame_unwinders_enabled_p): Likewise.
1643 * dwarf2read.c (check_physname): Likewise.
1644 (use_deprecated_index_sections): Likewise.
1645 (dwarf_always_disassemble): Likewise.
1646 * eval.c (overload_resolution): Likewise.
1647 * event-top.c (set_editing_cmd_var): Likewise.
1648 (exec_done_display_p): Likewise.
1649 * event-top.h (set_editing_cmd_var): Likewise.
1650 (exec_done_display_p): Likewise.
1651 * exec.c (write_files): Likewise.
1652 * fbsd-nat.c (debug_fbsd_lwp): Likewise
1653 (debug_fbsd_nat): Likewise.
1654 * frame.h (struct frame_print_options) <print_raw_frame_arguments>:
1655 Likewise.
1656 (struct set_backtrace_options) <backtrace_past_main>: Likewise.
1657 <backtrace_past_entry> Likewise.
1658 * gdb-demangle.h (demangle): Likewise.
1659 (asm_demangle): Likewise.
1660 * gdb_bfd.c (bfd_sharing): Likewise.
1661 * gdbcore.h (write_files): Likewise.
1662 * gdbsupport/common-debug.c (show_debug_regs): Likewise.
1663 * gdbsupport/common-debug.h (show_debug_regs): Likewise.
1664 * gdbthread.h (print_thread_events): Likewise.
1665 * gdbtypes.c (opaque_type_resolution): Likewise.
1666 (strict_type_checking): Likewise.
1667 * gnu-nat.c (gnu_debug_flag): Likewise.
1668 * guile/scm-auto-load.c (auto_load_guile_scripts): Likewise.
1669 * guile/scm-param.c (pascm_variable): Add boolval.
1670 (add_setshow_generic): Update.
1671 (pascm_param_value): Update.
1672 (pascm_set_param_value_x): Update.
1673 * hppa-tdep.c (hppa_debug): Change to bool..
1674 * infcall.c (may_call_functions_p): Likewise.
1675 (coerce_float_to_double_p): Likewise.
1676 (unwind_on_signal_p): Likewise.
1677 (unwind_on_terminating_exception_p): Likewise.
1678 * infcmd.c (startup_with_shell): Likewise.
1679 * inferior.c (print_inferior_events): Likewise.
1680 * inferior.h (startup_with_shell): Likewise.
1681 (print_inferior_events): Likewise.
1682 * infrun.c (step_stop_if_no_debug): Likewise.
1683 (detach_fork): Likewise.
1684 (debug_displaced): Likewise.
1685 (disable_randomization): Likewise.
1686 (non_stop): Likewise.
1687 (non_stop_1): Likewise.
1688 (observer_mode): Likewise.
1689 (observer_mode_1): Likewise.
1690 (set_observer_mode): Update.
1691 (sched_multi): Change to bool.
1692 * infrun.h (debug_displaced): Likewise.
1693 (sched_multi): Likewise.
1694 (step_stop_if_no_debug): Likewise.
1695 (non_stop): Likewise.
1696 (disable_randomization): Likewise.
1697 * linux-tdep.c (use_coredump_filter): Likewise.
1698 (dump_excluded_mappings): Likewise.
1699 * linux-thread-db.c (auto_load_thread_db): Likewise.
1700 (check_thread_db_on_load): Likewise.
1701 * main.c (captured_main_1): Update.
1702 * maint-test-options.c (struct test_options_opts) <flag_opt, xx1_opt,
1703 xx2_opt, boolean_opt>: Change to bool.
1704 * maint-test-settings.c (maintenance_test_settings_boolean): Likewise.
1705 * maint.c (maintenance_profile_p): Likewise.
1706 (per_command_time): Likewise.
1707 (per_command_space): Likewise.
1708 (per_command_symtab): Likewise.
1709 * memattr.c (inaccessible_by_default): Likewise.
1710 * mi/mi-main.c (mi_async): Likewise.
1711 (mi_async_1): Likewise.
1712 * mips-tdep.c (mips64_transfers_32bit_regs_p): Likewise.
1713 * nat/fork-inferior.h (startup_with_shell): Likewise.
1714 * nat/linux-namespaces.c (debug_linux_namespaces): Likewise.
1715 * nat/linux-namespaces.h (debug_linux_namespaces): Likewise.
1716 * nios2-tdep.c (nios2_debug): Likewise.
1717 * or1k-tdep.c (or1k_debug): Likewise.
1718 * parse.c (parser_debug): Likewise.
1719 * parser-defs.h (parser_debug): Likewise.
1720 * printcmd.c (print_symbol_filename): Likewise.
1721 * proc-api.c (procfs_trace): Likewise.
1722 * python/py-auto-load.c (auto_load_python_scripts): Likewise.
1723 * python/py-param.c (union parmpy_variable): Add "bool boolval" field.
1724 (set_parameter_value): Update.
1725 (add_setshow_generic): Update.
1726 * python/py-value.c (copy_py_bool_obj): Change argument from int*
1727 to bool*.
1728 * python/python.c (gdbpy_parameter_value): Cast to bool* instead of
1729 int*.
1730 * ravenscar-thread.c (ravenscar_task_support): Change to bool.
1731 * record-btrace.c (record_btrace_target::store_registers): Update.
1732 * record-full.c (record_full_memory_query): Change to bool.
1733 (record_full_stop_at_limit): Likewise.
1734 * record-full.h (record_full_memory_query): Likewise.
1735 * remote-notif.c (notif_debug): Likewise.
1736 * remote-notif.h (notif_debug): Likewise.
1737 * remote.c (use_range_stepping): Likewise.
1738 (interrupt_on_connect): Likewise.
1739 (remote_break): Likewise.
1740 * ser-tcp.c (tcp_auto_retry): Likewise.
1741 * ser-unix.c (serial_hwflow): Likewise.
1742 * skip.c (debug_skip): Likewise.
1743 * solib-aix.c (solib_aix_debug): Likewise.
1744 * spu-tdep.c (spu_stop_on_load_p): Likewise.
1745 (spu_auto_flush_cache_p): Likewise.
1746 * stack.c (struct backtrace_cmd_options) <full, no_filters, hide>:
1747 Likewise.
1748 (struct info_print_options) <quiet>: Likewise.
1749 * symfile-debug.c (debug_symfile): Likewise.
1750 * symfile.c (auto_solib_add): Likewise.
1751 (separate_debug_file_debug): Likewise.
1752 * symfile.h (auto_solib_add): Likewise.
1753 (separate_debug_file_debug): Likewise.
1754 * symtab.c (basenames_may_differ): Likewise.
1755 (struct filename_partial_match_opts) <dirname, basename>: Likewise.
1756 (struct info_print_options) <quiet, exclude_minsyms>: Likewise.
1757 (struct info_types_options) <quiet>: Likewise.
1758 * symtab.h (demangle): Likewise.
1759 (basenames_may_differ): Likewise.
1760 * target-dcache.c (stack_cache_enabled_1): Likewise.
1761 (code_cache_enabled_1): Likewise.
1762 * target.c (trust_readonly): Likewise.
1763 (may_write_registers): Likewise.
1764 (may_write_memory): Likewise.
1765 (may_insert_breakpoints): Likewise.
1766 (may_insert_tracepoints): Likewise.
1767 (may_insert_fast_tracepoints): Likewise.
1768 (may_stop): Likewise.
1769 (auto_connect_native_target): Likewise.
1770 (target_stop_and_wait): Update.
1771 (target_async_permitted): Change to bool.
1772 (target_async_permitted_1): Likewise.
1773 (may_write_registers_1): Likewise.
1774 (may_write_memory_1): Likewise.
1775 (may_insert_breakpoints_1): Likewise.
1776 (may_insert_tracepoints_1): Likewise.
1777 (may_insert_fast_tracepoints_1): Likewise.
1778 (may_stop_1): Likewise.
1779 * target.h (target_async_permitted): Likewise.
1780 (may_write_registers): Likewise.
1781 (may_write_memory): Likewise.
1782 (may_insert_breakpoints): Likewise.
1783 (may_insert_tracepoints): Likewise.
1784 (may_insert_fast_tracepoints): Likewise.
1785 (may_stop): Likewise.
1786 * thread.c (struct info_threads_opts) <show_global_ids>: Likewise.
1787 (make_thread_apply_all_options_def_group): Change argument from int*
1788 to bool*.
1789 (thread_apply_all_command): Update.
1790 (print_thread_events): Change to bool.
1791 * top.c (confirm): Likewise.
1792 (command_editing_p): Likewise.
1793 (history_expansion_p): Likewise.
1794 (write_history_p): Likewise.
1795 (info_verbose): Likewise.
1796 * top.h (confirm): Likewise.
1797 (history_expansion_p): Likewise.
1798 * tracepoint.c (disconnected_tracing): Likewise.
1799 (circular_trace_buffer): Likewise.
1800 * typeprint.c (print_methods): Likewise.
1801 (print_typedefs): Likewise.
1802 * utils.c (debug_timestamp): Likewise.
1803 (sevenbit_strings): Likewise.
1804 (pagination_enabled): Likewise.
1805 * utils.h (sevenbit_strings): Likewise.
1806 (pagination_enabled): Likewise.
1807 * valops.c (overload_resolution): Likewise.
1808 * valprint.h (struct value_print_options) <prettyformat_arrays,
1809 prettyformat_structs, vtblprint, unionprint, addressprint, objectprint,
1810 stop_print_at_null, print_array_indexes, deref_ref, static_field_print,
1811 pascal_static_field_print, raw, summary, symbol_print, finish_print>:
1812 Likewise.
1813 * windows-nat.c (new_console): Likewise.
1814 (cygwin_exceptions): Likewise.
1815 (new_group): Likewise.
1816 (debug_exec): Likewise.
1817 (debug_events): Likewise.
1818 (debug_memory): Likewise.
1819 (debug_exceptions): Likewise.
1820 (useshell): Likewise.
1821 * windows-tdep.c (maint_display_all_tib): Likewise.
1822 * xml-support.c (debug_xml): Likewise.
1823
f1b620e9
MG
18242019-09-17 Mike Gulick <mgulick@mathworks.com>
1825
1826 * source.c (prepare_path_for_appending): New function.
1827 (openp): Make use of new function.
1828 (find_and_open_source): Search for the compilation directory and
1829 source file as a relative path beneath the directory search path.
1830
67f3ed6a
AB
18312019-09-17 Andrew Burgess <andrew.burgess@embecosm.com>
1832
1833 * source-cache.c (source_cache::get_line_charpos): Catch
1834 exceptions and return false, this matches the behaviour documented
1835 in the header file.
1836
74332189
JB
18372019-09-17 Joel Brobecker <brobecker@adacore.com>
1838
1839 * ada-tasks.c (info_task): Remove quoting of the task's name.
1840
f2f24aa9
CB
18412019-09-16 Christian Biesinger <cbiesinger@google.com>
1842
1843 * symfile.c (auto_solib_add): Replace comment with a reference
1844 to the header file.
1845
6a062a93
CB
18462019-09-14 Christian Biesinger <cbiesinger@google.com>
1847
1848 * NEWS: Mention that gdb can now be compiled with Python 3
1849 on Windows.
1850
ec6c8338
AB
18512019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
1852
1853 * maint.c (maint_print_section_data::maint_print_section_data):
1854 Force use of 'float log10 (float)' by casting the argument to
1855 float.
1856
aa17805f
AB
18572019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
1858
1859 * maint.c: Add 'cmath' include.
1860 (struct maint_print_section_data): New structure.
1861 (print_section_index): New function.
1862 (print_bfd_section_info): Add header comment, small whitespace
1863 cleanup, and update to call new print_section_index function.
1864 (print_objfile_section_info): Likewise.
1865 (maint_obj_section_from_bfd_section): New function.
1866 (print_bfd_section_info_maybe_relocated): New function.
1867 (maintenance_info_sections): Add header comment, always use
1868 bfd_map_over_sections instead of ALL_OBJFILE_OSECTIONS.
1869
3dd9bb46
AB
18702019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
1871
1872 * psymtab.c (find_pc_sect_psymtab): Move baseaddr local into more
1873 inner scope, add check that the objfile has psymtabs before
1874 checking psymtabs_addrmap.
1875 * psymtab.h (psymtab_storage) <psymtabs_addrmap>: Extend comment.
1876
4993045d
PW
18772019-09-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1878
1879 * NEWS: Announce that Ada task names are now shown at more places,
1880 and between quotes (except in info task output).
1881 * gdb/ada-tasks.c (task_to_str): New function.
1882 (display_current_task_id): Call task_to_str.
1883 (task_command_1): Likewise.
1884 (print_ada_task_info): In non-mi mode, Properly align headers and data
1885 when task-id length is > 9 (9 is the default for a 32 bits CORE_ADDR).
1886
7a289707
RO
18872019-09-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1888
1889 * procfs.c (procfs_target::wait) <PR_FAULTED>: Get signal from
1890 prstatus.pr_lwp.pr_info instead of making it up.
1891
f2aec7f6
CB
18922019-09-11 Christian Biesinger <cbiesinger@google.com>
1893
1894 * auto-load.c (auto_load_expand_dir_vars): Update.
1895 * defs.h (gdb_datadir): Change to std::string.
1896 (python_libdir): Likewise.
1897 (relocate_gdb_directory): Change return type to std::string.
1898 * guile/guile.c (gdbscm_data_directory): Update.
1899 (initialize_scheme_side): Update.
1900 * jit.c (jit_reader_dir): Change to std::string.
1901 (jit_reader_load_command): Update.
1902 * main.c (gdb_datadir): Change to std::string.
1903 (python_libdir): Likewise.
1904 (set_gdb_data_directory): Update.
1905 (relocate_path): Change to return std::string.
1906 (relocate_gdb_directory): Change to return std::string.
1907 (relocate_gdbinit_path_maybe_in_datadir): Update.
1908 (captured_main_1): Update.
1909 * python/python.c (do_start_initialization): Update.
1910 * top.c (show_gdb_datadir): Update.
1911 * xml-syscall.c (xml_init_syscalls_info): Update.
1912 (init_syscalls_info): Update.
1913
9224a013
CB
19142019-09-11 Christian Biesinger <cbiesinger@google.com>
1915
1916 * main.c (relocate_gdbinit_path_maybe_in_datadir): Factor this code
1917 out of get_init_files.
1918 (get_init_files): Update.
1919
f48cd836
CB
19202019-09-11 Christian Biesinger <cbiesinger@google.com>
1921
1922 * main.c (get_init_files): Change to use std::string.
1923 (captured_main_1): Update.
1924 (print_gdb_help): Update.
1925
9cab7ecd
AT
19262019-09-11 Ali Tamur <tamur@google.com>
1927
1928 *gdb/target-float.c (host_float_ops<T>::to_longest): Update
1929 implementation.
1930
67547d89
CB
19312019-09-11 Christian Biesinger <cbiesinger@google.com>
1932
1933 * dbxread.c (read_dbx_symtab): Update.
1934 * dwarf2read.c (load_partial_dies): Update.
1935 * mdebugread.c (parse_partial_symbols): Update.
1936 (handle_psymbol_enumerators): Update.
1937 * psympriv.h (add_psymbol_to_list): Change type of copy_names to bool.
1938 * psymtab.c (add_psymbol_to_bcache): Likewise.
1939 (add_psymbol_to_list): Likewise.
1940 * symtab.c (symbol_set_names): Likewise.
1941 * symtab.h (symbol_set_names): Likewise.
1942 * xcoffread.c (scan_xcoff_symtab): Update.
1943
64b2d4a0
TT
19442019-09-11 Tom Tromey <tom@tromey.com>
1945
1946 * symfile-mem.c (symbol_file_add_from_memory): Use
1947 bfd_set_filename.
1948 * solib-darwin.c (darwin_bfd_open): Use bfd_set_filename.
1949 * solib-aix.c (solib_aix_bfd_open): Use bfd_set_filename.
1950
3b00ef10
TT
19512019-09-10 Tom Tromey <tromey@adacore.com>
1952
1953 * dwarf-index-write.c (write_psymbols): Extend error message.
1954 (debug_names::insert): Add Ada code.
1955 (debug_names::write_psymbols): Remove Ada check.
1956 (debug_names) <m_string_obstack>: New member.
1957 * dwarf2read.c (gdb_index_symbol_name_matcher): Remove.
1958 (gdb_index_symbol_name_matcher::matches): Remove.
1959 (mapped_index_base::find_name_components_bounds): Add "lang"
1960 parameter.
1961 (mapped_index_base::build_name_components): Also split names
1962 according to Ada syntax.
1963 (dw2_expand_symtabs_matching_symbol): Loop over languages. Change
1964 type of "match_callback".
1965 (check_match, check_find_bounds_finds)
1966 (dw2_expand_symtabs_matching): Update.
1967 (dw2_debug_names_iterator): Add new constructor.
1968 (dw2_debug_names_map_matching_symbols): New function.
1969 (dw2_debug_names_expand_symtabs_matching): Update.
1970 (dwarf2_debug_names_functions): Use
1971 dw2_debug_names_map_matching_symbols.
1972
aa391654
TT
19732019-09-10 Tom Tromey <tromey@adacore.com>
1974
1975 * dwarf2read.c (dw2_get_file_names_reader): Add the
1976 CU's file name to the results.
1977
b054970d
TT
19782019-09-10 Tom Tromey <tromey@adacore.com>
1979
1980 * ada-lang.c (add_nonlocal_symbols): Combine calls to
1981 map_matching_symbols. Update.
1982 * dwarf2read.c (dw2_map_matching_symbols): Update.
1983 * psymtab.c (match_partial_symbol): Change type; update.
1984 (psym_map_matching_symbols): Likewise.
1985 * symfile-debug.c (debug_qf_map_matching_symbols): Change
1986 type; update.
1987 * symfile.h (struct quick_symbol_functions)
1988 <map_matching_symbols>: Change "name" to be a lookup_name_info.
1989 Remove "match".
1990
6a3dbf1b
TT
19912019-09-10 Tom Tromey <tromey@adacore.com>
1992
1993 * psymtab.c (map_block): Remove.
1994 (psym_map_matching_symbols): Use iterate_over_symbols_terminated.
1995 * symtab.c (iterate_over_symbols_terminated): New function.
1996 * symtab.c (iterate_over_symbols_terminated): Declare.
1997
6969f124
TT
19982019-09-10 Tom Tromey <tromey@adacore.com>
1999
2000 * ada-lang.c (ada_iterate_over_symbols): Return bool.
2001 * language.h (struct language_defn) <la_iterate_over_symbols>:
2002 Return bool.
2003 * symtab.c (iterate_over_symbols): Return bool.
2004 * symtab.h (iterate_over_symbols): Return bool.
2005
199b4314
TT
20062019-09-10 Tom Tromey <tromey@adacore.com>
2007
2008 * ada-lang.c (aux_add_nonlocal_symbols): Change type.
2009 (add_nonlocal_symbols): Update.
2010 * dwarf2read.c (dw2_map_matching_symbols): Change type.
2011 * psymtab.c (map_block, psym_map_matching_symbols): Change type.
2012 * symfile-debug.c (debug_qf_map_matching_symbols): Change type.
2013 * symfile.h (struct quick_symbol_functions) <map_matching_symbols>:
2014 Change type of "callback". Remove "data".
2015
a084a2a6
AT
2016
20172019-09-09 Ali Tamur <tamur@google.com>
2018
2019 * dwarf2read.c (comp_unit_head): Update comment.
2020 (dwarf2_dwo_name): New function declaration.
2021 (dwarf_unit_type_name): New function declaration.
2022 (read_comp_unit_head): Add support for new compilation units,
2023 DW_UT_partial, DW_UT_skeleton, DW_UT_split_compile, DW_UT_split_type.
2024 Particularly, DW_UT_skeleton and DW_UT_split_compile have dwo_id
2025 (currently named as "signature") in their header. Also clarify error
2026 messages.
2027 (lookup_dwo_id): New function. Returns the dwo id of the given
2028 compile unit.
2029 (lookup_dwo_unit): Use the new lookup_dwo_id function.
2030 (init_cutu_and_read_dies): Use the new dwarf2_dwo_name and lookup_dwo_id
2031 functions.
2032 (create_dwo_cu_reader): Use the added lookup_dwo_id function.
2033 (dwarf2_dwo_name): Get the dwo name if present.
2034 (dwarf_unit_type_name): Convert DW_UT_* types to string for diagnostic
2035 purposes.
2036
25a2915e
TT
20372019-09-09 Tom Tromey <tom@tromey.com>
2038
2039 * tui/tui-win.c (tui_all_windows_info): Use ui_out.
2040
e4df0874
PW
20412019-09-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2042
2043 * python/python.c (do_start_initialization): Make progname_copy static,
2044 to avoid a leak report.
2045
8634b462
TT
20462019-09-08 Tom Tromey <tom@tromey.com>
2047
2048 * tui/tui-wingeneral.c (box_win): Truncate long window titles.
2049
c7f839cb
SM
20502019-09-07 Simon Marchi <simon.marchi@efficios.com>
2051
2052 * dwarf2read.c (struct dw2_symtab_iterator) <block_index>:
2053 Change type to gdb::optional<block_enum>.
2054 (dw2_symtab_iter_init): Change block_index parameter type
2055 to gdb::optional<block_enum>.
2056 (dw2_lookup_symbol): Change block_index parameter
2057 type to block_enum.c
2058 (dw2_debug_names_lookup_symbol): Likewise.
2059 * psymtab.c (psym_lookup_symbol): Likewise.
2060 * symfile-debug.c (debug_qf_lookup_symbol): Likewise.
2061 * symfile.h (struct quick_symbol_functions) <lookup_symbol>:
2062 Likewise.
2063
ead0e69a
CB
20642019-09-06 Christian Biesinger <cbiesinger@google.com>
2065
2066 * defs.h (relocate_gdb_directory): Change int to bool in
2067 signature and rename flag to relocatable.
2068 * main.c (relocate_path): Likewise.
2069 (relocate_gdb_directory): Likewise.
2070
b16c44de
AM
20712019-09-06 Alan Modra <amodra@gmail.com>
2072
2073 * coffread.c (coff_symfile_read): Constify filename variable.
2074 * dbxread.c (dbx_symfile_init, coffstab_build_psymtabs),
2075 (elfstab_build_psymtabs, stabsect_build_psymtabs): Likewise.
2076 * gdb_bfd.c (gdb_bfd_close_or_warn): Likewise.
2077 * solib.c (reload_shared_libraries_1): Likewise.
2078 * symfile.c (reread_symbols): Likewise.
2079 * solib-aix.c (solib_aix_bfd_open): Add cast for xfree of filename.
2080 * solib-darwin.c (darwin_bfd_open): Likewise.
2081 * symfile-mem.c (symbol_file_add_from_memory): Likewise.
2082
06ff036e
AB
20832019-09-03 Andrew Burgess <andrew.burgess@embecosm.com>
2084
2085 * psymtab.c (print_partial_symbols): Handle missing domain_enum
2086 values MODULE_DOMAIN and COMMON_BLOCK_DOMAIN.
2087
4e962e74
TT
20882019-09-03 Tom Tromey <tromey@adacore.com>
2089
2090 * ada-valprint.c (ada_val_print_num): Don't recurse for range
2091 types.
2092 (has_negatives): Unbias a range type bound.
2093 * dwarf2read.c (read_subrange_type): Handle DW_AT_GNU_bias.
2094 * gdbtypes.c (operator==): Handle new field.
2095 (create_range_type): Add "bias" parameter.
2096 (create_static_range_type, resolve_dynamic_range): Update.
2097 * gdbtypes.h (struct range_bounds) <bias>: New member.
2098 (create_range_type): Add bias parameter.
2099 * printcmd.c (print_scalar_formatted): Unbias range types.
2100 * value.c (unpack_long): Unbias range types.
2101 (pack_long): Bias range types.
2102
d90b8f26
AH
21032019-09-02 Alan Hayward <alan.hayward@arm.com>
2104
2105 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Check all
2106 probe arguments.
2107
fe01123e
AH
21082019-09-02 Alan Hayward <alan.hayward@arm.com>
2109
2110 * break-catch-throw.c (fetch_probe_arguments): Use gdbarch.
2111 * dtrace-probe.c (dtrace_probe::get_argument_count): Likewise.
2112 * probe.c (probe_safe_evaluate_at_pc) (compute_probe_arg)
2113 (compile_probe_arg): Likewise.
2114 * probe.h (get_argument_count): Likewise.
2115 * solib-svr4.c (solib_event_probe_action): Likewise.
2116 * stap-probe.c (stap_probe::get_argument_count): Likewise.
2117
e661ef01
AH
21182019-09-02 Alan Hayward <alan.hayward@arm.com>
2119
2120 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Move
2121 code to here...
2122 (svr4_create_solib_event_breakpoints): ...from here.
2123
47a536d9
SDJ
21242019-08-30 Sergio Durigan Junior <sergiodj@redhat.com>
2125
2126 * nat/fork-inferior.c (trace_start_error): Remove "\nError: "
2127 suffix from warning message.
2128
d6a00eba
TT
21292019-08-30 Tom Tromey <tom@tromey.com>
2130
2131 * tui/tui-winsource.h (struct tui_source_window_base)
2132 <refresh_all>: Don't declare.
2133 * tui/tui-winsource.c (tui_source_window_base::refresh_all):
2134 Remove.
2135 * tui/tui-win.c (tui_refresh_all_win): Don't call refresh_all or
2136 tui_show_locator_content.
2137 * tui/tui-regs.h (struct tui_data_window) <refresh_all>: Don't
2138 declare.
2139 * tui/tui-regs.c (tui_data_window::refresh_all): Remove.
2140 * tui/tui-data.h (struct tui_win_info) <refresh_all>: Don't
2141 declare.
2142
55b2657b
TT
21432019-08-30 Tom Tromey <tom@tromey.com>
2144
2145 * tui/tui-io.c (tui_cont_sig): Don't call wrefresh.
2146
12a8555a
TT
21472019-08-30 Tom Tromey <tom@tromey.com>
2148
2149 * tui/tui-stack.c (_initialize_tui_stack): Move later.
2150 Remove unnecessary forward declarations.
2151
900ac242
TT
21522019-08-30 Tom Tromey <tom@tromey.com>
2153
2154 * tui/tui-stack.c (tui_locator_window::set_locator_fullname): Call
2155 rerender.
2156 (tui_update_locator_fullname, tui_show_frame_info): Don't call
2157 tui_show_locator_content.
2158
99ab33fb
TT
21592019-08-30 Tom Tromey <tom@tromey.com>
2160
2161 * tui/tui-stack.c (tui_show_locator_content): Move lower. Rewrite.
2162 (tui_locator_window::rerender): Rewrite using body of previous
2163 tui_show_locator_content.
2164
e594a5d1
TT
21652019-08-30 Tom Tromey <tom@tromey.com>
2166
2167 * tui/tui-stack.h (struct tui_locator_window) <set_locator_info,
2168 set_locator_fullname>: New methods.
2169 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
2170 Rename from tui_set_locator_fullname.
2171 (tui_locator_window::set_locator_info): Rename from
2172 tui_set_locator_info. Return bool.
2173 (tui_update_locator_fullname, tui_show_frame_info): Update.
2174
715bb467
TT
21752019-08-30 Tom Tromey <tom@tromey.com>
2176
2177 * tui/tui-layout.c (show_layout): Don't call tui_refresh_all.
2178
772f3f03
TT
21792019-08-30 Tom Tromey <tom@tromey.com>
2180
2181 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Don't
2182 call touchwin.
2183
108e13ab
TT
21842019-08-30 Tom Tromey <tom@tromey.com>
2185
2186 * tui/tui-wingeneral.c (box_win): Assume win_info and
2187 win_info->handle cannot be NULL.
2188
cdaa6eb4
TT
21892019-08-30 Tom Tromey <tom@tromey.com>
2190
2191 * tui/tui-regs.h (struct tui_data_item_window) <rerender,
2192 refresh_window>: Declare.
2193 * tui/tui-regs.c (tui_data_window::display_registers_from): Call
2194 resize.
2195 (tui_data_item_window::rerender): Rename from
2196 tui_display_register.
2197 (tui_data_item_window::refresh_window): New method.
2198 * tui/tui-layout.c (tui_gen_win_info::resize): Do nothing on
2199 no-op.
2200
89df7f90
TT
22012019-08-30 Tom Tromey <tom@tromey.com>
2202
2203 * tui/tui-regs.h (struct tui_data_window) <regs_content,
2204 regs_column_count, current_group>: Move later. Now private.
2205 <get_current_group>: New method.
2206 * tui/tui-regs.c (tui_reg_command): Update.
2207 * tui/tui-layout.c (tui_set_layout): Update.
2208
1bf2866a
TT
22092019-08-30 Tom Tromey <tom@tromey.com>
2210
2211 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
2212 (tui_data_window::rerender): Don't call
2213 check_and_display_highlight_if_needed.
2214 (tui_data_window::refresh_all): Remove call to
2215 erase_data_content.
2216
0670413d
TT
22172019-08-30 Tom Tromey <tom@tromey.com>
2218
2219 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
2220 (tui_data_window::display_registers_from)
2221 (tui_data_window::display_reg_element_at_line)
2222 (tui_data_window::display_registers_from_line): Remove checks of
2223 "empty".
2224
18bb55c7
TT
22252019-08-30 Tom Tromey <tom@tromey.com>
2226
2227 * tui/tui-regs.h (struct tui_data_window) <display_all_data>:
2228 Don't declare.
2229 * tui/tui-regs.c (tui_data_window::show_registers): Call
2230 rerender.
2231 (tui_data_window::rerender): Rename from display_all_data.
2232 (tui_data_window::rerender): Remove old implementation.
2233
1f6d2f10
TT
22342019-08-30 Tom Tromey <tom@tromey.com>
2235
2236 * tui/tui-regs.c (tui_data_window::display_all_data): Change
2237 text.
2238 * tui/tui-data.h (NO_DATA_STRING): Remove define.
2239
16d01f9c
BW
22402019-08-29 Bernhard Wodok <barto@gmx.net>
2241 Sergio Durigan Junior <sergiodj@redhat.com>
2242
2243 PR win32/24284
2244 * mingw-hdep.c (gdb_select): Handle case when 'n' is zero.
2245
d8f27c60
AB
22462019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
2247
2248 * symtab.c (search_symbols): Don't include MODULE_DOMAIN symbols
2249 when searching for types.
2250
1f20c35e
AB
22512019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
2252
2253 * f-lang.c (f_language_defn): Use f_print_typedef.
2254 * f-lang.h (f_print_typedef): Declare.
2255 * f-typeprint.c (f_print_typedef): Define.
2256
550105b7
CB
22572019-08-27 Christian Biesinger <cbiesinger@google.com>
2258
2259 * nat/linux-namespaces.c (mnsh_main): Initialize fd (to -1).
2260
4acfdd20
AB
22612019-08-27 Andrew Burgess <andrew.burgess@embecosm.com>
2262
2263 * cli/cli-utils.c (info_print_options_defs): Delete.
2264 (make_info_print_options_def_group): Delete.
2265 (extract_info_print_options): Delete.
2266 (info_print_command_completer): Delete.
2267 (info_print_args_help): Add extra parameter, and optionally
2268 include text about -n flag.
2269 * cli/cli-utils.h (struct info_print_options): Delete.
2270 (extract_info_print_options): Delete declaration.
2271 (info_print_command_completer): Delete declaration.
2272 (info_print_args_help): Add extra parameter, extend header
2273 comment.
2274 * python/python.c (gdbpy_rbreak): Pass additional parameter to
2275 search_symbols.
2276 * stack.c (struct info_print_options): New type.
2277 (info_print_options_defs): New file scoped variable.
2278 (make_info_print_options_def_group): New static function.
2279 (info_print_command_completer): New static function.
2280 (info_locals_command): Update to use new local functions.
2281 (info_args_command): Likewise.
2282 (_initialize_stack): Add extra parameter to calls to
2283 info_print_args_help.
2284 * symtab.c (search_symbols): Add extra parameter, use this to
2285 possibly excluse non-debug symbols.
2286 (symtab_symbol_info): Add extra parameter, which is passed on to
2287 search_symbols.
2288 (struct info_print_options): New type.
2289 (info_print_options_defs): New file scoped variable.
2290 (make_info_print_options_def_group): New static function.
2291 (info_print_command_completer): New static function.
2292 (info_variables_command): Update to use local functions, and pass
2293 extra parameter through to symtab_symbol_info.
2294 (info_functions_command): Likewise.
2295 (info_types_command): Pass additional argument through to
2296 symtab_symbol_info.
2297 (rbreak_command): Pass extra argument to search_symbols.
2298 (_initialize_symtab): Add extra arguments for calls to
2299 info_print_args_help, and update help text for 'info variables',
2300 'whereis', and 'info functions' commands.
2301 * symtab.h (search_symbols): Add extra argument to declaration.
2302 * NEWS: Mention new flags.
2303
9aa55206
CB
23042019-08-26 Christian Biesinger <cbiesinger@google.com>
2305
2306 * symtab.c (lookup_static_symbol): Call the new function (and move
2307 it down to be next to lookup_global_symbol).
2308 (struct global_sym_lookup_data): Add block_enum member and rename to...
2309 (struct global_or_static_sym_lookup_data): ...this.
2310 (lookup_symbol_global_iterator_cb): Pass block_index instead of
2311 GLOBAL_BLOCK to lookup_symbol_in_objfile and rename to...
2312 (lookup_symbol_global_or_static_iterator_cb): ...this.
2313 (lookup_global_or_static_symbol): New function.
2314 (lookup_global_symbol): Call new function.
2315
5c31b358
TV
23162019-08-26 Tom de Vries <tdevries@suse.de>
2317
2318 PR c++/24852
2319 * break-catch-throw.c (fetch_probe_arguments): Improve error mesage
2320 when pc_probe.prob == NULL.
2321
23c13d42
SM
23222019-08-25 Simon Marchi <simon.marchi@efficios.com>
2323
2324 * dwarf2read.c (dw2_debug_names_iterator::next): Rename local
2325 variable symbol_linkage to symbol_linkage_.
2326
beadd3e8
SM
23272019-08-25 Simon Marchi <simon.marchi@efficios.com>
2328
2329 * dwarf2read.c (dw2_debug_names_iterator::next): Use enum to
2330 represent whether the symbol is static, dynamic, or we don't
2331 know.
2332
e3ec872f
YS
23332019-08-25 Yoshinori Sato <ysato@users.sourceforge.jp>
2334
2335 * gdb/rx-tdep.c (rx_register_names): New.
2336 (rx_register_name): Delete.
2337 (rx_psw_type): Delete.
2338 (rx_fpsw_type): Delete.
2339 (rx_register_type): Delete.
2340 (rx_gdbarch_init): Convert target-descriptions.
2341 (_initialize_rx_tdep): Add initialize_tdesc_rx.
2342 * gdb/features/Makefile: Add rx.xml.
2343 * gdb/features/rx.xml: New.
2344 * gdb/features/rx.c: Generated.
2345 * gdb/NEWS: Mention target description support.
2346
d0509ba4
CB
23472019-08-22 Christian Biesinger <cbiesinger@google.com>
2348
2349 * symtab.c (symbol_cache_lookup): Always initialize *bsc_ptr and
2350 *slot_ptr.
2351
2d41fa11
SDJ
23522019-08-23 Sergio Durigan Junior <sergiodj@redhat.com>
2353
2354 * configure.ac: Don't check for 'dlfcn.h' (moved to
2355 gdbsupport/common.m4).
2356 * Makefile.in (COMMON_SFILES): Move 'gdb-dlfcn.c' to
2357 'gdbsupport/'.
2358 (HFILES_NO_SRCDIR): Likewise, for 'gdb-dlfcn.h'.
2359 * compile/compile-c-support.c: Include
2360 'gdbsupport/gdb-dlfcn.h'.
2361 * gdbsupport/common.m4: Check for 'dlfcn.h'.
2362 * gdb-dlfcn.c: Move to...
2363 * gdbsupport/gdb-dlfcn.c: ... here.
2364 * gdb-dlfcn.h: Move to...
2365 * gdbsupport/gdb-dlfcn.h: ... here.
2366
de8af808
SL
23672019-08-23 Sandra Loosemore <sandra@codesourcery.com>
2368
2369 * nios2-tdep.c (struct reg_value): Improve comments. Make
2370 the offset field signed.
2371
27204489
CB
23722019-08-22 Christian Biesinger <cbiesinger@google.com>
2373
2374 * python/lib/gdb/__init__.py (_execute_file): New function.
2375 * python/python.c (python_run_simple_file): Call gdb._execute_file
2376 on Windows.
2377
43771869
AB
23782019-08-22 Andrew Burgess <andrew.burgess@embecosm.com>
2379
2380 * f-exp.y (yylex): Remove is_a_field_of_this local variable, and
2381 all uses as this was never set to anything but a zero value.
2382
26c957f1
PA
23832019-08-21 Bogdan Harjoc <harjoc@gmail.com>
2384
2385 * cli/cli-cmds.c (with_command_1): Error out if no arguments.
2386
c07aae6e
CB
23872019-08-21 Christian Biesinger <cbiesinger@google.com>
2388
2389 * tui/tui-data.h (tui_gen_win_info): Add an =default
2390 move constructor, required by some GCC versions.
2391
3960cb7a
JF
23922019-08-21 Jinke Fan <fanjinke51@yeah.net>
2393
2394 * go32-nat.c (go32_sysinfo): Add hygon_p.
2395
04c72a68
TT
23962019-08-20 Tom Tromey <tom@tromey.com>
2397
2398 * tui/tui-regs.h (struct tui_data_window) <last_regs_line_no,
2399 line_from_reg_element_no, first_reg_element_no_inline,
2400 display_all_data, delete_data_content_windows,
2401 erase_data_content>: Now private.
2402
072272ce
TT
24032019-08-20 Tom Tromey <tom@tromey.com>
2404
2405 * tui/tui-wingeneral.c (box_win): Change type of highlight_flag.
2406 (tui_unhighlight_win, tui_highlight_win)
2407 (tui_win_info::make_window): Update.
2408 * tui/tui-data.h (HILITE, NO_HILITE): Remove.
2409
973961bd
TT
24102019-08-20 Tom Tromey <tom@tromey.com>
2411
2412 * tui/tui-data.h (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
2413 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
2414 (MAX_PID_WIDTH): Move to tui-stack.c.
2415 * tui/tui-stack.c (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
2416 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
2417 (MAX_PID_WIDTH): Move from tui-data.h.
2418
ab0e1f1a
TT
24192019-08-20 Tom Tromey <tom@tromey.com>
2420
2421 * tui/tui-wingeneral.h (tui_make_window): Don't declare.
2422 * tui/tui-wingeneral.c (box_win): Change type of win_info.
2423 (box_win): Update.
2424 (tui_gen_win_info::make_window): Rename from tui_make_window.
2425 (tui_win_info::make_window): New method.
2426 (tui_gen_win_info::make_visible): Update.
2427 * tui/tui-source.c (tui_source_window::set_contents): Update.
2428 * tui/tui-regs.c (tui_data_window::show_register_group): Update.
2429 (tui_data_window::display_registers_from): Update.
2430 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
2431 * tui/tui-data.h (struct tui_gen_win_info) <make_window>:
2432 Declare.
2433 <can_box>: Remove.
2434 <title>: Remove.
2435 (struct tui_win_info) <make_window>: Declare.
2436 <can_box>: Now virtual.
2437 <title>: New member.
2438 * tui/tui-data.c (~tui_gen_win_info): Don't free title.
2439 * tui/tui-command.c (tui_cmd_window::resize): Update.
2440
100c2bf3
TT
24412019-08-20 Tom Tromey <tom@tromey.com>
2442
2443 * tui/tui-regs.h (struct tui_data_window) <display_regs>: Remove.
2444 * tui/tui-regs.c (tui_data_window::show_registers): Update.
2445 (tui_data_window::check_register_values): Update.
2446
fa4dc567
TT
24472019-08-20 Tom Tromey <tom@tromey.com>
2448
2449 * tui/tui-regs.h (struct tui_data_window): Use
2450 DISABLE_COPY_AND_ASSIGN.
2451 <regs_content>: Change type, removing unique_ptr.
2452 <tui_data_window>: Add move constructor.
2453 * tui/tui-regs.c (tui_data_window::show_registers)
2454 (tui_data_window::show_register_group)
2455 (tui_data_window::display_registers_from)
2456 (tui_data_window::display_registers_from)
2457 (tui_data_window::first_data_item_displayed)
2458 (tui_data_window::delete_data_content_windows)
2459 (tui_data_window::rerender, tui_data_window::refresh_window)
2460 (tui_data_window::check_register_values): Update.
2461
ca02d7c8
TT
24622019-08-20 Tom Tromey <tom@tromey.com>
2463
2464 * tui/tui-regs.h (struct tui_data_window) <show_registers,
2465 show_register_group>: Declare.
2466 (tui_show_register_group): Don't declare.
2467 * tui/tui-regs.c (tui_data_window::show_registers): Rename from
2468 tui_show_registers.
2469 (tui_data_window::show_register_group): Rename from
2470 tui_show_register_group.
2471 (tui_data_window::check_register_values, tui_reg_command):
2472 Update.
2473 * tui/tui-layout.c (tui_set_layout): Update.
2474
63356bfd
TT
24752019-08-20 Tom Tromey <tom@tromey.com>
2476
2477 * tui/tui-regs.h (struct tui_data_window) <check_register_values>:
2478 Declare.
2479 (tui_check_register_values): Don't declare.
2480 * tui/tui-regs.c (tui_data_window::check_register_values): Rename
2481 from tui_check_register_values.
2482 * tui/tui-hooks.c (tui_register_changed): Update.
2483
42cc14a7
TT
24842019-08-20 Tom Tromey <tom@tromey.com>
2485
2486 * tui/tui-regs.c (tui_reg_layout): Move later.
2487 (tui_show_registers): Don't enable TUI mode or change layout.
2488
b9ad3686
TT
24892019-08-20 Tom Tromey <tom@tromey.com>
2490
2491 * tui/tui-regs.h (struct tui_data_item_window)
2492 <~tui_data_item_window>: Remove.
2493 <content>: Now a unique_xmalloc_ptr.
2494 * tui/tui-regs.c (tui_register_format): Return a
2495 unique_xmalloc_ptr.
2496 (tui_get_register): Update.
2497 (~tui_data_item_window): Remove.
2498 (tui_data_window::display_registers_from, tui_display_register):
2499 Update.
2500 * tui/tui-io.h (tui_expand_tabs): Update.
2501 * tui/tui-io.c (tui_expand_tabs): Return a unique_xmalloc_ptr.
2502 Remove "col" parameter.
2503
8e114aab
TT
25042019-08-20 Tom Tromey <tom@tromey.com>
2505
2506 * tui/tui-regs.h (struct tui_data_item_window) <value>: Remove
2507 field.
2508 * tui/tui-regs.c (~tui_data_item_window): Update.
2509
1a4f81dd
TT
25102019-08-20 Tom Tromey <tom@tromey.com>
2511
2512 * tui/tui-regs.c (tui_register_format, tui_get_register): Move
2513 earlier.
2514
0f8d8876
TT
25152019-08-20 Tom Tromey <tom@tromey.com>
2516
2517 * tui/tui-regs.c (tui_reg_command): Remove NULL check.
2518
605dc2c2
TT
25192019-08-20 Tom Tromey <tom@tromey.com>
2520
2521 * tui/tui-source.h (struct tui_source_window): Update.
2522 * tui/tui-regs.c (tui_show_registers): Update.
2523 * tui/tui-disasm.h (struct tui_disasm_window): Update.
2524 * tui/tui-data.h (NO_SRC_STRING, NO_DISASSEM_STRING)
2525 (NO_REGS_STRING): Remove defines.
2526
aedbe3bb
CM
25272019-08-20 Conrad Meyer <cem@FreeBSD.org>
2528
2529 * remote.c (remote_target::remote_btrace_maybe_reopen): Avoid
2530 unnecessary thread walk if remote doesn't support the packet.
2531
7ce8f214
TT
25322019-08-19 Tom Tromey <tromey@adacore.com>
2533
2534 * python/py-value.c (value_has_field): Fix indentation.
2535
f21c2bd7
TT
25362019-08-19 Tom Tromey <tromey@adacore.com>
2537
2538 * printcmd.c (do_one_display, info_display_command): Update.
2539 * block.h (contained_in): Return bool. Add allow_nested
2540 parameter.
2541 * block.c (contained_in): Return bool. Add allow_nested
2542 parameter.
2543
d806ea2d
TT
25442019-08-19 Tom Tromey <tom@tromey.com>
2545
2546 * configure: Rebuild.
2547 * configure.ac: Disallow the combination of -static-libstdc++ and
2548 source highlight.
2549 * source-cache.c (get_language_name): Handle rust.
2550 (source_cache::get_source_lines): Ignore highlighting exceptions.
2551
398fdd60
TT
25522019-08-16 Tom Tromey <tom@tromey.com>
2553
2554 * tui/tui.h (enum tui_win_type) <EXEC_INFO_WIN>: Remove.
2555 * tui/tui-winsource.h (struct tui_exec_info_window): Remove.
2556 (struct tui_source_window_base) <make_visible, refresh_window,
2557 resize>: Remove methods.
2558 <execution_info>: Remove field.
2559 * tui/tui-winsource.c (tui_source_window_base::do_erase_source_content)
2560 (tui_show_source_line, tui_source_window_base)
2561 (~tui_source_window_base): Update.
2562 (tui_source_window_base::resize)
2563 (tui_source_window_base::make_visible)
2564 (tui_source_window_base::refresh_window): Remove.
2565 (tui_source_window_base::update_exec_info): Update.
2566 * tui/tui-source.c (tui_source_window::set_contents): Update.
2567 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
2568
e699d331
TT
25692019-08-16 Tom Tromey <tom@tromey.com>
2570
2571 * tui/tui-hooks.c (tui_remove_hooks): Don't set
2572 deprecated_query_hook.
2573
bb01dbfc
TT
25742019-08-16 Tom Tromey <tom@tromey.com>
2575
2576 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
2577 (tui_update_source_windows_with_line): Update.
2578 * tui/tui-source.h (struct tui_source_window)
2579 <show_symtab_source>: Declare.
2580 (tui_show_symtab_source): Don't declare.
2581 * tui/tui-source.c (tui_show_symtab_source): Rename from
2582 tui_show_symtab_source.
2583
81c82c4b
TT
25842019-08-16 Tom Tromey <tom@tromey.com>
2585
2586 * tui/tui-winsource.h (struct tui_source_window_base)
2587 <set_contents>: Declare.
2588 * tui/tui-winsource.c
2589 (tui_source_window_base::update_source_window_as_is): Update.
2590 * tui/tui-source.h (struct tui_source_window) <set_contents>:
2591 Declare.
2592 (tui_set_source_content): Don't declare.
2593 * tui/tui-source.c (tui_source_window::set_contents): Rename from
2594 tui_set_source_content.
2595 * tui/tui-disasm.h (struct tui_disasm_window) <set_contents>:
2596 Declare.
2597 (tui_set_disassem_content): Don't declare.
2598 * tui/tui-disasm.c (tui_disasm_window::set_contents): Rename from
2599 tui_set_disassem_content.
2600
2ddaf614
TT
26012019-08-16 Tom Tromey <tom@tromey.com>
2602
2603 * tui/tui-winsource.h (struct tui_source_window_base)
2604 <update_breakpoint_info>: Declare.
2605 (tui_update_breakpoint_info): Don't declare.
2606 * tui/tui-winsource.c (tui_source_window_base::update_source_window_as_is)
2607 (tui_update_all_breakpoint_info): Update.
2608 (tui_source_window_base::update_breakpoint_info): Rename from
2609 tui_update_breakpoint_info.
2610 (tui_source_window_base::update_exec_info): Update.
2611
017f9828
TT
26122019-08-16 Tom Tromey <tom@tromey.com>
2613
2614 * tui/tui-winsource.h (struct tui_source_window_base)
2615 <update_source_window>: Declare.
2616 (tui_update_source_window): Don't declare.
2617 * tui/tui-winsource.c
2618 (tui_source_window_base::update_source_window): Rename from
2619 tui_update_source_window.
2620 (tui_source_window_base::rerender): Update.
2621 * tui/tui-source.c (tui_source_window::maybe_update): Update.
2622 * tui/tui-disasm.c (tui_show_disassem)
2623 (tui_show_disassem_and_update_source)
2624 (tui_disasm_window::maybe_update): Update.
2625
ed8358e9
TT
26262019-08-16 Tom Tromey <tom@tromey.com>
2627
2628 * tui/tui-winsource.h (struct tui_source_window_base)
2629 <update_source_window_as_is>: Declare.
2630 (tui_update_source_window_as_is): Don't declare.
2631 * tui/tui-winsource.c (tui_update_source_window): Update
2632 (tui_source_window_base::update_source_window_as_is): Rename from
2633 tui_update_source_window_as_is.
2634 (tui_source_window_base::refill): Update.
2635 * tui/tui-source.c (tui_show_symtab_source): Update.
2636 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical):
2637 Update.
2638
20149b6b
TT
26392019-08-16 Tom Tromey <tom@tromey.com>
2640
2641 * tui/tui-winsource.h (tui_update_source_window)
2642 (tui_update_source_window_as_is): Remove "noerror" parameter.
2643 * tui/tui-winsource.c (tui_update_source_window)
2644 (tui_update_source_window_as_is): Remove "noerror" parameter.
2645 (tui_update_source_windows_with_addr)
2646 (tui_update_source_windows_with_line)
2647 (tui_source_window_base::rerender)
2648 (tui_source_window_base::refill): Update.
2649 * tui/tui-source.h (tui_set_source_content)
2650 (tui_show_symtab_source): Remove "noerror" parameter.
2651 * tui/tui-source.c (tui_set_source_content): Remove "noerror"
2652 parameter.
2653 (tui_show_symtab_source): Likewise.
2654 (tui_source_window::maybe_update): Update.
2655 * tui/tui-disasm.c (tui_show_disassem)
2656 (tui_show_disassem_and_update_source)
2657 (tui_disasm_window::do_scroll_vertical)
2658 (tui_disasm_window::maybe_update): Update.
2659
2d83e710
TT
26602019-08-16 Tom Tromey <tom@tromey.com>
2661
2662 * tui/tui.c (tui_is_window_visible): Update.
2663 * tui/tui-wingeneral.c (tui_make_window)
2664 (tui_gen_win_info::make_visible, tui_refresh_all): Update.
2665 * tui/tui-win.c (window_name_completer, tui_refresh_all_win)
2666 (tui_set_focus_command, tui_all_windows_info, update_tab_width)
2667 (tui_set_win_height_command, parse_scrolling_args): Update.
2668 * tui/tui-source.c (tui_source_window::style_changed): Update.
2669 * tui/tui-regs.c (tui_show_registers)
2670 (tui_data_window::first_data_item_displayed)
2671 (tui_data_window::delete_data_content_windows)
2672 (tui_check_register_values, tui_reg_command): Update.
2673 * tui/tui-disasm.c (tui_show_disassem): Update.
2674 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: New
2675 method.
2676 <is_visible>: Remove field.
2677 * tui/tui-data.c (tui_next_win, tui_prev_win)
2678 (tui_delete_invisible_windows): Update.
2679
d4ab829a
TT
26802019-08-16 Tom Tromey <tom@tromey.com>
2681
2682 * tui/tui-winsource.h (struct tui_source_window_base)
2683 <m_has_locator>: Remove.
2684 * tui/tui-layout.c (show_source_disasm_command, show_data)
2685 (show_source_or_disasm_and_command): Update.
2686
aa7ca1bb
AH
26872019-08-16 Alan Hayward <alan.hayward@arm.com>
2688
2689 * NEWS (Other MI changes): New subsection.
2690 * aarch64-tdep.c (aarch64_get_pc_address_flags): New function.
2691 (aarch64_gdbarch_init): Add aarch64_get_pc_address_flags.
2692 * arch-utils.c (default_get_pc_address_flags): New function.
2693 * arch-utils.h (default_get_pc_address_flags): New declaration.
2694 * gdbarch.sh: Add get_pc_address_flags.
2695 * gdbarch.c: Regenerate.
2696 * gdbarch.h: Likewise.
2697 * stack.c (print_pc): New function.
2698 (print_frame_info) (print_frame): Call print_pc.
2699
6eac171f
TV
27002019-08-16 Tom de Vries <tdevries@suse.de>
2701
2702 * maint.c (maintenance_info_sections): Also handle !ALLOBJ case using
2703 print_objfile_section_info.
2704
3df505f6
TT
27052019-08-15 Tom Tromey <tom@tromey.com>
2706
2707 * tui/tui-io.c (tui_puts_internal): Check TUI_CMD_WIN before
2708 calling update_cmdwin_start_line.
2709 * tui/tui-winsource.h (struct tui_source_window_base)
2710 <do_make_visible_with_new_height, set_new_height>: Don't declare.
2711 <rerender>: Declare.
2712 * tui/tui-winsource.c (tui_source_window_base::update_tab_width):
2713 Call rerender.
2714 (tui_source_window_base::set_new_height): Remove.
2715 (tui_source_window_base::rerender): Rename from
2716 do_make_visible_with_new_height.
2717 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use
2718 resize method.
2719 (tui_win_info::make_invisible_and_set_new_height)
2720 (tui_win_info::make_visible_with_new_height): Remove.
2721 * tui/tui-stack.h (struct tui_locator_window) <rerender>:
2722 Declare.
2723 * tui/tui-stack.c (tui_locator_window::rerender): New method.
2724 * tui/tui-regs.h (struct tui_data_window) <set_new_height,
2725 do_make_visible_with_new_height>: Don't declare.
2726 <rerender>: Declare.
2727 * tui/tui-regs.c (tui_data_window::rerender): Rename from
2728 set_new_height.
2729 (tui_data_window::do_make_visible_with_new_height): Remove.
2730 * tui/tui-layout.c (show_source_disasm_command, show_data): Don't
2731 call tui_show_locator_content.
2732 (tui_gen_win_info::resize): Call rerender.
2733 (show_source_or_disasm_and_command): Don't call
2734 tui_show_locator_content.
2735 * tui/tui-data.h (struct tui_gen_win_info) <rerender>: New
2736 method.
2737 (struct tui_win_info) <rerender>: Declare.
2738 <set_new_height, make_invisible_and_set_new_height,
2739 make_visible_with_new_height>: Don't declare.
2740 * tui/tui-data.c (tui_win_list::rerender): New method.
2741 * tui/tui-command.h (struct tui_cmd_window)
2742 <do_make_visible_with_new_height>: Don't declare.
2743 * tui/tui-command.c
2744 (tui_cmd_window::do_make_visible_with_new_height): Remove.
2745
272560b5
TT
27462019-08-15 Tom Tromey <tromey@adacore.com>
2747
2748 * ada-exp.y (convert_char_literal): Handle "Q%c" encoding.
2749 * ada-lang.c (ada_enum_name): Likewise.
2750
08235187
CB
27512019-08-15 Christian Biesinger <cbiesinger@google.com>
2752
2753 * python/lib/gdb/__init__.py (GdbOutputFile): Rename to have a
2754 leading underscore.
2755 (GdbOutputErrorFile): Likewise.
2756 (global scope): Adjust constructor calls to GdbOutput{,Error}File
2757 accordingly.
2758 (execute_unwinders): Rename to have a leading underscore.
2759 (auto_load_packages): Likewise.
2760 (global scope): Adjust call to auto_load_packages accordingly.
2761 (GdbSetPythonDirectory): Likewise.
2762 * python/py-unwind.c (pyuw_sniffer): Call _execute_unwinders
2763 instead of execute_unwinders.
2764
db502012
TT
27652019-08-15 Tom Tromey <tom@tromey.com>
2766
2767 * tui/tui-layout.c (show_layout, show_source_disasm_command)
2768 (show_data): Don't change window visibility.
2769 (tui_gen_win_info::resize): Remove special case for command
2770 window. Use wresize, when available.
2771 (show_source_or_disasm_and_command): Don't change window
2772 visibility.
2773 * tui/tui-command.h (struct tui_cmd_window) <resize>: Declare.
2774 <make_visible>: New method.
2775 * tui/tui-command.c (tui_cmd_window::resize): New method.
2776
3891b65e
TT
27772019-08-15 Tom Tromey <tom@tromey.com>
2778
2779 * tui/tui-winsource.h (struct tui_source_window_iterator): New.
2780 (struct tui_source_windows): New.
2781 * tui/tui-winsource.c (tui_display_main): Update.
2782 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
2783 (new_height_ok, parse_scrolling_args): Update.
2784 * tui/tui-layout.c (show_layout, show_data): Update.
2785 * tui/tui-data.h (tui_source_windows, tui_clear_source_windows)
2786 (tui_add_to_source_windows): Don't declare.
2787 * tui/tui-data.c (source_windows, tui_source_windows)
2788 (tui_clear_source_windows, tui_add_to_source_windows): Remove.
2789
ee556432
TT
27902019-08-15 Tom Tromey <tom@tromey.com>
2791
2792 * tui/tui-winsource.h (struct tui_source_window_base) <resize>:
2793 Rename from reset.
2794 * tui/tui-winsource.c (tui_source_window_base::resize): Rename.
2795 * tui/tui-layout.c (show_source_disasm_command, show_data):
2796 Update.
2797 (tui_gen_win_info::resize): Rename.
2798 (show_source_or_disasm_and_command): Update.
2799 * tui/tui-data.h (struct tui_gen_win_info) <resize>: Rename from
2800 reset.
2801
46f438e3
TT
28022019-08-15 Tom Tromey <tom@tromey.com>
2803
2804 * tui/tui-stack.c (tui_initialize_static_data): Remove.
2805 * tui/tui-interp.c (tui_interp::init): Don't call
2806 tui_initialize_static_data.
2807 * tui/tui-data.h (tui_initialize_static_data): Don't declare.
2808
f4ce562c
TT
28092019-08-15 Tom Tromey <tom@tromey.com>
2810
2811 * tui/tui-layout.c (tui_default_win_viewport_height): Don't
2812 examine tui_win_list.
2813
c398c3d0
TT
28142019-08-15 Tom Tromey <tom@tromey.com>
2815
2816 * tui/tui-winsource.h (tui_clear_source_content): Don't declare.
2817 * tui/tui-winsource.c (tui_update_source_window_as_is): Don't call
2818 tui_clear_source_content.
2819 (tui_clear_source_content): Remove.
2820 (tui_source_window_base::do_erase_source_content): Hoist call to
2821 content.clear().
2822 * tui/tui-stack.c (tui_show_frame_info): Don't call
2823 tui_clear_source_content.
2824
e25d2004
TT
28252019-08-15 Tom Tromey <tom@tromey.com>
2826
2827 * tui/tui-winsource.h (struct tui_source_window_base)
2828 <do_erase_source_content>: New method.
2829 <erase_source_content>: New method.
2830 (tui_erase_source_content): Don't declare.
2831 * tui/tui-winsource.c (tui_clear_source_content): Update.
2832 (tui_source_window_base::do_erase_source_content): Rename from
2833 tui_erase_source_content.
2834 (tui_source_window_base::show_source_content): Update.
2835 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
2836 * tui/tui-source.h (struct tui_source_window)
2837 <erase_source_content>: New method.
2838 * tui/tui-disasm.h (struct tui_disasm_window)
2839 <erase_source_content>: New method.
2840
002f15c2
TT
28412019-08-15 Tom Tromey <tom@tromey.com>
2842
2843 * tui/tui-winsource.h (tui_alloc_source_buffer): Don't declare.
2844 (struct tui_source_element): Add DISABLE_COPY_AND_ASSIGN, and move
2845 constructor.
2846 * tui/tui-winsource.c (tui_alloc_source_buffer): Remove.
2847 * tui/tui-source.c (tui_set_source_content): Update.
2848 * tui/tui-disasm.c (tui_set_disassem_content): Update.
2849
c9033fe8
TT
28502019-08-15 Tom Tromey <tom@tromey.com>
2851
2852 * tui/tui-winsource.h (tui_line_is_displayed): Don't declare.
2853 * tui/tui-winsource.c (tui_line_is_displayed): Move to
2854 tui-source.c.
2855 * tui/tui-source.h (struct tui_source_window) <line_is_displayed>:
2856 Declare.
2857 * tui/tui-source.c (tui_source_window::line_is_displayed): New
2858 method.
2859 (tui_source_window::maybe_update): Update.
2860
088f37dd
TT
28612019-08-15 Tom Tromey <tom@tromey.com>
2862
2863 * tui/tui-winsource.h (tui_addr_is_displayed): Don't declare.
2864 * tui/tui-winsource.c (tui_addr_is_displayed): Move to
2865 tui-disasm.c.
2866 * tui/tui-disasm.h (struct tui_disasm_window) <addr_is_displayed>:
2867 Declare.
2868 * tui/tui-disasm.c (tui_disasm_window::addr_is_displayed): New
2869 method.
2870 (tui_disasm_window::maybe_update): Update.
2871
a54700c6
TT
28722019-08-15 Tom Tromey <tom@tromey.com>
2873
2874 * tui/tui-winsource.h (struct tui_source_window_base)
2875 <maybe_update>: Declare.
2876 * tui/tui-stack.c (tui_show_frame_info): Call maybe_update
2877 method.
2878 * tui/tui-source.h (struct tui_source_window) <maybe_update>:
2879 Declare.
2880 * tui/tui-source.c (tui_source_window::maybe_update): New method.
2881 * tui/tui-disasm.h (struct tui_disasm_window) <maybe_update>:
2882 Declare.
2883 * tui/tui-disasm.c (tui_disasm_window::maybe_update): New method.
2884
e2a678a5
TT
28852019-08-15 Tom Tromey <tom@tromey.com>
2886
2887 * tui/tui-stack.c (tui_make_status_line): Use string constructor.
2888
f2dda477
TT
28892019-08-15 Tom Tromey <tom@tromey.com>
2890
2891 * tui/tui-wingeneral.c: Include tui-stack.h.
2892 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN)
2893 (struct tui_locator_window): Move from tui-data.h.
2894 * tui/tui-stack.c (_locator, tui_locator_win_info_ptr)
2895 (tui_initialize_static_data): Move from tui-data.c.
2896 * tui/tui-data.h (MAX_LOCATOR_ELEMENT_LEN)
2897 (struct tui_locator_window): Move to tui-stack.c.
2898 * tui/tui-data.c (_locator, tui_locator_win_info_ptr)
2899 (tui_initialize_static_data): Move to tui-stack.c.
2900
ed4a1084
TT
29012019-08-15 Tom Tromey <tom@tromey.com>
2902
2903 * tui/tui-layout.c (show_source_disasm_command)
2904 (show_source_or_disasm_and_command): Use make_visible method, not
2905 tui_make_window.
2906 * tui/tui-command.h (struct tui_cmd_window) <make_visible>:
2907 Remove.
2908
65962b20
TT
29092019-08-15 Tom Tromey <tom@tromey.com>
2910
2911 * tui/tui-wingeneral.h (tui_make_window): Update.
2912 * tui/tui-wingeneral.c (tui_make_window): Remove "box_it"
2913 parameter.
2914 (tui_gen_win_info::make_visible): Update.
2915 * tui/tui-regs.c (tui_data_window::display_registers_from):
2916 Update.
2917 * tui/tui-layout.c (show_source_disasm_command)
2918 (show_source_or_disasm_and_command): Update.
2919 * tui/tui-data.h (struct tui_gen_win_info) <can_box>: New method.
2920 (enum tui_box): Remove.
2921 (struct tui_win_info) <can_box>: New method.
2922 * tui/tui-command.h (struct tui_cmd_window) <can_box>: New
2923 method.
2924
2208ee91
TV
29252019-08-15 Tom de Vries <tdevries@suse.de>
2926
2927 * linux-nat-trad.c: Include gdbarch.h.
2928
75faf5c4
AH
29292019-08-14 Alan Hayward <alan.hayward@arm.com>
2930
2931 * aarch64-tdep.c (aarch64_analyze_prologue): Allow any valid
2932 register sizes.
2933
b1c896b3
TT
29342019-08-14 Tom Tromey <tromey@adacore.com>
2935
2936 * darwin-nat.c: Include gdbarch.h.
2937 * darwin-nat-info.c: Include gdbarch.h.
2938
6405cd73
TT
29392019-08-13 Tom Tromey <tom@tromey.com>
2940
2941 * tui/tui-data.h (struct tui_gen_win_info) <last_visible_line>:
2942 Remove.
2943 * tui/tui-data.c (tui_initialize_static_data): Update.
2944
5216580d
TT
29452019-08-13 Tom Tromey <tom@tromey.com>
2946
2947 * tui/tui-winsource.h (struct tui_exec_info_window)
2948 <~tui_exec_info_window, maybe_allocate_content, get_content,
2949 m_content>: Remove.
2950 (struct tui_source_window_base) <set_exec_info_content,
2951 show_exec_info_content>: Don't declare.
2952 * tui/tui-winsource.c
2953 (tui_exec_info_window::maybe_allocate_content): Remove.
2954 (tui_source_window_base::update_exec_info): Rename from
2955 set_exec_info_content.
2956 (tui_source_window_base::show_exec_info_content)
2957 (tui_source_window_base::update_exec_info): Remove.
2958
93858ad3
TT
29592019-08-13 Tom Tromey <tom@tromey.com>
2960
2961 * tui/tui-winsource.h (tui_clear_exec_info_content): Don't
2962 declare.
2963 * tui/tui-winsource.c (tui_update_source_window_as_is)
2964 (tui_update_source_windows_with_addr, tui_erase_source_content):
2965 Update.
2966 (tui_clear_exec_info_content): Remove.
2967
e321e7ce
TT
29682019-08-13 Tom Tromey <tom@tromey.com>
2969
2970 * tui/tui-winsource.h (tui_erase_exec_info_content): Don't
2971 declare.
2972 * tui/tui-winsource.c (tui_source_window_base::refresh_all): Don't
2973 call tui_erase_exec_info_content.
2974 (tui_clear_exec_info_content): Rename from
2975 tui_erase_exec_info_content.
2976 (tui_clear_exec_info_content): Delete.
2977
8270ac62
TT
29782019-08-13 Tom Tromey <tom@tromey.com>
2979
2980 * tui/tui-winsource.h (struct tui_source_window_base)
2981 <show_exec_info_content>: Declare.
2982 (tui_show_exec_info_content): Don't declare.
2983 * tui/tui-winsource.c
2984 (tui_source_window_base::show_exec_info_content): Rename from
2985 tui_show_exec_info_content.
2986 (tui_source_window_base::update_exec_info): Update.
2987
7b56485d
TT
29882019-08-13 Tom Tromey <tom@tromey.com>
2989
2990 * tui/tui-data.h (enum tui_bp_flag, tui_bp_flags, struct tui_source_element)
2991 (TUI_BP_HIT_POS, TUI_BP_BREAK_POS, TUI_EXEC_POS)
2992 (TUI_EXECINFO_SIZE, tui_exec_info_content): Move ...
2993 * tui/tui-winsource.h (enum tui_bp_flag, tui_bp_flags, struct
2994 tui_source_element, TUI_BP_HIT_POS, TUI_BP_BREAK_POS)
2995 (TUI_EXEC_POS, TUI_EXECINFO_SIZE, tui_exec_info_content):
2996 ... here.
2997
7ba913dc
TT
29982019-08-13 Tom Tromey <tom@tromey.com>
2999
3000 * tui/tui-winsource.h (struct tui_source_window_base)
3001 <update_exec_info>: Declare.
3002 (tui_update_exec_info): Don't declare.
3003 * tui/tui-winsource.c (tui_update_source_window_as_is)
3004 (tui_source_window_base::refresh_all)
3005 (tui_update_all_breakpoint_info): Update.
3006 (tui_source_window_base::update_exec_info): Rename from
3007 tui_update_exec_info.
3008 * tui/tui-stack.c (tui_show_frame_info): Update.
3009
37a4a131
TT
30102019-08-13 Tom Tromey <tom@tromey.com>
3011
3012 * tui/tui-winsource.h (struct tui_source_window_base)
3013 <set_exec_info_content>: Declare.
3014 (tui_set_exec_info_content): Don't declare.
3015 * tui/tui-winsource.c
3016 (tui_source_window_base::set_exec_info_content): Rename from
3017 tui_set_exec_info_content.
3018 (tui_update_exec_info): Update.
3019
0bd27e07
TT
30202019-08-13 Tom Tromey <tom@tromey.com>
3021
3022 * tui/tui-winsource.h (struct tui_source_window_base)
3023 <show_source_content>: Declare.
3024 (tui_show_source_content): Don't declare.
3025 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
3026 (tui_source_window_base::show_source_content): Rename from
3027 tui_show_source_content.
3028 (tui_source_window_base::refresh_all): Update.
3029 * tui/tui-layout.c (show_source_disasm_command)
3030 (show_source_or_disasm_and_command): Update.
3031
b4ef5aeb
TT
30322019-08-13 Tom Tromey <tom@tromey.com>
3033
3034 * tui/tui-winsource.c (tui_erase_source_content)
3035 (tui_show_source_content, tui_source_window_base::refresh_all):
3036 Update.
3037 * tui/tui-wingeneral.h
3038 (tui_check_and_display_highlight_if_needed): Don't declare.
3039 * tui/tui-wingeneral.c
3040 (tui_win_info::check_and_display_highlight_if_needed): Rename from
3041 check_and_display_highlight_if_needed.
3042 * tui/tui-win.c (tui_rehighlight_all)
3043 (tui_win_info::make_visible_with_new_height): Update.
3044 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
3045 (tui_data_window::erase_data_content)
3046 (tui_data_window::display_all_data): Update.
3047 * tui/tui-data.h (struct tui_win_info)
3048 <check_and_display_highlight_if_needed>: Declare.
3049
fede5273
TT
30502019-08-13 Tom Tromey <tom@tromey.com>
3051
3052 * tui/tui-win.c (tui_resize_all): Call
3053 tui_delete_invisible_windows.
3054 * tui/tui-layout.c (show_layout): Call
3055 tui_delete_invisible_windows.
3056 * tui/tui-data.h (tui_delete_invisible_windows): Declare.
3057 * tui/tui-data.c (tui_delete_invisible_windows): New function.
3058
22c3f490
TT
30592019-08-13 Tom Tromey <tom@tromey.com>
3060
3061 * tui/tui-disasm.c (tui_show_disassem): Add assertion. Don't call
3062 tui_add_win_to_layout.
3063
16cb7910
TT
30642019-08-13 Tom Tromey <tom@tromey.com>
3065
3066 * tui/tui-layout.h (tui_default_win_height): Don't declare.
3067 * tui/tui-layout.c (tui_default_win_height): Now static.
3068
cc0c3ffb
TT
30692019-08-13 Tom Tromey <tom@tromey.com>
3070
3071 * tui/tui-layout.c (show_layout): Unify all layout cases into a
3072 single switch.
3073 (show_source_disasm_command, show_source_or_disasm_and_command):
3074 Don't check current layout.
3075
3f3ffe54
TT
30762019-08-13 Tom Tromey <tom@tromey.com>
3077
3078 * tui/tui-wingeneral.c (make_all_visible): Remove.
3079 (tui_make_all_invisible): Simplify.
3080 * tui/tui-layout.c (tui_make_all_invisible): Move from
3081 tui-wingeneral.c; simplify.
3082 (show_layout): Hoist call to tui_make_all_invisible.
3083 (show_data): Don't call tui_make_all_invisible.
3084
69258091
TT
30852019-08-13 Tom Tromey <tom@tromey.com>
3086
3087 * tui/tui-wingeneral.h (tui_make_all_visible): Don't declare.
3088 * tui/tui-wingeneral.c (tui_make_all_visible): Remove.
3089
62cf57fe
TT
30902019-08-13 Tom Tromey <tom@tromey.com>
3091
3092 * tui/tui-layout.c (current_layout, tui_current_layout): Move from
3093 tui-data.c.
3094 (show_source_disasm_command, show_data)
3095 (show_source_or_disasm_and_command): Don't use
3096 tui_set_current_layout_to.
3097 * tui/tui-data.h (tui_set_current_layout_to): Don't declare.
3098 * tui/tui-data.c (current_layout, tui_current_layout): Move to
3099 tui-layout.c.
3100 (tui_set_current_layout_to): Remove.
3101
2afade5d
TT
31022019-08-13 Tom Tromey <tom@tromey.com>
3103
3104 * tui/tui-layout.c (tui_set_layout): Update.
3105 * tui/tui-data.h (struct tui_layout_def): Remove.
3106 (tui_layout_def): Don't declare.
3107 * tui/tui-data.c (layout_def): Remove.
3108 (tui_layout_def): Remove.
3109
a3504e96
TT
31102019-08-13 Tom Tromey <tom@tromey.com>
3111
3112 * tui/tui-winsource.h (struct tui_source_window_base)
3113 <clear_detail>: No longer "override".
3114 * tui/tui-regs.h (struct tui_data_window) <clear_detail>: Remove.
3115 * tui/tui-regs.c (tui_data_window::clear_detail): Remove.
3116 * tui/tui-data.h (struct tui_win_info) <clear_detail>: Remove.
3117 * tui/tui-command.h (struct tui_cmd_window) <clear_detail>:
3118 Remove.
3119 * tui/tui-command.c (tui_cmd_window::clear_detail): Remove.
3120
29c92911
TT
31212019-08-13 Tom Tromey <tromey@adacore.com>
3122
3123 * tracepoint.c: Don't include readline.h or history.h.
3124
86c6b807
TT
31252019-08-12 Tom Tromey <tom@tromey.com>
3126
3127 * configure: Rebuild.
3128 * configure.ac: Check for readline 7.
3129 * NEWS: Mention readline 7 requirement.
3130 * README: Update.
3131
5db2718c
TT
31322019-08-12 Tom Tromey <tom@tromey.com>
3133
3134 * mingw-hdep.c (gdb_select): Remove readline hack.
3135
dac36daf
PFC
31362019-08-09 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
3137
3138 * blockframe.c (find_pc_partial_function): Set *block to nullptr
3139 when the function fails.
3140
1022c627
AA
31412019-08-09 Andreas Arnez <arnez@linux.ibm.com>
3142
3143 * s390-tdep.c (s390_type_align): New function.
3144 (s390_gdbarch_init): Set it as type_align gdbarch method.
3145
eba4caf2
TV
31462019-08-09 Tom de Vries <tdevries@suse.de>
3147
3148 PR gdb/24591
3149 * dwarf2read.c (dwarf2_fetch_die_loc_sect_off): Adjust pc_high and
3150 pc_low with relocation offset.
3151
123cd851
TT
31522019-08-07 Tom Tromey <tromey@adacore.com>
3153
3154 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
3155 (print_frame_args): Update.
3156 * python/py-framefilter.c (py_print_single_arg, enumerate_args):
3157 Update.
3158 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
3159 * frame.h (struct frame_arg): Add initializers.
3160 <error>: Now a unique_xmalloc_ptr.
3161
3d31bc39
AH
31622019-08-07 Alan Hayward <alan.hayward@arm.com>
3163
3164 * NEWS: Expand the Pointer Authentication entry.
3165 * aarch64-tdep.c (aarch64_frame_unmask_address): Rename from this.
3166 (aarch64_frame_unmask_lr): ... to this.
3167 (aarch64_prologue_prev_register, aarch64_dwarf2_prev_register):
3168 Call aarch64_frame_unmask_lr.
3169 * frame.c (struct frame_info): Add "masked" variable.
3170 (frame_set_previous_pc_masked) (frame_get_pc_masked): New functions.
3171 (fprint_frame): Check for masked pc.
3172 * frame.h (frame_set_previous_pc_masked) (frame_get_pc_masked): New
3173 declarations.
3174 * python/py-framefilter.c (py_print_frame): Check for masked pc.
3175 * stack.c (print_frame): Check for masked pc.
3176
0cf9feb9
TT
31772019-08-06 Tom Tromey <tom@tromey.com>
3178
3179 * stabsread.c (patch_block_stabs, read_one_struct_field)
3180 (read_enum_type): Use obstack_strndup.
3181 * rust-exp.y (rust_parser::copy_name): Use obstack_strndup.
3182 * gdb_obstack.h (obstack_strndup): Use obstack_strndup.
3183 * dwarf2read.c (guess_full_die_structure_name)
3184 (anonymous_struct_prefix): Use obstack_strndup.
3185 * dbxread.c (cp_set_block_scope): Use obstack_strndup.
3186 * c-exp.y (yylex): Use obstack_strndup.
3187 * ada-exp.y (write_object_renaming, write_ambiguous_var)
3188 (write_var_or_type): Use obstack_strndup.
3189
efba19b0
TT
31902019-08-06 Tom Tromey <tom@tromey.com>
3191
3192 * symfile.c (reread_symbols): Use obstack_strdup.
3193 * stabsread.c (read_type): Use obstack_strdup.
3194 * gdb_obstack.h (obstack_strdup): New overload.
3195 * dwarf2read.c (dwarf2_compute_name, create_dwo_unit_in_dwp_v1)
3196 (create_dwo_unit_in_dwp_v2, build_error_marker_type)
3197 (dwarf2_canonicalize_name): Use obstack_strdup.
3198 * dbxread.c (read_dbx_symtab): Use obstack_strdup.
3199 * cp-support.c (inspect_type, replace_typedefs_qualified_name):
3200 Use obstack_strdup.
3201
f25102f7
TT
32022019-08-06 Tom Tromey <tom@tromey.com>
3203
3204 * gdb_obstack.h (obstack_strdup): Define.
3205 * gdb_obstack.c (obstack_strdup): Don't define.
3206
021887d8
TT
32072019-08-06 Tom Tromey <tom@tromey.com>
3208
3209 * xcoffread.c (SYMNAME_ALLOC, process_xcoff_symbol): Use
3210 obstack_strdup.
3211 * typeprint.c (typedef_hash_table::find_global_typedef): Use
3212 obstack_strdup.
3213 * symfile.c (allocate_compunit_symtab): Use obstack_strdup.
3214 * stabsread.c (common_block_start): Use obstack_strdup.
3215 * objfiles.c (set_objfile_main_name, objfile): Use
3216 obstack_strdup.
3217 * namespace.c (add_using_directive): Use obstack_strdup.
3218 * mdebugread.c (parse_symbol, parse_type): Use obstack_strdup.
3219 * jit.c (finalize_symtab): Use obstack_strdup.
3220 * dwarf2read.c (fixup_go_packaging, dwarf2_physname)
3221 (guess_partial_die_structure_name, partial_die_info::fixup)
3222 (dwarf2_name): Use obstack_strdup.
3223 * coffread.c (coff_read_struct_type, coff_read_enum_type): Use
3224 obstack_strdup.
3225 * c-exp.y (scan_macro_expansion): Use obstack_strdup.
3226 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
3227 obstack_strdup.
3228 * ada-lang.c (ada_decode_symbol): Use obstack_strdup.
3229
d2834edc
PW
32302019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3231
3232 * unittests/help-doc-selftests.c: New file.
3233 * Makefile.in: Add the new file.
3234
590042fc
PW
32352019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3236
3237 * cli/cli-decode.h (print_doc_line): Add for_value_prefix argument.
3238 * cli/cli-decode.c (print_doc_line): Likewise. It now prints
3239 the full first line, except when FOR_VALUE_PREFIX. In this case,
3240 the trailing '.' is not output, and the first character is uppercased.
3241 (print_help_for_command): Update call to print_doc_line.
3242 (print_doc_of_command): Likewise.
3243 * cli/cli-setshow.c (deprecated_show_value_hack): Likewise.
3244 * cli/cli-option.c (append_indented_doc): Do not append newline.
3245 (build_help_option): Append newline after first appended_indented_doc
3246 only if a second call is done.
3247 (build_help): Append 2 new lines before each option, except the first
3248 one.
3249 * compile/compile.c (_initialize_compile): Add new lines after
3250 %OPTIONS%, when not at the end of the help.
3251 Change help doc or code
3252 producing the help doc to respect the invariants.
3253 * maint-test-options.c (_initialize_maint_test_options): Likewise.
3254 Also removed the new line after 'Options:', as all other commands
3255 do not put an empty line between 'Options:' and the first option.
3256 * printcmd.c (_initialize_printcmd): Likewise.
3257 * stack.c (_initialize_stack): Likewise.
3258 * interps.c (interpreter_exec_cmd): Fix "Usage:" line that was
3259 incorrectly telling COMMAND is optional.
3260 * ada-lang.c (_initialize_ada_language): Change help doc or code
3261 producing the help doc to respect the invariants.
3262 * ada-tasks.c (_initialize_ada_tasks): Likewise.
3263 * breakpoint.c (_initialize_breakpoint): Likewise.
3264 * cli/cli-cmds.c (_initialize_cli_cmds): Likewise.
3265 * cli/cli-logging.c (_initialize_cli_logging): Likewise.
3266 * cli/cli-setshow.c (_initialize_cli_setshow): Likewise.
3267 * cli/cli-style.c (cli_style_option::add_setshow_commands,
3268 _initialize_cli_style): Likewise.
3269 * corelow.c (core_target_info): Likewise.
3270 * dwarf-index-cache.c (_initialize_index_cache): Likewise.
3271 * dwarf2read.c (_initialize_dwarf2_read): Likewise.
3272 * filesystem.c (_initialize_filesystem): Likewise.
3273 * frame.c (_initialize_frame): Likewise.
3274 * gnu-nat.c (add_task_commands): Likewise.
3275 * infcall.c (_initialize_infcall): Likewise.
3276 * infcmd.c (_initialize_infcmd): Likewise.
3277 * interps.c (_initialize_interpreter): Likewise.
3278 * language.c (_initialize_language): Likewise.
3279 * linux-fork.c (_initialize_linux_fork): Likewise.
3280 * maint-test-settings.c (_initialize_maint_test_settings): Likewise.
3281 * maint.c (_initialize_maint_cmds): Likewise.
3282 * memattr.c (_initialize_mem): Likewise.
3283 * printcmd.c (_initialize_printcmd): Likewise.
3284 * python/lib/gdb/function/strfns.py (_MemEq, _StrLen, _StrEq,
3285 _RegEx): Likewise.
3286 * ravenscar-thread.c (_initialize_ravenscar): Likewise.
3287 * record-btrace.c (_initialize_record_btrace): Likewise.
3288 * record-full.c (_initialize_record_full): Likewise.
3289 * record.c (_initialize_record): Likewise.
3290 * regcache-dump.c (_initialize_regcache_dump): Likewise.
3291 * regcache.c (_initialize_regcache): Likewise.
3292 * remote.c (add_packet_config_cmd, init_remote_threadtests,
3293 _initialize_remote): Likewise.
3294 * ser-tcp.c (_initialize_ser_tcp): Likewise.
3295 * serial.c (_initialize_serial): Likewise.
3296 * skip.c (_initialize_step_skip): Likewise.
3297 * source.c (_initialize_source): Likewise.
3298 * stack.c (_initialize_stack): Likewise.
3299 * symfile.c (_initialize_symfile): Likewise.
3300 * symtab.c (_initialize_symtab): Likewise.
3301 * target-descriptions.c (_initialize_target_descriptions): Likewise.
3302 * top.c (init_main): Likewise.
3303 * tracefile-tfile.c (tfile_target_info): Likewise.
3304 * tracepoint.c (_initialize_tracepoint): Likewise.
3305 * tui/tui-win.c (_initialize_tui_win): Likewise.
3306 * utils.c (add_internal_problem_command): Likewise.
3307 * valprint.c (value_print_option_defs): Likewise.
3308
404f2902
FCE
33092019-08-06 Frank Ch. Eigler <fche@redhat.com>
3310
3311 PR build/24886
3312 * configure.ac: Drop enable-libmcheck support.
3313 * configure, config.in: Rebuild.
3314 * libmcheck.m4: Remove.
3315 * acinclude.m4: Don't include it.
3316 * Makefile.in: Don't distribute it.
3317 * top.c (print_gdb_configuration): Don't mention it.
3318
046bebe1
TT
33192019-08-06 Tom Tromey <tom@tromey.com>
3320
3321 * utils.c (set_output_style): Sometimes pass stream to
3322 emit_style_escape.
3323 * ui-out.h (class ui_out) <can_emit_style_escape>: Declare.
3324 * record-btrace.c (btrace_insn_history): Update.
3325 * mi/mi-out.h (class mi_ui_out) <can_emit_style_escape>: New
3326 method.
3327 * disasm.h (gdb_pretty_print_disassembler): Add uiout parameter.
3328 Update initializers.
3329 <m_uiout>: New field.
3330 <m_di>: Move lower.
3331 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
3332 Remove "uiout" parameter.
3333 (dump_insns): Update.
3334 * cli-out.h (class cli_ui_out) <can_emit_style_escape>: Declare.
3335 * cli-out.c (cli_ui_out::can_emit_style_escape): New method.
3336
ddbcedf5
CB
33372019-08-06 Christian Biesinger <cbiesinger@google.com>
3338
3339 * symtab.c (symbol_cache_lookup): Change int to enum block_enum.
3340 (error_in_psymtab_expansion): Likewise.
3341 (lookup_symbol_via_quick_fns): Likewise.
3342 (basic_lookup_transparent_type_quick): Likewise.
3343 (basic_lookup_transparent_type_1): Likewise.
3344
b08b16c8
TT
33452019-08-06 Tom Tromey <tromey@adacore.com>
3346
3347 * source.c (last_source_error): Now bool.
3348 (print_source_lines_base): Make "noprint" bool. Only open
3349 source file when last_source_visited changes.
3350
cb44333d
TT
33512019-08-06 Tom Tromey <tromey@adacore.com>
3352
3353 * annotate.c (annotate_source_line): Use g_source_cache.
3354 * source-cache.c (source_cache::get_plain_source_lines): Change
3355 parameters. Populate m_offset_cache.
3356 (source_cache::ensure): New method.
3357 (source_cache::get_line_charpos): New method.
3358 (extract_lines): Move lower. Change parameters.
3359 (source_cache::get_source_lines): Move lower.
3360 * source-cache.h (class source_cache): Update comment.
3361 <get_line_charpos>: New method.
3362 <get_source_lines>: Update comment.
3363 <clear>: Clear m_offset_cache.
3364 <get_plain_source_lines>: Change parameters.
3365 <ensure>: New method
3366 <m_offset_cache>: New member.
3367 * source.c (forget_cached_source_info_for_objfile): Update.
3368 (info_source_command): Use g_source_cache.
3369 (find_source_lines, open_source_file_with_line_charpos): Remove.
3370 (print_source_lines_base, search_command_helper): Use g_source_cache.
3371 * source.h (open_source_file_with_line_charpos): Don't declare.
3372 * symtab.h (struct symtab) <nlines, line_charpos>: Remove.
3373 * tui/tui-source.c (tui_source_window::do_scroll_vertical):
3374 Use g_source_cache.
3375
872dceaa
TT
33762019-08-06 Tom Tromey <tromey@adacore.com>
3377
3378 * source-cache.c (source_cache::get_plain_source_lines):
3379 Remove "first_line" and "last_line" parameters.
3380 (source_cache::get_source_lines): Cache plain text.
3381 * source-cache.h (class source_cache)
3382 <get_plain_source_lines>: Update.
3383
269249d9
TT
33842019-08-06 Tom Tromey <tromey@adacore.com>
3385
3386 * source-cache.c (extract_lines): No longer a method.
3387 Changed type of parameter. Include final newline.
3388 (selftests::extract_lines_test): New function.
3389 (_initialize_source_cache): Likewise.
3390 * source-cache.h (class source_cache)
3391 <extract_lines>: Don't declare.
3392
c0e8dcd8
TT
33932019-08-06 Tom Tromey <tromey@adacore.com>
3394
3395 * breakpoint.c (init_breakpoint_sal): Update.
3396 (breakpoint): Update.
3397 * breakpoint.h (struct breakpoint) <filter>: Now a
3398 unique_xmalloc_ptr.
3399
0b27c27d
CB
34002019-08-05 Christian Biesinger <cbiesinger@google.com>
3401
3402 * NEWS: Mention dictionary access on blocks.
3403 * python/py-block.c (blpy_getitem): New function.
3404 (block_object_as_mapping): New struct.
3405 (block_object_type): Use new struct for tp_as_mapping field.
3406
4ee94178
CB
34072019-08-05 Christian Biesinger <cbiesinger@google.com>
3408
3409 * objfiles.h (objfile): Add a comment describing partial symbols.
3410
8abfcabc
TT
34112019-08-05 Tom Tromey <tromey@adacore.com>
3412
3413 * compile/compile.c (_initialize_compile): Use _(), not N_().
3414 * thread.c (_initialize_thread): Use _(), not N_().
3415 * stack.c (_initialize_stack): Use _(), not N_().
3416 * printcmd.c (_initialize_printcmd): Use _(), not N_().
3417
2b79f376
SM
34182019-08-04 Simon Marchi <simon.marchi@polymtl.ca>
3419
3420 * dwarf2read.c (struct dw2_symtab_iterator):
3421 <want_specific_block>: Remove.
3422 <block_index>: Change type to gdb::optional.
3423 (dw2_symtab_iter_init): Remove WANT_SPECIFIC_BLOCK parameter,
3424 change type of BLOCK_INDEX parameter to gdb::optional.
3425 (dw2_symtab_iter_next): Re-write in function of gdb::optional.
3426 (dw2_lookup_symbol): Don't pass argument for
3427 WANT_SPECIFIC_BLOCK.
3428 (dw2_expand_symtabs_for_function): Don't pass argument for
3429 WANT_SPECIFIC_BLOCK, pass empty optional for BLOCK_INDEX.
3430 (class dw2_debug_names_iterator)
3431 <dw2_debug_names_iterator>: Remove WANT_SPECIFIC_BLOCK
3432 parameter, change BLOCK_INDEX type to gdb::optional.
3433 <m_want_specific_block>: Remove.
3434 <m_block_index>: Change type to gdb::optional.
3435 (dw2_debug_names_iterator::next): Change type of IS_STATIC to
3436 gdb::optional. Re-write in function of gdb::optional.
3437 (dw2_debug_names_lookup_symbol): Don't pass argument for
3438 WANT_SPECIFIC_BLOCK.
3439 (dw2_debug_names_expand_symtabs_for_function): Don't pass
3440 argument for WANT_SPECIFIC_BLOCK, pass empty optional for
3441 BLOCK_INDEX.
3442
ae60f04e
PW
34432019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3444
3445 * NEWS: Mention changes to "info sources" command.
3446
28cd9371
PW
34472019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3448
3449 * symtab.c (filename_partial_match_opts): New struct type.
3450 (struct output_source_filename_data): New members
3451 regexp, c_regexp, partial_match.
3452 (output_source_filename): Use new members to decide to print file.
3453 (info_sources_option_defs): New variable.
3454 (make_info_sources_options_def_group, print_info_sources_header,
3455 info_sources_command_completer):
3456 New functions.
3457 (info_sources_command): Read new optional arguments.
3458 (_initialize_symtab): Update info sources help.
3459
ca683e3a
AO
34602019-08-02 Alexandre Oliva <oliva@adacore.com>
3461
3462 * ada-lang.c (exception_support_info_v0): Renamed from...
3463 (default_exception_support_info): ... this. Create new
3464 definition for v1.
3465 (ada_has_this_exception_support): Look up catch_handlers_sym.
3466 (ada_exception_support_info_sniffer): Try v0 after default.
3467
f1264162
TT
34682019-08-01 Tom Tromey <tromey@adacore.com>
3469
3470 * ia64-libunwind-tdep.h (struct libunwind_descr): Include
3471 gdbarch.h.
3472
0a7b2485
CB
34732019-08-01 Christian Biesinger <cbiesinger@google.com>
3474
3475 * s12z-tdep.c: Fix include path for s12z-opc.h.
3476
c6bdbeb7
AH
34772019-08-01 Alan Hayward <alan.hayward@arm.com>
3478
3479 * NEWS: Require GNU make 3.82.
3480
a2bd7b82
TT
34812019-07-16 Tom Tromey <tom@tromey.com>
3482
3483 * tui/tui-wingeneral.h (tui_copy_win, tui_box_win): Don't
3484 declare.
3485
aa3b6533
TT
34862019-07-30 Tom Tromey <tromey@adacore.com>
3487
3488 * block.c (contained_in): Remove BLOCK_FUNCTION check.
3489
a1530dc7
KB
34902019-07-30 Kevin Buettner <kevinb@redhat.com>
3491
3492 * printcmd.c (print_address_symbolic): Print negative offsets.
3493 (build_address_symbolic): Force signed arithmetic when computing
3494 offset.
3495
2906593f
CB
34962019-07-30 Christian Biesinger <cbiesinger@google.com>
3497
3498 PR/24474: Add a function to lookup static variables.
3499 * NEWS: Mention this new function.
3500 * python/py-symbol.c (gdbpy_lookup_static_symbol): New function.
3501 * python/python-internal.h (gdbpy_lookup_static_symbol): New function.
3502 * python/python.c (python_GdbMethods): Add new function.
3503
c620ed88
CB
35042019-07-29 Christian Biesinger <cbiesinger@google.com>
3505
3506 * NEWS: Mention new functions Objfile.lookup_{global,static}_symbol.
3507 * python/py-objfile.c (objfpy_lookup_global_symbol): New function.
3508 (objfpy_lookup_static_symbol): New function.
3509 (objfile_object_methods): Add new functions.
3510
bc4268a5
PW
35112019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3512
3513 * NEWS: Mention 'set|show print frame-info'. Mention new
3514 'presence' value for 'frame-arguments'. Mention new '-frame-info'
3515 backtrace argument. Mention that python frame filtering code
3516 is now consistent with what 'backtrace' command prints.
3517
4b5e8d19
PW
35182019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3519
3520 * frame.h (enum print_what): New value 'SHORT_LOCATION', update
3521 comments.
3522 (print_frame_info_auto, print_frame_info_source_line,
3523 print_frame_info_location, print_frame_info_source_and_location,
3524 print_frame_info_location_and_address, print_frame_info_short_location):
3525 New declarations.
3526 (struct frame_print_options): New member print_frame_info.
3527 * extension.h (enum ext_lang_frame_args): New value CLI_PRESENCE.
3528 * stack.h (get_user_print_what_frame_info): New declaration.
3529 (frame_show_address): New declaration.
3530 * stack.c (print_frame_arguments_choices): New value 'presence'.
3531 (print_frame_info_auto, print_frame_info_source_line,
3532 print_frame_info_location, print_frame_info_source_and_location,
3533 print_frame_info_location_and_address, print_frame_info_short_location,
3534 print_frame_info_choices, print_frame_info_print_what): New definitions.
3535 (print_frame_args): Only print dots for args if print frame-arguments
3536 is 'presence'.
3537 (frame_print_option_defs): New element for "frame-info".
3538 (get_user_print_what_frame_info): New function.
3539 (frame_show_address): Make non static. Move comment to stack.h.
3540 (print_frame_info_to_print_what): New function.
3541 (print_frame_info): Update comment. Use fp_opts.print_frame_info
3542 to decide what to print.
3543 (backtrace_command_1): Handle the new print_frame_arguments_presence
3544 value.
3545 (_initialize_stack): Call add_setshow_enum_cmd for frame-info.
3546 * python/py-framefilter.c (py_print_args): Handle CLI_PRESENCE.
3547 (py_print_frame): In non-mi mode, use LOCATION as default for
3548 print_what, similarly to frame information printed directly by
3549 backtrace command. Handle frame-info user option in non MI mode.
3550
6bdfee81
KB
35512019-07-27 Kevin Buettner <kevinb@redhat.com>
3552
3553 * linux-thread-db.c (thread_db_target::thread_handle_to_thread_info):
3554 Add case for debugging 32-bit target on 64-bit host. Revise
3555 comment.
3556
98a617f8
KB
35572019-07-27 Kevin Buettner <kevinb@redhat.com>
3558
3559 * infrun.c (fill_in_stop_func): Use find_pc_partial_function
3560 instead of find_function_entry_range_from_pc.
3561
567238c9
KB
35622019-07-27 Kevin Buettner <kevinb@redhat.com>
3563
3564 * stack.c (find_frame_funname): Remove code which preferred
3565 minsym over symtab sym in "certain pathological cases".
3566
2dc80cf8
KB
3567 * valprint.h (build_address_symbolic): Add "prefer_sym_over_minsym"
3568 parameter. Change type of "do_demangle" to bool.
3569 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
3570 Pass suitable "prefer_sym_over_minsym" flag to
3571 build_address_symbolic(). Don't output "+" for negative offsets.
3572 * printcmd.c (print_address_symbolic): Update invocation of
3573 build_address_symbolic to include a "prefer_sym_over_minsym"
3574 flag.
3575 (build_address_symbolic): Add "prefer_sym_over_minsym" parameter.
3576 Restrict cases in which use of minimal symbol is preferred to that
3577 of a found symbol. Update comments.
3578
1aff7173
KB
3579 * dwarf2-frame.c (dwarf2_frame_cache): Don't decode FDE instructions
3580 for entry pc when entry pc is out of range for that FDE.
3581
89b085ac
BC
35822019-07-26 Brian Callahan <bcallah@openbsd.org>
3583
3584 PR gdb/24839:
3585 * gdb/obsd-nat.c (obsd_nat_target::pid_to_str): Fix typo in return
3586 type.
3587
f32feb4a
CB
35882019-07-25 Christian Biesinger <cbiesinger@google.com>
3589
3590 * python/py-objfile.c (add_separate_debug_file): Fix comment about
3591 this function's Python signature.
3592
3593
35942019-07-24 Christian Biesinger <cbiesinger@google.com>
442853af
CB
3595
3596 * compile/compile-object-load.c (compile_object_load): Pass GLOBAL_SCOPE.
3597 * solib-spu.c (spu_lookup_lib_symbol): Pass GLOBAL_SCOPE.
3598 * solib-svr4.c (elf_lookup_lib_symbol): Pass GLOBAL_SCOPE.
3599 * symtab.c (lookup_global_symbol_from_objfile): Add a scope parameter.
3600 * symtab.h (lookup_global_symbol_from_objfile): Likewise.
3601
3602
c54e4253
YS
36032019-07-24 Yoshinori Sato <ysato@users.sourceforge.jp>
3604
3605 * h8300-tdep.c (h8300_register_name_common): New.
3606 h8300_register_name): Use h8300_register_name_common.
3607 (h8300s_register_name): Likewise.
3608 (h8300sx_register_name): Likewise.
3609 (h8300h_register_nam): New.
3610 (h8300_gdbarch_init): Use h8300h_register_name in h8300h machine.
3611
3612
40eadf04
SP
36132019-07-23 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
3614
3615 * arm-tdep.c (arm_skip_cmse_entry): New function.
3616 (arm_is_sgstubs_section): New function.
3617 (arm_skip_stub): Add call to arm_skip_cmse_entry function.
3618
bfa2a36d
TT
36192019-07-22 Tom Tromey <tom@tromey.com>
3620
3621 * tui/tui-win.c (tui_win_info::make_invisible_and_set_new_height):
3622 Don't self-assign.
3623
a8e9d247
AB
36242019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
3625
3626 * c-typeprint.c (c_print_typedef): Pass -1 instead of 0 to
3627 type_print.
3628
eb86c5e2
AB
36292019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
3630
3631 * symtab.c (search_symbols): Adjust msymbol matching type arrays
3632 so that GDB doesn't match any msymbols when searching in the
3633 TYPES_DOMAIN.
3634 (print_symbol_info): Print using typedef_print or type_print based
3635 on the type of the symbol. Add updated FIXME comment moved from...
3636 (_initialize_symtab): ... move and update FIXME comment to above.
3637
a8eab7c6
AB
36382019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
3639
3640 * NEWS: Mention adding -q option to "info types".
3641 * symtab.c (struct info_types_options): New struct.
3642 (info_types_options_defs): New variable.
3643 (make_info_types_options_def_group): New function.
3644 (info_types_command): Use gdb::option framework to parse options.
3645 (info_types_command_completer): New function.
3646 (_initialize_symtab): Extend the help text on "info types" and
3647 register command completer.
3648
b4603c34
CB
36492019-07-21 Christian Biesinger <cbiesinger@google.com>
3650
3651 * symtab.c (lookup_symbol_in_objfile_symtabs): Change int to block_enum.
3652 (lookup_symbol_in_objfile): Change int to block_enum and add a
3653 gdb_assert to make sure block_index is GLOBAL_BLOCK or STATIC_BLOCK.
3654
c8cdc1e0
CB
36552019-07-20 Christian Biesinger <cbiesinger@google.com>
3656
3657 * MAINTAINERS (Write After Approval): Add self.
3658
01e175fe
AB
36592019-07-19 Andrew Burgess <andrew.burgess@embecosm.com>
3660
3661 * riscv-tdep.c (riscv_push_dummy_code): Write a 4-byte nop
3662 instruction to the dummy code region.
3663
56f79b63
TT
36642019-07-19 Tom Tromey <tromey@adacore.com>
3665
3666 * contrib/ari/gdb_ari.sh: Mention C++11, not ISO C 90.
3667 (ARGSUSED, PARAMS, __func__): Remove rules.
3668
4c5aa8e0
AH
36692019-07-19 Alan Hayward <alan.hayward@arm.com>
3670
3671 * arm-tdep.c (_initialize_arm_tdep): Remove xml tests.
3672 * features/arm/arm-with-iwmmxt.c: Remove.
3673 * features/arm/arm-with-iwmmxt.xml: Remove.
3674 * features/arm/arm-with-m-fpa-layout.c: Remove.
3675 * features/arm/arm-with-m-fpa-layout.xml: Remove.
3676 * features/arm/arm-with-m-vfp-d16.c: Remove.
3677 * features/arm/arm-with-m-vfp-d16.xml: Remove.
3678 * features/arm/arm-with-m.c: Remove.
3679 * features/arm/arm-with-m.xml: Remove.
3680 * features/arm/arm-with-neon.c: Remove.
3681 * features/arm/arm-with-neon.xml: Remove.
3682 * features/arm/arm-with-vfpv2.c: Remove.
3683 * features/arm/arm-with-vfpv2.xml: Remove.
3684 * features/arm/arm-with-vfpv3.c: Remove.
3685 * features/arm/arm-with-vfpv3.xml: Remove.
3686
f42b2617
AH
36872019-07-19 Alan Hayward <alan.hayward@arm.com>
3688
3689 * arm-tdep.c (_initialize_arm_tdep): Add xml regression tests.
3690
f29ec966
AH
36912019-07-19 Alan Hayward <alan.hayward@arm.com>
3692
3693 * arch/aarch32.c (aarch32_create_target_description): Create
3694 target descriptions using features.
3695 * arch/arm.c (arm_create_target_description)
3696 (arm_create_mprofile_target_description): Likewise.
3697 * arm-tdep.c (_initialize_arm_tdep): Remove tdesc init calls.
3698
d105cce5
AH
36992019-07-19 Alan Hayward <alan.hayward@arm.com>
3700
3701 * Makefile.in: Add new files.
3702 * aarch32-tdep.c: New file.
3703 * aarch32-tdep.h: New file.
3704 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
3705 Call aarch32_read_description.
3706 * arch/aarch32.c: New file.
3707 * arch/aarch32.h: New file.
3708 * arch/arm.c (arm_create_target_description)
3709 (arm_create_mprofile_target_description): New function.
3710 * arch/arm.h (arm_fp_type, arm_m_profile_type): New enum.
3711 (arm_create_target_description)
3712 (arm_create_mprofile_target_description): New declaration.
3713 * arm-fbsd-tdep.c (arm_fbsd_read_description_auxv): Call
3714 read_description functions.
3715 * arm-linux-nat.c (arm_linux_nat_target::read_description):
3716 Likewise.
3717 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
3718 * arm-tdep.c (tdesc_arm_list): New variable.
3719 (arm_register_g_packet_guesses): Call create description functions.
3720 (arm_read_description) (arm_read_mprofile_description): New
3721 function.
3722 * arm-tdep.h (arm_read_description)
3723 (arm_read_mprofile_description): Add declaration.
3724 * configure.tgt: Add new files.
3725
afe09f0b
GL
37262019-07-18 Guillaume LABARTHE <guillaume.labarthe@gmail.com>
3727
3728 * top.c (new_ui_command): Open specified terminal just once.
3729
cd215b2e
TT
37302019-07-18 Tom Tromey <tromey@adacore.com>
3731
3732 * symtab.c (main_name): Constify return type.
3733 * symfile.c (set_initial_language): Update.
3734 * symtab.h (main_name): Constify return type.
3735
d8f68fcb
TT
37362019-07-17 Tom Tromey <tom@tromey.com>
3737
3738 * tui/tui-winsource.c (tui_update_source_window)
3739 (tui_update_source_window_as_is)
3740 (tui_update_source_windows_with_line): Remove return.
3741 * tui/tui-disasm.c (tui_show_disassem)
3742 (tui_show_disassem_and_update_source): Remove return.
3743 * tui/tui.c (tui_reset): Remove return.
3744 * tui/tui-wingeneral.c
3745 (tui_check_and_display_highlight_if_needed): Remove return.
3746
ca5af91e
TT
37472019-07-17 Tom Tromey <tom@tromey.com>
3748
3749 * tui/tui-win.c (parse_scrolling_args): Throw separate errors.
3750
5104fe36
TT
37512019-07-17 Tom Tromey <tom@tromey.com>
3752
3753 * tui/tui-winsource.h (struct tui_exec_info_window)
3754 (struct tui_source_window_base): Move from tui-data.h.
3755 * tui/tui-winsource.c: Move many method definitions from
3756 elsewhere. Remove "structuring" comments.
3757 * tui/tui-wingeneral.c (tui_source_window_base::make_visible)
3758 (tui_source_window_base::refresh_window): Move to
3759 tui-winsource.c.
3760 * tui/tui-win.c (tui_source_window_base::refresh_all)
3761 (tui_source_window_base::update_tab_width)
3762 (tui_source_window_base::set_new_height)
3763 (tui_source_window_base::do_make_visible_with_new_height): Move to
3764 tui-winsource.c.
3765 * tui/tui-source.h: Update.
3766 * tui/tui-source.c (tui_source_window_base::reset): Move to
3767 tui-winsource.c.
3768 * tui/tui-disasm.h: Update.
3769 * tui/tui-data.h (struct tui_exec_info_window): Move to
3770 tui-winsource.h.
3771 (struct tui_source_window_base): Likewise.
3772 * tui/tui-data.c (tui_source_window_base::clear_detail)
3773 (tui_source_window_base, ~tui_source_window_base): Move to
3774 tui-winsource.c.
3775
daa15dde
TT
37762019-07-17 Tom Tromey <tom@tromey.com>
3777
3778 * tui/tui-win.c (tui_resize_all)
3779 (tui_source_window_base::update_tab_width)
3780 (tui_adjust_win_heights): Update.
3781 (tui_win_info::make_invisible_and_set_new_height): Rename from
3782 make_invisible_and_set_new_height.
3783 * tui/tui-data.h (struct tui_win_info)
3784 <make_invisible_and_set_new_height>: New method.
3785
bfad4537
TT
37862019-07-17 Tom Tromey <tom@tromey.com>
3787
3788 * tui/tui.c: Update.
3789 * tui/tui-source.h (struct tui_source_window): Move from
3790 tui-data.h.
3791 * tui/tui-layout.c: Update.
3792 * tui/tui-disasm.c: Update.
3793 * tui/tui-data.h (struct tui_source_window): Move to
3794 tui-source.h.
3795
88f7e873
TT
37962019-07-17 Tom Tromey <tom@tromey.com>
3797
3798 * tui/tui-disasm.h (struct tui_disasm_window): Move from
3799 tui-data.h.
3800 * tui/tui-data.h (struct tui_disasm_window): Move to
3801 tui-disasm.h.
3802
96bd6233
TT
38032019-07-17 Tom Tromey <tom@tromey.com>
3804
3805 * tui/tui-regs.h (struct tui_data_item_window): Move from
3806 tui-data.h.
3807 * tui/tui-regs.c (tui_data_item_window): Move from tui-data.c.
3808 * tui/tui-data.h (struct tui_data_item_window): Move to
3809 tui-regs.h.
3810 * tui/tui-data.c (~tui_data_item_window): Move to tui-regs.c.
3811
ce38393b
TT
38122019-07-17 Tom Tromey <tom@tromey.com>
3813
3814 * tui/tui.c: Update.
3815 * tui/tui-win.c (tui_cmd_window::do_make_visible_with_new_height)
3816 (tui_cmd_window::max_height): Move to tui-command.c.
3817 * tui/tui-layout.c: Update.
3818 * tui/tui-data.h (struct tui_cmd_window): Move to tui-command.h.
3819 * tui/tui-data.c (tui_cmd_window::clear_detail): Move to
3820 tui-command.c.
3821 * tui/tui-command.h (struct tui_cmd_window): Move from
3822 tui-data.h.
3823 * tui/tui-command.c: Remove "structuring" comments.
3824 (tui_cmd_window::clear_detail)
3825 (tui_cmd_window::do_make_visible_with_new_height)
3826 (tui_cmd_window::max_height): Move from elsewhere.
3827
2d8b51cb
TT
38282019-07-17 Tom Tromey <tom@tromey.com>
3829
3830 * tui/tui-io.c (tui_dispatch_ctrl_char): Move from tui-command.c.
3831 Now static.
3832 * tui/tui-command.h (tui_dispatch_ctrl_char): Don't declare.
3833 * tui/tui-command.c (tui_dispatch_ctrl_char): Move to tui-io.c.
3834
18ab23af
TT
38352019-07-17 Tom Tromey <tom@tromey.com>
3836
3837 * tui/tui.c: Update.
3838 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Move to
3839 tui-regs.c.
3840 * tui/tui-windata.h: Remove file.
3841 * tui/tui-windata.c: Remove file.
3842 * tui/tui-win.c (tui_data_window::set_new_height)
3843 (tui_data_window::do_make_visible_with_new_height): Move to
3844 tui-regs.c.
3845 * tui/tui-regs.h (struct tui_data_window): Move from tui-data.h.
3846 * tui/tui-regs.c: Remove "structuring" comments.
3847 (tui_data_window::first_data_item_displayed)
3848 (tui_data_window::delete_data_content_windows)
3849 (tui_data_window::erase_data_content)
3850 (tui_data_window::display_all_data)
3851 (tui_data_window::refresh_all)
3852 (tui_data_window::do_scroll_vertical)
3853 (tui_data_window::clear_detail, tui_data_window::set_new_height)
3854 (tui_data_window::do_make_visible_with_new_height)
3855 (tui_data_window::refresh_window): Move from elsewhere.
3856 (_initialize_tui_regs): Move to end of file.
3857 * tui/tui-layout.c: Update.
3858 * tui/tui-hooks.c: Update.
3859 * tui/tui-data.h (struct tui_data_window): Move to tui-regs.h.
3860 * tui/tui-data.c (tui_data_window::clear_detail): Move to
3861 tui-regs.c.
3862 * Makefile.in (SUBDIR_TUI_SRCS): Remove tui-windata.c.
3863
88b7e7cc
TT
38642019-07-17 Tom Tromey <tom@tromey.com>
3865
3866 * tui/tui-io.c (tui_puts_internal): Call wrefresh if newline is
3867 seen.
3868
0fcd3711
TT
38692019-07-17 Tom Tromey <tom@tromey.com>
3870
3871 * tui/tui-win.c (tui_source_window_base::set_new_height)
3872 (tui_source_window_base::do_make_visible_with_new_height): Use
3873 m_has_locator field directly.
3874 * tui/tui-data.h (struct tui_win_info) <has_locator>: Remove
3875 method.
3876 (struct tui_source_window_base) <has_locator>: Likewise.
3877
4a38112d
TT
38782019-07-17 Tom Tromey <tom@tromey.com>
3879
3880 * tui/tui-wingeneral.h (tui_make_visible, tui_make_invisible):
3881 Don't declare.
3882 * tui/tui-wingeneral.c (tui_make_visible, tui_make_invisible):
3883 Remove.
3884 * tui/tui-win.c (tui_source_window_base::set_new_height)
3885 (tui_source_window_base::set_new_height)
3886 (make_invisible_and_set_new_height)
3887 (tui_source_window_base::do_make_visible_with_new_height)
3888 (tui_source_window_base::do_make_visible_with_new_height):
3889 Update.
3890 * tui/tui-layout.c (show_source_disasm_command, show_data)
3891 (show_source_or_disasm_and_command): Update.
3892 * tui/tui-layout.c (show_layout): Update.
3893
09129226
TT
38942019-07-17 Tom Tromey <tom@tromey.com>
3895
3896 * tui/tui-layout.c (make_data_window): Remove.
3897 (show_data): Unify creation and re-initialization cases.
3898
4a8a5e84
TT
38992019-07-17 Tom Tromey <tom@tromey.com>
3900
3901 * tui/tui-layout.c (make_source_window, make_disasm_window):
3902 Remove.
3903 (show_data): Unify creation and re-initialization cases.
3904
76d2be8e
TT
39052019-07-17 Tom Tromey <tom@tromey.com>
3906
3907 * tui/tui-layout.c (make_command_window): Remove.
3908 (show_source_disasm_command, show_source_or_disasm_and_command):
3909 Unify creation and re-initialization cases.
3910
890b8bde
TT
39112019-07-17 Tom Tromey <tom@tromey.com>
3912
3913 * tui/tui-layout.c (show_source_or_disasm_and_command): Unify
3914 creation and re-initialization cases.
3915
2cdfa113
TT
39162019-07-17 Tom Tromey <tom@tromey.com>
3917
3918 * tui/tui-regs.c (tui_get_register): Return void.
3919
8e3cfd09
TT
39202019-07-17 Tom Tromey <tom@tromey.com>
3921
3922 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible):
3923 Simplify.
3924
f4e04977
TT
39252019-07-17 Tom Tromey <tom@tromey.com>
3926
3927 * tui/tui-layout.c (show_source_disasm_command): Simplify window
3928 resetting.
3929
0379b883
TT
39302019-07-17 Tom Tromey <tom@tromey.com>
3931
3932 * tui/tui.h (tui_set_layout_by_name): Don't declare.
3933 * tui/tui-regs.c (tui_reg_layout): New function.
3934 (tui_show_registers, tui_reg_command): Use it.
3935 * tui/tui-layout.c (LAYOUT_USAGE): Remove.
3936 (tui_layout_command): Rename from tui_set_layout_by_name. Change
3937 parameters.
3938 (tui_layout_command): Remove.
3939
b7fbad91
TT
39402019-07-17 Tom Tromey <tom@tromey.com>
3941
3942 * tui/tui-layout.h (tui/tui-layout): Return void.
3943 * tui/tui-layout.c (tui_set_layout): Return void. Add assert.
3944
4e1e56b9
TT
39452019-07-17 Tom Tromey <tom@tromey.com>
3946
3947 * tui/tui-layout.c (show_source_disasm_command, show_data):
3948 Update.
3949 (reset_locator): Remove.
3950 (show_source_or_disasm_and_command): Update.
3951
1e0c09ba
TT
39522019-07-17 Tom Tromey <tom@tromey.com>
3953
3954 * tui/tui-source.c (tui_source_window_base::reset): Remove
3955 win_type parameter.
3956 * tui/tui-layout.c (make_command_window, make_source_window)
3957 (make_disasm_window, make_data_window)
3958 (show_source_disasm_command, show_data, tui_gen_win_info::reset)
3959 (reset_locator, show_source_or_disasm_and_command): Update.
3960 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Remove
3961 win_type parameter.
3962 (struct tui_source_window_base) <reset>: Likewise.
3963
1bf605de
TT
39642019-07-17 Tom Tromey <tom@tromey.com>
3965
3966 * tui/tui-layout.c (show_source_disasm_command): Use
3967 reset_locator.
3968 (reset_locator): New function.
3969 (init_and_make_win): Remove.
3970 (show_source_or_disasm_and_command): Use reset_locator.
3971
098f9ed4
TT
39722019-07-17 Tom Tromey <tom@tromey.com>
3973
3974 * tui/tui-winsource.c (tui_set_exec_info_content): Remove
3975 condition.
3976 * tui/tui-wingeneral.c (tui_source_window_base::make_visible):
3977 Remove condition.
3978 * tui/tui-source.c (tui_source_window_base::reset): New method.
3979 * tui/tui-layout.c (make_command_window): Don't call
3980 init_and_make_win.
3981 (make_source_window, make_disasm_window): Don't call
3982 make_source_or_disasm_window.
3983 (make_data_window): Don't call init_and_make_win. Change calling
3984 convention.
3985 (show_source_disasm_command, show_data): Simplify.
3986 (make_source_or_disasm_window): Remove.
3987 (show_source_or_disasm_and_command): Simplify.
3988 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Now virtual.
3989 (struct tui_source_window_base) <reset>: Likewise.
3990 <execution_info>: Remove initializer.
3991 * tui/tui-data.c (tui_source_window_base): Initialize
3992 execution_info.
3993
80110957
TT
39942019-07-17 Tom Tromey <tom@tromey.com>
3995
3996 * tui/tui-layout.c (tui_set_layout): Remove regs_populate
3997 variable.
3998
cf82af05
TT
39992019-07-17 Tom Tromey <tom@tromey.com>
4000
4001 * tui/tui.c (tui_rl_other_window): Update.
4002 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Call
4003 superclass method first. Always iterate over regs_content.
4004 (tui_unhighlight_win, tui_highlight_win): Use refresh_window
4005 method.
4006 * tui/tui-win.c (tui_set_focus_command): Update.
4007
01aeb396
TT
40082019-07-17 Tom Tromey <tom@tromey.com>
4009
4010 * tui/tui-win.c (tui_set_focus_command): Rename from
4011 tui_set_focus. Call tui_enable.
4012 (tui_set_focus_command): Remove.
4013
fd6c75ee
TT
40142019-07-17 Tom Tromey <tom@tromey.com>
4015
4016 * tui/tui-winsource.c (tui_show_exec_info_content): Don't call
4017 refresh_window.
4018 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Call
4019 touchwin.
4020 (tui_data_window::refresh_window): Call refresh_window on data
4021 items. Always call superclass refresh_window.
4022 (tui_win_info::refresh): Remove.
4023 (tui_source_window_base::refresh_window): Update.
4024 (tui_refresh_all): Update.
4025 * tui/tui-layout.c (show_source_disasm_command): Remove call to
4026 refresh_window.
4027 (show_source_or_disasm_and_command): Likewise.
4028 * tui/tui-data.h (struct tui_win_info) <refresh>: Remove.
4029 (struct tui_source_window_base) <refresh>: Likewise.
4030
f6cc34a9
TT
40312019-07-17 Tom Tromey <tom@tromey.com>
4032
4033 * tui/tui-winsource.c (tui_clear_source_content)
4034 (tui_show_source_content): Update.
4035 * tui/tui-source.c (tui_source_window::showing_source_p): Check
4036 whether content is empty.
4037 * tui/tui-data.h (struct tui_source_window_base) <content_in_use>:
4038 Remove.
4039
f31ec9af
TT
40402019-07-17 Tom Tromey <tom@tromey.com>
4041
4042 * tui/tui-winsource.c (tui_erase_source_content): Clear the
4043 window's contents.
4044 * tui/tui-source.h (tui_set_source_content_nil): Don't declare.
4045 * tui/tui-source.c (tui_set_source_content_nil): Remove.
4046
d1b6f1e5
TT
40472019-07-17 Tom Tromey <tom@tromey.com>
4048
4049 * tui/tui-data.h (UNDEFINED_ITEM): Remove define.
4050 (struct tui_data_item_window): Update.
4051
d9743a13
TT
40522019-07-17 Tom Tromey <tom@tromey.com>
4053
4054 * tui/tui-data.h (MAX_CONTENT_COUNT, TUI_NULL_STR)
4055 (DEFAULT_HISTORY_COUNT, WITH_LOCATOR, NO_LOCATOR): Remove
4056 defines.
4057
caf0bc4e
TT
40582019-07-17 Tom Tromey <tom@tromey.com>
4059
4060 * tui/tui-winsource.h (tui_erase_source_content)
4061 (tui_clear_source_content): Remove "display_prompt" parameter.
4062 * tui/tui-winsource.c (tui_update_source_window_as_is)
4063 (tui_update_source_windows_with_addr): Update.
4064 (tui_clear_source_content): Remove "display_prompt" parameter.
4065 (tui_erase_source_content): Likewise. Simplify.
4066 (tui_show_source_content): Update.
4067 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
4068 * tui/tui-stack.c (tui_show_frame_info): Update.
4069 * tui/tui-data.h (EMPTY_SOURCE_PROMPT, NO_EMPTY_SOURCE_PROMPT):
4070 Remove defines.
4071
9d391078
TT
40722019-07-17 Tom Tromey <tom@tromey.com>
4073
4074 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
4075 * tui/tui-disasm.h (tui_set_disassem_content): Add win_info
4076 parameter.
4077 * tui/tui-disasm.c (tui_set_disassem_content): Add win_info
4078 parameter.
4079
a38da35d
TT
40802019-07-17 Tom Tromey <tom@tromey.com>
4081
4082 * tui/tui-winsource.c (tui_clear_source_content)
4083 (tui_show_source_content, tui_show_exec_info_content)
4084 (tui_clear_exec_info_content): Update.
4085 * tui/tui-stack.c (tui_show_locator_content): Update.
4086 (tui_show_frame_info): Update.
4087 * tui/tui-source.h (tui_source_window): Don't declare.
4088 * tui/tui-source.c (tui_source_window::showing_source_p): Rename
4089 from tui_source_is_displayed.
4090 * tui/tui-data.h (struct tui_gen_win_info) <content_in_use>:
4091 Remove field.
4092 (struct tui_source_window_base) <content_in_use>: New field. Now
4093 bool.
4094 (struct tui_source_window) <showing_source_p>: New method.
4095 (TUI_SRC_WIN): Change cast.
4096 * tui/tui-data.c (tui_initialize_static_data): Update.
4097
c2cd8994
TT
40982019-07-17 Tom Tromey <tom@tromey.com>
4099
4100 * tui/tui-winsource.c (tui_update_breakpoint_info): Use
4101 location_matches_p.
4102 * tui/tui-source.c (tui_source_window::location_matches_p): New
4103 method.
4104 * tui/tui-disasm.c (tui_disasm_window::location_matches_p): New
4105 method.
4106 * tui/tui-data.h (struct tui_source_window_base)
4107 <location_matches_p>: New method.
4108 (struct tui_source_window, struct tui_disasm_window)
4109 <location_matches_p>: Likewise.
4110
4dde7b34
TT
41112019-07-17 Tom Tromey <tom@tromey.com>
4112
4113 * tui/tui-win.c (tui_set_win_height_command): Rename from
4114 tui_set_win_height.
4115 (tui_set_win_height_command): Remove.
4116
b73dd877
TT
41172019-07-17 Tom Tromey <tom@tromey.com>
4118
4119 * tui/tui-source.c (tui_source_window): New constructor. Add
4120 observer.
4121 (~tui_source_window): New destructor.
4122 (tui_source_window::style_changed): New method.
4123 * tui/tui-hooks.c (tui_redisplay_source): Remove.
4124 (tui_attach_detach_observers): Update.
4125 * tui/tui-data.h (struct tui_source_window): Make constructor not
4126 inline. Add destructor.
4127 (struct tui_source_window) <style_changed>: New method.
4128 <m_observable>: New member.
4129
ae2b5380
TT
41302019-07-17 Tom Tromey <tom@tromey.com>
4131
4132 * tui/tui-data.c (tui_clear_source_windows_detail): Fix typo.
4133 * tui/tui-win.c (tui_resize_all): Fix typo.
4134
1ce3e844
TT
41352019-07-17 Tom Tromey <tom@tromey.com>
4136
4137 * tui/tui-wingeneral.h (tui_refresh_all): Update.
4138 * tui/tui-wingeneral.c (make_all_visible): Use foreach.
4139 (tui_refresh_all): Remove "list" parameter. Use foreach.
4140 * tui/tui-win.c (window_name_completer): Use foreach.
4141 (tui_refresh_all_win, tui_rehighlight_all, tui_all_windows_info)
4142 (update_tab_width): Likewise.
4143 * tui/tui-layout.c (show_layout): Update.
4144 * tui/tui-data.h (class tui_window_iterator): New.
4145 (struct all_tui_windows): New.
4146 * tui/tui-data.c (tui_partial_win_by_name): Use foreach.
4147
fe3eaf1c
TT
41482019-07-17 Tom Tromey <tom@tromey.com>
4149
4150 * tui/tui-regs.c (tui_reg_next, tui_reg_prev): Add "current_group"
4151 parameter. Don't reference globals.
4152 (tui_reg_command): Update.
4153
368c1354
TT
41542019-07-17 Tom Tromey <tom@tromey.com>
4155
4156 * tui/tui-regs.c (tui_show_registers): Simplify.
4157
e80cd204
TT
41582019-07-17 Tom Tromey <tom@tromey.com>
4159
4160 * tui/tui-regs.c (tui_show_registers): Update.
4161 (tui_show_register_group): Add win_info parameter.
4162
aca2dd16
TT
41632019-07-17 Tom Tromey <tom@tromey.com>
4164
4165 * tui/tui-regs.c (tui_data_window::display_reg_element_at_line):
4166 Rename from tui_display_reg_element_at_line.
4167 (tui_data_window::display_registers_from_line): Update.
4168 * tui/tui-data.h (struct tui_data_window)
4169 <display_reg_element_at_line>: New method.
4170
517e9505
TT
41712019-07-17 Tom Tromey <tom@tromey.com>
4172
4173 * tui/tui-regs.h (tui_display_registers_from)
4174 (tui_display_registers_from_line): Don't declare.
4175 * tui/tui-windata.c (tui_data_window::display_all_data)
4176 (tui_data_window::refresh_all)
4177 (tui_data_window::do_scroll_vertical): Update.
4178 * tui/tui-regs.c (tui_data_window::display_registers_from): Rename
4179 from tui_display_registers_from.
4180 (tui_display_reg_element_at_line): Update.
4181 (tui_data_window::display_registers_from_line): Rename from
4182 tui_display_registers_from_line.
4183 * tui/tui-data.h (struct tui_data_window) <display_registers_from,
4184 display_registers_from_line>: New methods.
4185
f76d8b19
TT
41862019-07-17 Tom Tromey <tom@tromey.com>
4187
4188 * tui/tui-windata.h (tui_erase_data_content): Don't declare.
4189 * tui/tui-windata.c (tui_data_window::erase_data_content): Rename
4190 from tui_erase_data_content.
4191 (tui_data_window::display_all_data)
4192 (tui_data_window::refresh_all)
4193 (tui_data_window::do_scroll_vertical): Update.
4194 * tui/tui-regs.c (tui_show_registers): Update.
4195 * tui/tui-data.h (struct tui_data_window) <erase_data_content>:
4196 New method.
4197
b4094625
TT
41982019-07-17 Tom Tromey <tom@tromey.com>
4199
4200 * tui/tui-windata.h (tui_delete_data_content_windows): Don't
4201 declare.
4202 * tui/tui-windata.c
4203 (tui_data_window::delete_data_content_windows): Rename from
4204 tui_delete_data_content_windows.
4205 (tui_data_window::display_all_data)
4206 (tui_data_window::do_scroll_vertical): Update.
4207 * tui/tui-data.h (struct tui_data_window)
4208 <delete_data_content_windows>: New method.
4209
c223a729
TT
42102019-07-17 Tom Tromey <tom@tromey.com>
4211
4212 * tui/tui-windata.h (tui_refresh_data_win): Don't declare.
4213 * tui/tui-regs.h (tui_first_reg_element_inline): Don't declare.
4214
50daf268
TT
42152019-07-17 Tom Tromey <tom@tromey.com>
4216
4217 * tui/tui-windata.h (tui_display_all_data): Don't declare.
4218 * tui/tui-windata.c (tui_data_window::display_all_data): Rename
4219 from tui_display_all_data.
4220 * tui/tui-win.c
4221 (tui_data_window::do_make_visible_with_new_height): Update.
4222 * tui/tui-regs.c (tui_show_registers): Update.
4223 * tui/tui-layout.c (tui_set_layout): Update.
4224 * tui/tui-data.h (struct tui_data_window) <display_all_data>: New
4225 method.
4226
df5f8cab
TT
42272019-07-17 Tom Tromey <tom@tromey.com>
4228
4229 * tui/tui-windata.h (tui_display_data_from): Don't declare.
4230 * tui/tui-windata.c (tui_display_data_from): Remove.
4231 (tui_data_window::refresh_all): Update.
4232
80cb6c27
TT
42332019-07-17 Tom Tromey <tom@tromey.com>
4234
4235 * tui/tui-windata.h (tui_display_data_from_line): Don't declare.
4236 * tui/tui-windata.c (tui_display_data_from_line): Remove.
4237 (tui_display_data_from, tui_data_window::do_scroll_vertical): Call
4238 tui_display_registers_from_line.
4239 * tui/tui-regs.h (tui_display_registers_from_line): Update.
4240 * tui/tui-regs.c (tui_display_registers_from_line): Remove
4241 "force_display" parameter.
4242
baff0c28
TT
42432019-07-17 Tom Tromey <tom@tromey.com>
4244
4245 * tui/tui-regs.h (tui_first_reg_element_no_inline): Don't
4246 declare.
4247 * tui/tui-regs.c (tui_data_window::first_reg_element_no_inline):
4248 Rename from tui_first_reg_element_no_inline.
4249 (tui_display_reg_element_at_line)
4250 (tui_display_registers_from_line): Update.
4251 * tui/tui-data.h (struct tui_data_window)
4252 <first_reg_element_no_inline>: New method.
4253
3b23c5f2
TT
42542019-07-17 Tom Tromey <tom@tromey.com>
4255
4256 * tui/tui-windata.c (tui_display_data_from)
4257 (tui_data_window::do_scroll_vertical): Update.
4258 * tui/tui-regs.h (tui_line_from_reg_element_no): Don't declare.
4259 * tui/tui-regs.c (tui_data_window::line_from_reg_element_no):
4260 Rename from tui_line_from_reg_element_no.
4261 (tui_display_registers_from_line): Update.
4262 * tui/tui-data.h (struct tui_data_window)
4263 <line_from_reg_element_no>: New method.
4264
0b5ec218
TT
42652019-07-17 Tom Tromey <tom@tromey.com>
4266
4267 * tui/tui-regs.h (tui_last_regs_line_no): Don't declare.
4268 * tui/tui-regs.c (tui_data_window::last_regs_line_no): Rename from
4269 tui_last_regs_line_no.
4270 (tui_display_reg_element_at_line)
4271 (tui_display_registers_from_line): Update.
4272 * tui/tui-data.h (struct tui_data_window) <last_regs_line_no>: New
4273 method.
4274
0807ab7b
TT
42752019-07-17 Tom Tromey <tom@tromey.com>
4276
4277 PR tui/24722:
4278 * tui/tui-winsource.h (tui_update_all_breakpoint_info)
4279 (tui_update_breakpoint_info): Add "being_deleted" parameter.
4280 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
4281 (tui_update_all_breakpoint_info): Add "being_deleted" parameter.
4282 (tui_update_breakpoint_info): Likewise.
4283 * tui/tui-hooks.c (tui_event_create_breakpoint)
4284 (tui_event_delete_breakpoint, tui_event_modify_breakpoint):
4285 Update.
4286
9ad7fdef
TT
42872019-07-17 Tom Tromey <tom@tromey.com>
4288
4289 * tui/tui-stack.c (tui_show_frame_info): Consolidate "if"s.
4290
5813316f
TT
42912019-07-17 Tom Tromey <tom@tromey.com>
4292
4293 * tui/tui-winsource.c (tui_update_source_window_as_is)
4294 (tui_update_source_windows_with_addr): Update.
4295 * tui/tui-source.h (tui_set_source_content)
4296 (tui_show_symtab_source): Add "win_info" parameter.
4297 * tui/tui-source.c (tui_set_source_content): Add "win_info"
4298 parameter.
4299 (tui_show_symtab_source): Likewise.
4300
00e264e7
TT
43012019-07-17 Tom Tromey <tom@tromey.com>
4302
4303 * tui/tui-wingeneral.c
4304 (tui_check_and_display_highlight_if_needed): Check can_highlight.
4305
06210ce4
TT
43062019-07-17 Tom Tromey <tom@tromey.com>
4307
4308 * tui/tui-data.h (struct tui_win_info) <can_scroll>: New method.
4309 (struct tui_cmd_window) <can_scroll>: New method.
4310 * tui/tui-command.c (tui_dispatch_ctrl_char): Use can_scroll
4311 method.
4312
381befee
TT
43132019-07-17 Tom Tromey <tromey@adacore.com>
4314
4315 * ui-out.h (class ui_out) <field_signed, field_fmt_signed,
4316 do_field_signed>: Rename. Change type of "value".
4317 * ui-out.c (ui_out::field_signed): Rename from field_int.
4318 Change type of "value".
4319 (ui_out::field_fmt_signed): Rename from field_fmt_int. Change
4320 type of "value".
4321 * tui/tui-out.h (class tui_ui_out) <do_field_signed>: Rename from
4322 do_field_int. Change type of "value".
4323 * tui/tui-out.c (tui_ui_out::do_field_signed): Rename from
4324 do_field_int. Change type of "value".
4325 * tracepoint.c (trace_status_mi, tfind_1)
4326 (print_one_static_tracepoint_marker): Update.
4327 * thread.c (print_thread_info_1, print_selected_thread_frame):
4328 Update.
4329 * stack.c (print_frame, print_frame_info): Update.
4330 * spu-tdep.c (info_spu_signal_command, info_spu_dma_cmdlist):
4331 Update.
4332 * source.c (print_source_lines_base): Update.
4333 * skip.c (info_skip_command): Update.
4334 * record-btrace.c (btrace_ui_out_decode_error)
4335 (btrace_call_history_src_line): Update.
4336 * python/py-framefilter.c (py_print_single_arg, py_print_frame):
4337 Update.
4338 * progspace.c (print_program_space): Update.
4339 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Update.
4340 * mi/mi-out.h (class mi_ui_out) <do_field_signed>: Rename from
4341 do_field_int. Change type of "value".
4342 * mi/mi-out.c (mi_ui_out::do_table_begin)
4343 (mi_ui_out::do_table_header): Update.
4344 (mi_ui_out::do_field_signed): Rename from do_field_int. Change
4345 type of "value".
4346 * mi/mi-main.c (mi_cmd_thread_list_ids, print_one_inferior)
4347 (mi_cmd_data_list_changed_registers, output_register)
4348 (mi_cmd_data_read_memory, mi_load_progress)
4349 (mi_cmd_trace_frame_collected): Update.
4350 * mi/mi-interp.c (mi_on_normal_stop_1, mi_output_solib_attribs):
4351 Update.
4352 * mi/mi-cmd-var.c (print_varobj, mi_cmd_var_create)
4353 (mi_cmd_var_delete, mi_cmd_var_info_num_children)
4354 (mi_cmd_var_list_children, varobj_update_one): Update.
4355 * mi/mi-cmd-stack.c (mi_cmd_stack_info_depth)
4356 (mi_cmd_stack_list_args, list_arg_or_local): Update.
4357 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Update.
4358 * inferior.c (print_inferior): Update.
4359 * gdb_bfd.c (print_one_bfd): Update.
4360 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
4361 Update.
4362 * darwin-nat-info.c (darwin_debug_regions_recurse): Update.
4363 * cli-out.h (class cli_ui_out) <do_field_signed>: Rename from
4364 do_field_int. Change type of "value".
4365 * cli-out.c (cli_ui_out::do_field_signed): Rename from
4366 do_field_int. Change type of "value".
4367 * breakpoint.c (watchpoint_check, print_breakpoint_location)
4368 (print_one_breakpoint_location, print_it_catch_fork)
4369 (print_one_catch_fork, print_it_catch_vfork)
4370 (print_one_catch_vfork, print_it_catch_solib)
4371 (print_it_catch_exec, print_it_ranged_breakpoint)
4372 (print_mention_watchpoint, print_mention_masked_watchpoint)
4373 (bkpt_print_it, update_static_tracepoint): Update.
4374 * break-catch-throw.c (print_it_exception_catchpoint): Update.
4375 * break-catch-syscall.c (print_it_catch_syscall): Update.
4376 * ada-tasks.c (print_ada_task_info): Update.
4377 * ada-lang.c (print_it_exception, print_mention_exception):
4378 Update.
4379
6b78c3f8
AB
43802019-07-17 Andrew Burgess <andrew.burgess@embecosm.com>
4381
4382 PR breakpoints/24541
4383 * gdbarch.c: Regenerate.
4384 * gdbarch.h: Regenerate.
4385 * gdbarch.sh: Adjust return type and parameter types for
4386 'stap_adjust_register'.
4387 (i386_stap_adjust_register): Adjust signature and return new
4388 register name.
4389 * stap-probe.c (stap_parse_register_operand): Adjust use of
4390 'gdbarch_stap_adjust_register'.
4391
d72a9b85
TT
43922019-07-17 Tom Tromey <tromey@adacore.com>
4393
4394 * s390-linux-nat.c (s390_watch_area): Remove typedef. Don't
4395 declare VEC.
4396 (struct s390_debug_reg_state) <watch_areas, break_areas>: Now
4397 std::vector.
4398 (struct s390_process_info): Add initializers.
4399 (s390_add_process): Use new.
4400 (s390_linux_nat_target::low_forget_process): Use delete.
4401 (s390_linux_nat_target::low_new_fork)
4402 (s390_linux_nat_target::stopped_by_watchpoint)
4403 (s390_linux_nat_target::low_prepare_to_resume)
4404 (s390_linux_nat_target::insert_watchpoint)
4405 (s390_linux_nat_target::insert_hw_breakpoint)
4406 (s390_linux_nat_target::remove_watchpoint)
4407 (s390_linux_nat_target::remove_hw_breakpoint): Update.
4408
206e6c58
JB
44092019-07-16 John Baldwin <jhb@FreeBSD.org>
4410
4411 * aarch64-fbsd-nat.c: Include regcache.h.
4412 (getregs_supplies, getfpregs_supplies): Remove unused gdbarch
4413 argument.
4414 (aarch64_fbsd_nat_target::fetch_registers)
4415 (aarch64_fbsd_nat_target::store_registers): Remove gdbarch
4416 variable.
4417 * arm-fbsd-nat.c, riscv-fbsd-nat.c: Likewise.
4418
cbde90f2
JB
44192019-07-16 John Baldwin <jhb@FreeBSD.org>
4420
4421 * fbsd-nat.c: Include gdbarch.h.
4422
07128006
TT
44232019-07-15 Tom Tromey <tromey@adacore.com>
4424
4425 * mi/mi-out.c (mi_ui_out::do_field_int): Use plongest.
4426
1f77b012
TT
44272019-07-15 Tom Tromey <tromey@adacore.com>
4428
4429 * mi/mi-out.h (class mi_ui_out) <do_field_unsigned>: Declare.
4430 * mi/mi-out.c (mi_ui_out::do_field_unsigned): New method.
4431 * cli-out.h (class cli_ui_out) <do_field_unsigned>: Declare.
4432 * cli-out.c (cli_ui_out::do_field_int): New method.
4433 * ui-out.c (ui_out::field_unsigned): New method.
4434 * symfile.c (generic_load): Use field_unsigned.
4435 (print_transfer_performance): Likewise.
4436 * record-btrace.c (ui_out_field_uint): Remove.
4437 (btrace_call_history_insn_range, btrace_call_history): Use
4438 field_unsigned.
4439 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn): Use
4440 field_unsigned.
4441 * ui-out.h (class ui_out) <field_unsigned>: New method.
4442 <do_field_unsigned>: Likewise.
4443
33eca680
TT
44442019-07-15 Tom Tromey <tromey@adacore.com>
4445
4446 * mi/mi-main.c (list_available_thread_groups): Use field_string.
4447 * mi/mi-interp.c (mi_memory_changed): Use field_string.
4448 * target.c (flash_erase_command): Use field_string.
4449 * infrun.c (print_signal_received_reason): Use field_string.
4450 * i386-tdep.c (i386_mpx_print_bounds): Use field_string.
4451 * breakpoint.c (maybe_print_thread_hit_breakpoint): Use
4452 field_string.
4453 * ada-tasks.c (print_ada_task_info): Use field_string.
4454
ca8d69be
TT
44552019-07-15 Tom Tromey <tromey@adacore.com>
4456
4457 * target.c (flash_erase_command): Use field_core_addr.
4458 * symfile.c (generic_load): Use field_core_addr.
4459 * sparc64-linux-tdep.c (sparc64_linux_handle_segmentation_fault):
4460 Use field_core_addr.
4461 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): Use
4462 field_core_addr.
4463
0d4e84ed
AB
44642019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
4465
4466 * dwarf2loc.c (dwarf2_evaluate_property): Sign extend property
4467 value if its desired type is smaller than a CORE_ADDR and signed.
4468
9a49df9d
AB
44692019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
4470
4471 * dwarf2loc.c (dwarf2_evaluate_property): Update to take account
4472 of changes to field names, and use new is_reference field to
4473 decide if a property is a reference or not.
4474 * dwarf2loc.h (struct dwarf2_locexpr_baton): Add 'is_reference'
4475 field.
4476 (struct dwarf2_property_baton): Update header comment, rename
4477 'referenced_type' to 'property_type' and update comments.
4478 * dwarf2read.c (attr_to_dynamic_prop): Add extra parameter to hold
4479 default property type, store in property baton, update to take
4480 accound of renamed field.
4481 (read_func_scope): Update call to attr_to_dynamic_prop.
4482 (read_array_type): Likewise.
4483 (dwarf2_per_cu_addr_sized_int_type): New function.
4484 (read_subrange_index_type): Move type finding code to
4485 dwarf2_per_cu_addr_sized_int_type.
4486 (read_subrange_type): Update calls to attr_to_dynamic_prop.
4487 (dwarf2_per_cu_addr_type): New function.
4488 (set_die_type): Update calls to attr_to_dynamic_prop.
4489
b86352cf
AB
44902019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
4491
4492 * dwarf2read.c (read_subrange_index_type): New function.
4493 (read_subrange_type): Move code into new function and call it.
4494 * gdbtypes.c (create_range_type): Add some asserts.
4495
603490bf
AB
44962019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
4497
4498 * dwarf2loc.c (dwarf2_evaluate_property): Change return type, and
4499 update return statements.
4500 * dwarf2loc.h (dwarf2_evaluate_property): Update return type on
4501 declaration, and update comment to match.
4502 * gdbtypes.c (resolve_dynamic_array): Update call to
4503 dwarf2_evaluate_property to match new return type.
4504
592f9d27
AB
45052019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
4506
4507 * valarith.c (value_subscripted_rvalue): Change lowerbound
4508 parameter type from int to LONGEST.
4509 * value.h (value_subscripted_rvalue): Likewise in declaration.
4510
60cfcb20
AB
45112019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
4512
4513 * cli/cli-utils.c (info_print_command_completer): New function.
4514 * cli/cli-utils.h: Add 'completer.h' include, and forward
4515 declaration for 'struct cmd_list_element'.
4516 (info_print_command_completer): Declare.
4517 * stack.c (_initialize_stack): Add completer for 'info locals' and
4518 'info args'.
4519 * symtab.c (_initialize_symtab): Add completer for 'info
4520 variables' and 'info functions'.
4521 * NEWS: Mention completion for additional info commands.
4522
b16507e0
AB
45232019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
4524
4525 * cli/cli-utils.c (extract_info_print_args): Delete.
4526 (extract_arg_maybe_quoted): Delete.
4527 (info_print_options_defs): New variable.
4528 (make_info_print_options_def_group): New function.
4529 (extract_info_print_options): Define new function.
4530 * cli/cli-utils.h (extract_info_print_args): Delete.
4531 (struct info_print_options): New structure.
4532 (extract_info_print_options): Declare new function.
4533 * stack.c (info_locals_command): Update to use new
4534 extract_info_print_options, also add a header comment.
4535 (info_args_command): Likewise.
4536 * symtab.c (info_variables_command): Likewise.
4537 (info_functions_command): Likewise.
4538
021d8588
AB
45392019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
4540
4541 * cli/cli-option.c (parse_option): Use extract_string_maybe_quoted
4542 to extract string arguments.
4543 * common/common-utils.c (extract_string_maybe_quoted): New function.
4544 * common/common-utils.h (extract_string_maybe_quoted): Declare.
4545
b777eb6d
TT
45462019-07-11 Tom Tromey <tromey@adacore.com>
4547
4548 * main.c (get_init_files): Use GDBINIT, not gdbinit.
4549 * auto-load.c (file_is_auto_load_safe): Use GDBINIT, not gdbinit.
4550 * top.h (gdbinit): Don't declare.
4551 * cli/cli-cmds.c (init_cli_cmds): Remove, merging contents
4552 into...
4553 (_initialize_cli_cmds): ...here. Use GDBINIT, not gdbinit.
4554 * top.c (gdb_init): Don't call init_cli_cmds.
4555 (gdbinit): Remove.
4556 * cli/cli-cmds.h (init_cli_cmds): Don't declare.
4557
72ee03ff
TT
45582019-07-11 Tom Tromey <tromey@adacore.com>
4559
4560 * python/py-inferior.c (add_thread_object): Don't use thread_obj
4561 after it has been moved.
4562
00db9531
SM
45632019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
4564
4565 * valops.c (value_must_coerce_to_target): Change return type to
4566 bool.
4567 * value.h (value_must_coerce_to_target): Likewise.
4568
f2478a7e
SM
45692019-07-10 Simon Marchi <simon.marchi@efficios.com>
4570
4571 * breakpoint.c (is_hardware_watchpoint): Remove
4572 forward-declaration.
4573 (is_masked_watchpoint): Change return type to bool.
4574 (is_tracepoint): Likewise.
4575 (is_breakpoint): Likewise.
4576 (is_hardware_watchpoint): Likewise.
4577 (is_watchpoint): Likewise.
4578 (is_no_memory_software_watchpoint): Likewise.
4579 (is_catchpoint): Likewise.
4580 (breakpoint_1): Make FILTER parameter's return type bool.
4581 is_masked_watchpoint): Change return type to bool.
4582 (save_breakpoints): Make FILTER parameter's return type bool.
4583 * breakpoint.h (is_breakpoint): Change return type to bool.
4584 (is_watchpoint): Likewise.
4585 (is_catchpoint): Likewise.
4586 (is_tracepoint): Likewise.
4587
0d12e84c
TT
45882019-07-10 Tom Tromey <tom@tromey.com>
4589
4590 * defs.h: Don't include gdbarch.h.
4591 * aarch64-ravenscar-thread.c, aarch64-tdep.c, alpha-bsd-tdep.h,
4592 alpha-linux-tdep.c, alpha-mdebug-tdep.c, arch-utils.h, arm-tdep.h,
4593 ax-general.c, btrace.c, buildsym-legacy.c, buildsym.h, c-lang.c,
4594 cli/cli-decode.h, cli/cli-dump.c, cli/cli-script.h,
4595 cli/cli-style.h, coff-pe-read.h, compile/compile-c-support.c,
4596 compile/compile-cplus.h, compile/compile-loc2c.c, corefile.c,
4597 cp-valprint.c, cris-linux-tdep.c, ctf.c, d-lang.c, d-namespace.c,
4598 dcache.c, dicos-tdep.c, dictionary.c, disasm-selftests.c,
4599 dummy-frame.c, dummy-frame.h, dwarf2-frame-tailcall.c,
4600 dwarf2expr.c, expression.h, f-lang.c, frame-base.c,
4601 frame-unwind.c, frv-linux-tdep.c, gdbarch-selftests.c, gdbtypes.h,
4602 go-lang.c, hppa-nbsd-tdep.c, hppa-obsd-tdep.c, i386-dicos-tdep.c,
4603 i386-tdep.h, ia64-vms-tdep.c, interps.h, language.c,
4604 linux-record.c, location.h, m2-lang.c, m32r-linux-tdep.c,
4605 mem-break.c, memattr.c, mn10300-linux-tdep.c, nios2-linux-tdep.c,
4606 objfiles.h, opencl-lang.c, or1k-linux-tdep.c, p-lang.c,
4607 parser-defs.h, ppc-tdep.h, probe.h, python/py-record-btrace.c,
4608 record-btrace.c, record.h, regcache-dump.c, regcache.h,
4609 riscv-fbsd-tdep.c, riscv-linux-tdep.c, rust-exp.y,
4610 sh-linux-tdep.c, sh-nbsd-tdep.c, source-cache.c,
4611 sparc-nbsd-tdep.c, sparc-obsd-tdep.c, sparc-ravenscar-thread.c,
4612 sparc64-fbsd-tdep.c, std-regs.c, target-descriptions.h,
4613 target-float.c, tic6x-linux-tdep.c, tilegx-linux-tdep.c, top.c,
4614 tracefile.c, trad-frame.c, type-stack.h, ui-style.c, utils.c,
4615 utils.h, valarith.c, valprint.c, varobj.c, x86-tdep.c,
4616 xml-support.h, xtensa-linux-tdep.c, cli/cli-cmds.h: Update.
4617 * s390-linux-nat.c, procfs.c, inf-ptrace.c: Likewise.
4618
f06f1252
TT
46192019-07-10 Tom Tromey <tromey@adacore.com>
4620
4621 * ada-lang.h (is_ada_exception_catchpoint): Declare.
4622 * breakpoint.c (init_ada_exception_breakpoint): Register as
4623 bp_catchpoint.
4624 (print_one_breakpoint_location, print_one_breakpoint): Use
4625 is_ada_exception_catchpoint.
4626 * ada-lang.c (class ada_catchpoint_location): Pass
4627 bp_loc_software_breakpoint to bp_location constructor.
4628 (is_ada_exception_catchpoint): New function.
4629
7a5d944b
TT
46302019-07-10 Tom Tromey <tromey@adacore.com>
4631
4632 * arm-tdep.c (arm_exidx_entry_s): Remove typedef. Don't define
4633 VEC.
4634 (struct arm_exidx_entry): New method operator<.
4635 (struct arm_exidx_data) <section_maps>: Change type.
4636 (arm_exidx_data_free): Remove.
4637 (arm_exidx_data_key): Change type. Move lower.
4638 (arm_exidx_new_objfile): Update.
4639 (arm_compare_exidx_entries): Remove.
4640 (arm_find_exidx_entry, _initialize_arm_tdep)
4641
48c66e1d
TT
46422019-07-10 Tom Tromey <tromey@adacore.com>
4643
4644 * solib-spu.c (ocl_program_data_key): Change type.
4645 (append_ocl_sos, ocl_enable_break, _initialize_spu_solib):
4646 Update.
4647
a269fbf1
TT
46482019-07-10 Tom Tromey <tromey@adacore.com>
4649
4650 * solib-aix.c (lm_info_aix_p): Remove typedef. Don't define VEC.
4651 (struct solib_aix_inferior_data) <library_list>: Change type.
4652 (solib_aix_inferior_data_handle): Change type.
4653 (get_solib_aix_inferior_data): Update.
4654 (solib_aix_free_library_list): Remove.
4655 (library_list_start_library): Update.
4656 (solib_aix_parse_libraries, solib_aix_get_library_list): Change
4657 return type.
4658 (solib_aix_get_library_list)
4659 (solib_aix_solib_create_inferior_hook, solib_aix_current_sos)
4660 (solib_aix_normal_stop_observer, _initialize_solib_aix): Update.
4661
c294730c
TT
46622019-07-10 Tom Tromey <tromey@adacore.com>
4663
4664 * solib-dsbt.c (struct dsbt_info): Add initializers.
4665 (solib_dsbt_pspace_data): Change type.
4666 (dsbt_pspace_data_cleanup): Remove.
4667 (get_dsbt_info, _initialize_dsbt_solib): Update.
4668
9d52077d
TT
46692019-07-10 Tom Tromey <tromey@adacore.com>
4670
4671 * spu-tdep.c (spu_overlay_data): Change type.
4672 (spu_get_overlay_table, spu_overlay_new_objfile)
4673 (_initialize_spu_tdep): Update.
4674
22a20dca
TT
46752019-07-10 Tom Tromey <tromey@adacore.com>
4676
4677 * gdb-stabs.h (struct dbx_symfile_info): Add initializers and
4678 destructor.
4679 (dbx_objfile_data_key): Change type and declare later.
4680 (DBX_SYMFILE_INFO): Rewrite.
4681 * dbxread.c (dbx_objfile_data_key): Change type.
4682 (dbx_symfile_init): Update.
4683 (~dbx_symfile_info): Rename from dbx_free_symfile_info. Update.
4684 (coffstab_build_psymtabs, elfstab_build_psymtabs)
4685 (stabsect_build_psymtabs, _initialize_dbxread): Update.
4686
cb60f420
TT
46872019-07-10 Tom Tromey <tromey@adacore.com>
4688
4689 * jit.c (jit_program_space_key): Change type. Move lower.
4690 (get_jit_program_space_data): Update.
4691 (jit_program_space_data_cleanup): Remove.
4692 (jit_breakpoint_deleted, free_objfile_data, _initialize_jit):
4693 Update.
4694 (struct jit_program_space_data): Add initializers.
4695
51df2ae3
TT
46962019-07-10 Tom Tromey <tromey@adacore.com>
4697
4698 * solib-darwin.c (struct darwin_info): Add initializers.
4699 (solib_darwin_pspace_data): Change type.
4700 (darwin_pspace_data_cleanup): Remove.
4701 (get_darwin_info, _initialize_darwin_solib): Update.
4702
18101a35
TT
47032019-07-10 Tom Tromey <tromey@adacore.com>
4704
4705 * remote-sim.c (struct sim_inferior_data): Add initializers,
4706 constructor, and destructor.
4707 (sim_inferior_data_key): Change type. Move lower.
4708 (check_for_duplicate_sim_descriptor): Update.
4709 (get_sim_inferior_data): Use new. Update.
4710 (~sim_inferior_data_cleanup): Rename from
4711 sim_inferior_data_cleanup. Simplify.
4712 (gdbsim_close_inferior, simulator_command)
4713 (sim_command_completer, _initialize_remote_sim): Update.
4714 (next_pid, INITIAL_PID): Move earlier.
4715
05b08ac1
TT
47162019-07-10 Tom Tromey <tromey@adacore.com>
4717
4718 * python/python-internal.h (create_thread_object): Return
4719 gdbpy_ref.
4720 * python/py-infthread.c (create_thread_object): Return gdbpy_ref.
4721 * python/py-inferior.c (struct threadlist_entry): Add
4722 constructor.
4723 <thread_obj>: Now a gdbpy_ref.
4724 (thread_to_thread_object): Update.
4725 (add_thread_object): Use new.
4726 (delete_thread_object): Use delete.
4727 (infpy_threads): Update.
4728 (py_free_inferior): Update. Construct "inf_obj" after acquiring
4729 GIL.
4730
32372d80
TT
47312019-07-10 Tom Tromey <tromey@adacore.com>
4732
4733 * valops.c (value_cast): Specialize error message for Ada.
4734
5c458ae8
SM
47352019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
4736
4737 * breakpoint.c (breakpoint_1): Update doc and parameter names.
4738
4c462cb0
SM
47392019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
4740
4741 * breakpoint.h (bpstat_explains_signal, bpstat_causes_stop,
4742 bpstat_should_step): Return bool, adjust comments.
4743 * breakpoint.c (bpstat_explains_signal, bpstat_causes_stop,
4744 bpstat_should_step): Likewise.
4745
89abbcc2
AH
47462019-07-10 Alan Hayward <alan.hayward@arm.com>
4747
4748 * features/Makefile: Use feature target descriptions for Arm.
4749 * features/arm/arm-core.c: Generate new file.
4750 * features/arm/arm-fpa.c: Likewise.
4751 * features/arm/arm-m-profile-with-fpa.xml: Likewise.
4752 * features/arm/arm-m-profile.c: Likewise.
4753 * features/arm/arm-vfpv2.c: Likewise.
4754 * features/arm/arm-vfpv3.c: Likewise.
4755 * features/arm/xscale-iwmmxt.c: Likewise.
4756 * target-descriptions.c (maint_print_c_tdesc_cmd): Add Arm.
4757
166a82be
AH
47582019-07-10 Alan Hayward <alan.hayward@arm.com>
4759
4760 * arm-linux-nat.c (arm_linux_nat_target::read_description): Check
4761 ptrace earlier.
4762
9fb4c7e9
AH
47632019-07-10 Alan Hayward <alan.hayward@arm.com>
4764
4765 * features/aarch64-pauth.c: Regenerate.
4766
e2d0f980
SM
47672019-07-09 Simon Marchi <simon.marchi@polymtl.ca>
4768
4769 * breakpoint.h (struct bpstat_what) <is_longjmp>: Change type to
4770 bool.
4771 (bpstat_what): Use false instead of 0.
4772
a38118e5
PA
47732019-07-09 Pedro Alves <palves@redhat.com>
4774
4775 * break-catch-throw.c (is_exception_catchpoint): New.
4776 * breakpoint.c (print_one_breakpoint_location): New parameter
4777 'raw_loc'. Handle it. Use
4778 is_watchpoint/is_catchpoint/is_exception_catchpoint instead of
4779 looking at the breakpoint's type.
4780 (print_one_breakpoint): If handling "maint info breakpoints", also
4781 print locations of exception catchpoints.
4782 * breakpoint.h (is_exception_catchpoint): Declare.
4783
cb1e4e32
PA
47842019-07-09 Pedro Alves <palves@redhat.com>
4785
4786 * break-catch-throw.c (print_one_exception_catchpoint): Skip the
4787 "addr" field.
4788 (allocate_location_exception_catchpoint): New.
4789 (handle_gnu_v3_exceptions): Don't reset 'type' to bp_breakpoint.
4790 (initialize_throw_catchpoint_ops): Install
4791 allocate_location_exception_catchpoint as allocate_location
4792 method.
4793 * breakpoint.c (bpstat_what) <bp_catch>: Set action to
4794 BPSTAT_WHAT_SINGLE if not stopping and the location's type is not
4795 bp_loc_other.
4796 (breakpoint_address_is_meaningful): Delete.
4797 (bl_address_is_meaningful): New.
4798 (breakpoint_locations_match): Adjust comment.
4799 (bp_location_from_bp_type): New, factored out of...
4800 (bp_location::bp_location(breakpoint *)): ... this.
4801 (bp_location::bp_location(breakpoint *, bp_loc_type)): New,
4802 factored out of...
4803 (bp_location::bp_location(breakpoint *)): ... this. Reimplement.
4804 (bp_loc_is_permanent): Use bl_address_is_meaningful instead of
4805 breakpoint_address_is_meaningful.
4806 (bp_locations_compare): Adjust comment.
4807 (update_global_location_list): Use bl_address_is_meaningful
4808 instead of breakpoint_address_is_meaningful.
4809 * breakpoint.h (bp_location::bp_location(breakpoint *)): New
4810 explicit.
4811 (bp_location::bp_location(breakpoint *, bp_loc_type)): Declare.
4812 * python/py-breakpoint.c (bppy_get_location): No longer check
4813 whether location is null.
4814
b58a68fe
PA
48152019-07-09 Pedro Alves <palves@redhat.com>
4816
4817 PR c++/15468
4818 * breakpoint.c (print_one_breakpoint_location): Remove
4819 single-location assert.
4820
268a13a5
TT
48212019-07-09 Tom Tromey <tom@tromey.com>
4822
4823 * contrib/ari/gdb_ari.sh: Change common to gdbsupport.
4824 * configure: Rebuild.
4825 * configure.ac: Change common to gdbsupport.
4826 * gdbsupport: Rename from common.
4827 * acinclude.m4: Change common to gdbsupport.
4828 * Makefile.in (CONFIG_SRC_SUBDIR, COMMON_SFILES)
4829 (HFILES_NO_SRCDIR, stamp-version, ALLDEPFILES): Change common to
4830 gdbsupport.
4831 * aarch64-tdep.c, ada-lang.c, ada-lang.h, agent.c, alloc.c,
4832 amd64-darwin-tdep.c, amd64-dicos-tdep.c, amd64-fbsd-nat.c,
4833 amd64-fbsd-tdep.c, amd64-linux-nat.c, amd64-linux-tdep.c,
4834 amd64-nbsd-tdep.c, amd64-obsd-tdep.c, amd64-sol2-tdep.c,
4835 amd64-tdep.c, amd64-windows-tdep.c, arch-utils.c,
4836 arch/aarch64-insn.c, arch/aarch64.c, arch/aarch64.h, arch/amd64.c,
4837 arch/amd64.h, arch/arm-get-next-pcs.c, arch/arm-linux.c,
4838 arch/arm.c, arch/i386.c, arch/i386.h, arch/ppc-linux-common.c,
4839 arch/riscv.c, arch/riscv.h, arch/tic6x.c, arm-tdep.c, auto-load.c,
4840 auxv.c, ax-gdb.c, ax-general.c, ax.h, breakpoint.c, breakpoint.h,
4841 btrace.c, btrace.h, build-id.c, build-id.h, c-lang.h, charset.c,
4842 charset.h, cli/cli-cmds.c, cli/cli-cmds.h, cli/cli-decode.c,
4843 cli/cli-dump.c, cli/cli-option.h, cli/cli-script.c,
4844 coff-pe-read.c, command.h, compile/compile-c-support.c,
4845 compile/compile-c.h, compile/compile-cplus-symbols.c,
4846 compile/compile-cplus-types.c, compile/compile-cplus.h,
4847 compile/compile-loc2c.c, compile/compile.c, completer.c,
4848 completer.h, contrib/ari/gdb_ari.sh, corefile.c, corelow.c,
4849 cp-support.c, cp-support.h, cp-valprint.c, csky-tdep.c, ctf.c,
4850 darwin-nat.c, debug.c, defs.h, disasm-selftests.c, disasm.c,
4851 disasm.h, dtrace-probe.c, dwarf-index-cache.c,
4852 dwarf-index-cache.h, dwarf-index-write.c, dwarf2-frame.c,
4853 dwarf2expr.c, dwarf2loc.c, dwarf2read.c, event-loop.c,
4854 event-top.c, exceptions.c, exec.c, extension.h, fbsd-nat.c,
4855 features/aarch64-core.c, features/aarch64-fpu.c,
4856 features/aarch64-pauth.c, features/aarch64-sve.c,
4857 features/i386/32bit-avx.c, features/i386/32bit-avx512.c,
4858 features/i386/32bit-core.c, features/i386/32bit-linux.c,
4859 features/i386/32bit-mpx.c, features/i386/32bit-pkeys.c,
4860 features/i386/32bit-segments.c, features/i386/32bit-sse.c,
4861 features/i386/64bit-avx.c, features/i386/64bit-avx512.c,
4862 features/i386/64bit-core.c, features/i386/64bit-linux.c,
4863 features/i386/64bit-mpx.c, features/i386/64bit-pkeys.c,
4864 features/i386/64bit-segments.c, features/i386/64bit-sse.c,
4865 features/i386/x32-core.c, features/riscv/32bit-cpu.c,
4866 features/riscv/32bit-csr.c, features/riscv/32bit-fpu.c,
4867 features/riscv/64bit-cpu.c, features/riscv/64bit-csr.c,
4868 features/riscv/64bit-fpu.c, features/tic6x-c6xp.c,
4869 features/tic6x-core.c, features/tic6x-gp.c, filename-seen-cache.h,
4870 findcmd.c, findvar.c, fork-child.c, gcore.c, gdb_bfd.c, gdb_bfd.h,
4871 gdb_proc_service.h, gdb_regex.c, gdb_select.h, gdb_usleep.c,
4872 gdbarch-selftests.c, gdbthread.h, gdbtypes.h, gnu-nat.c,
4873 go32-nat.c, guile/guile.c, guile/scm-ports.c,
4874 guile/scm-safe-call.c, guile/scm-type.c, i386-fbsd-nat.c,
4875 i386-fbsd-tdep.c, i386-go32-tdep.c, i386-linux-nat.c,
4876 i386-linux-tdep.c, i386-tdep.c, i387-tdep.c,
4877 ia64-libunwind-tdep.c, ia64-linux-nat.c, inf-child.c,
4878 inf-ptrace.c, infcall.c, infcall.h, infcmd.c, inferior-iter.h,
4879 inferior.c, inferior.h, inflow.c, inflow.h, infrun.c, infrun.h,
4880 inline-frame.c, language.h, linespec.c, linux-fork.c, linux-nat.c,
4881 linux-tdep.c, linux-thread-db.c, location.c, machoread.c,
4882 macrotab.h, main.c, maint.c, maint.h, memattr.c, memrange.h,
4883 mi/mi-cmd-break.h, mi/mi-cmd-env.c, mi/mi-cmd-stack.c,
4884 mi/mi-cmd-var.c, mi/mi-interp.c, mi/mi-main.c, mi/mi-parse.h,
4885 minsyms.c, mips-linux-tdep.c, namespace.h,
4886 nat/aarch64-linux-hw-point.c, nat/aarch64-linux-hw-point.h,
4887 nat/aarch64-linux.c, nat/aarch64-sve-linux-ptrace.c,
4888 nat/amd64-linux-siginfo.c, nat/fork-inferior.c,
4889 nat/linux-btrace.c, nat/linux-btrace.h, nat/linux-namespaces.c,
4890 nat/linux-nat.h, nat/linux-osdata.c, nat/linux-personality.c,
4891 nat/linux-procfs.c, nat/linux-ptrace.c, nat/linux-ptrace.h,
4892 nat/linux-waitpid.c, nat/mips-linux-watch.c,
4893 nat/mips-linux-watch.h, nat/ppc-linux.c, nat/x86-dregs.c,
4894 nat/x86-dregs.h, nat/x86-linux-dregs.c, nat/x86-linux.c,
4895 nto-procfs.c, nto-tdep.c, objfile-flags.h, objfiles.c, objfiles.h,
4896 obsd-nat.c, observable.h, osdata.c, p-valprint.c, parse.c,
4897 parser-defs.h, ppc-linux-nat.c, printcmd.c, probe.c, proc-api.c,
4898 procfs.c, producer.c, progspace.h, psymtab.h,
4899 python/py-framefilter.c, python/py-inferior.c, python/py-ref.h,
4900 python/py-type.c, python/python.c, record-btrace.c, record-full.c,
4901 record.c, record.h, regcache-dump.c, regcache.c, regcache.h,
4902 remote-fileio.c, remote-fileio.h, remote-sim.c, remote.c,
4903 riscv-tdep.c, rs6000-aix-tdep.c, rust-exp.y, s12z-tdep.c,
4904 selftest-arch.c, ser-base.c, ser-event.c, ser-pipe.c, ser-tcp.c,
4905 ser-unix.c, skip.c, solib-aix.c, solib-target.c, solib.c,
4906 source-cache.c, source.c, source.h, sparc-nat.c, spu-linux-nat.c,
4907 stack.c, stap-probe.c, symfile-add-flags.h, symfile.c, symfile.h,
4908 symtab.c, symtab.h, target-descriptions.c, target-descriptions.h,
4909 target-memory.c, target.c, target.h, target/waitstatus.c,
4910 target/waitstatus.h, thread-iter.h, thread.c, tilegx-tdep.c,
4911 top.c, top.h, tracefile-tfile.c, tracefile.c, tracepoint.c,
4912 tracepoint.h, tui/tui-io.c, ui-file.c, ui-out.h,
4913 unittests/array-view-selftests.c,
4914 unittests/child-path-selftests.c, unittests/cli-utils-selftests.c,
4915 unittests/common-utils-selftests.c,
4916 unittests/copy_bitwise-selftests.c, unittests/environ-selftests.c,
4917 unittests/format_pieces-selftests.c,
4918 unittests/function-view-selftests.c,
4919 unittests/lookup_name_info-selftests.c,
4920 unittests/memory-map-selftests.c, unittests/memrange-selftests.c,
4921 unittests/mkdir-recursive-selftests.c,
4922 unittests/observable-selftests.c,
4923 unittests/offset-type-selftests.c, unittests/optional-selftests.c,
4924 unittests/parse-connection-spec-selftests.c,
4925 unittests/ptid-selftests.c, unittests/rsp-low-selftests.c,
4926 unittests/scoped_fd-selftests.c,
4927 unittests/scoped_mmap-selftests.c,
4928 unittests/scoped_restore-selftests.c,
4929 unittests/string_view-selftests.c, unittests/style-selftests.c,
4930 unittests/tracepoint-selftests.c, unittests/unpack-selftests.c,
4931 unittests/utils-selftests.c, unittests/xml-utils-selftests.c,
4932 utils.c, utils.h, valarith.c, valops.c, valprint.c, value.c,
4933 value.h, varobj.c, varobj.h, windows-nat.c, x86-linux-nat.c,
4934 xml-support.c, xml-support.h, xml-tdesc.h, xstormy16-tdep.c,
4935 xtensa-linux-nat.c, dwarf2read.h: Change common to gdbsupport.
4936
5b0e2db4
AB
49372019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
4938
4939 * linespec.c (decode_digits_list_mode): Set explicit_line to a
4940 bool value.
4941 (decode_digits_ordinary): Set explicit_line field in sal.
4942 * symtab.c (skip_prologue_sal): Don't skip prologue for a
4943 symtab_and_line that was set on an explicit line number in
4944 assembler code. Do always update the recorded symtab and line if
4945 we do skip the prologue.
4946
0ba852ab
AB
49472019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
4948
4949 * breakpoint.c (set_breakpoint_location_function): Remove
4950 explicit_loc parameter.
4951 (momentary_breakpoint_from_master): Update call to
4952 set_breakpoint_location_function.
4953 (add_location_to_breakpoint): Likewise.
4954
b3a7d171
AB
49552019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
4956
4957 * riscv-tdep.c (riscv_features_from_gdbarch_info): Don't modify
4958 required features based on default bfd type when no specific bfd
4959 is present.
4960
1f6f6e21
PW
49612019-07-08 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4962
4963 * NEWS: Mention that GDB printf and eval commands can now print
4964 C-style and Ada-style convenience var strings without
4965 calling the inferior.
4966 * printcmd.c (printf_c_string): Locally print GDB internal var
4967 instead of transiting via the inferior.
4968 (printf_wide_c_string): Likewise.
4969
49702019-07-04 Alan Hayward <alan.hayward@arm.com>
ea142fbf 4971
5862c886 4972 PR breakpoints/25011
ea142fbf
AH
4973 * symfile.c (symbol_file_command): Call solib_create_inferior_hook.
4974
0598af48
TT
49752019-07-04 Tom Tromey <tom@tromey.com>
4976
4977 PR tui/24724:
4978 * tui/tui-winsource.c (tui_clear_source_content): Update.
4979 (tui_source_window_base::set_is_exec_point_at): Fix comment.
4980 (tui_update_breakpoint_info): Update.
4981 (tui_set_exec_info_content): Update.
4982 * tui/tui-source.c (tui_set_source_content_nil): Update.
4983 * tui/tui-disasm.c (tui_set_disassem_content): Don't set
4984 has_break.
4985 * tui/tui-data.h (enum tui_bp_flag): New.
4986 (tui_bp_flags): New enum flags type.
4987 (struct tui_source_element) <break_mode>: Change type. Rename
4988 from has_break.
4989 (TUI_BP_ENABLED, TUI_BP_DISABLED, TUI_BP_HIT)
4990 (TUI_BP_CONDITIONAL, TUI_BP_HARDWARE): Don't define. Now enum
4991 constants.
4992 * tui/tui-winsource.h: Fix comment.
4993
350fab54
AH
49942019-07-04 Alan Hayward <alan.hayward@arm.com>
4995
4996 * aarch32-linux-nat.h (VFP_REGS_SIZE): Remove define.
4997 * aarch64-linux-nat.c (fetch_fpregs_from_thread)
4998 (store_fpregs_to_thread)
4999 (aarch64_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
5000 * arch/arm.h (IWMMXT_VEC_REGISTER_SIZE, ARM_CORE_REGS_SIZE)
5001 (ARM_FP_REGS_SIZE, ARM_VFP2_REGS_SIZE, ARM_VFP3_REGS_SIZE)
5002 (IWMMXT_REGS_SIZE): Add define.
5003 * arm-linux-nat.c (IWMMXT_REGS_SIZE): Remove define.
5004 (fetch_vfp_regs, store_vfp_regs)
5005 (arm_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
5006 * arm-tdep.c (arm_register_g_packet_guesses): Use new defines.
5007
f0452268
AH
50082019-07-04 Alan Hayward <alan.hayward@arm.com>
5009
5010 * arch/arm-get-next-pcs.c (thumb_get_next_pcs_raw): Use ARM_
5011 defines.
5012 * arch/arm-linux.c (arm_linux_sigreturn_next_pc_offset): Likewise.
5013 * arch/arm.h (INT_REGISTER_SIZE) Rename from...
5014 (ARM_INT_REGISTER_SIZE): ...to this.
5015 (ARM_FP_REGISTER_SIZE) (ARM_VFP_REGISTER_SIZE): Add define.
5016 * arm-linux-tdep.c (ARM_LINUX_JB_ELEMENT_SIZE)
5017 (ARM_LINUX_SIZEOF_GREGSET, arm_linux_supply_gregset)
5018 (arm_linux_collect_gregset, supply_nwfpe_register)
5019 (collect_nwfpe_register, arm_linux_collect_nwfpe): Use ARM_
5020 defines.
5021 * arm-linux-tdep.h (ARM_LINUX_SIZEOF_NWFPE, NWFPE_FPSR_OFFSET)
5022 (NWFPE_FPCR_OFFSET, NWFPE_TAGS_OFFSET): Likewise
5023 * arm-nbsd-tdep.c (ARM_NBSD_JB_ELEMENT_SIZE): Likewise.
5024 * arm-tdep.c (arm_push_dummy_call, arm_extract_return_value)
5025 (arm_return_in_memory, arm_store_return_value)
5026 (arm_get_longjmp_target, arm_register_g_packet_guesses)
5027 (arm_record_ld_st_multiple): Likewise.
5028 * arm-tdep.h (FP_REGISTER_SIZE, VFP_REGISTER_SIZE): Remove.
5029 * arm-wince-tdep.c (ARM_WINCE_JB_ELEMENT_SIZE): Use ARM_ defines.
5030
e935475c
AH
50312019-07-04 Alan Hayward <alan.hayward@arm.com>
5032
5033 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Use
5034 AARCH64_DISPLACED_MODIFIED_INSNS.
5035 * aarch64-tdep.c (struct aarch64_displaced_step_data)
5036 (aarch64_displaced_step_copy_insn): Likewise.
5037 * aarch64-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
5038 (AARCH64_DISPLACED_MODIFIED_INSNS): ...to this.
5039 * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
5040 ARM_DISPLACED_MODIFIED_INSNS.
5041 * arm-tdep.c (arm_gdbarch_init): Likewise.
5042 * arm-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
5043 (ARM_DISPLACED_MODIFIED_INSNS): ...to this.
5044 (struct arm_displaced_step_closure): Use
5045 ARM_DISPLACED_MODIFIED_INSNS.
5046
df0bb381
AH
50472019-07-04 Alan Hayward <alan.hayward@arm.com>
5048
5049 * features/Makefile: Remove unused xml files.
5050 * features/aarch64.xml: Remove.
5051 * features/i386/amd64-avx-avx512-linux.xml: Remove.
5052 * features/i386/amd64-avx-avx512.xml: Remove.
5053 * features/i386/amd64-avx-linux.xml: Remove.
5054 * features/i386/amd64-avx-mpx-avx512-pku-linux.xml: Remove.
5055 * features/i386/amd64-avx-mpx-avx512-pku.xml: Remove.
5056 * features/i386/amd64-avx-mpx-linux.xml: Remove.
5057 * features/i386/amd64-avx-mpx.xml: Remove.
5058 * features/i386/amd64-avx.xml: Remove.
5059 * features/i386/amd64-linux.xml: Remove.
5060 * features/i386/amd64-mpx-linux.xml: Remove.
5061 * features/i386/amd64-mpx.xml: Remove.
5062 * features/i386/amd64.xml: Remove.
5063 * features/i386/i386-avx-avx512-linux.xml: Remove.
5064 * features/i386/i386-avx-avx512.xml: Remove.
5065 * features/i386/i386-avx-linux.xml: Remove.
5066 * features/i386/i386-avx-mpx-avx512-pku-linux.xml: Remove.
5067 * features/i386/i386-avx-mpx-avx512-pku.xml: Remove.
5068 * features/i386/i386-avx-mpx-linux.xml: Remove.
5069 * features/i386/i386-avx-mpx.xml: Remove.
5070 * features/i386/i386-avx.xml: Remove.
5071 * features/i386/i386-linux.xml: Remove.
5072 * features/i386/i386-mmx-linux.xml: Remove.
5073 * features/i386/i386-mmx.xml: Remove.
5074 * features/i386/i386-mpx-linux.xml: Remove.
5075 * features/i386/i386-mpx.xml: Remove.
5076 * features/i386/i386.xml: Remove.
5077 * features/i386/x32-avx-avx512-linux.xml: Remove.
5078 * features/i386/x32-avx-linux.xml: Remove.
5079 * features/i386/x32-linux.xml: Remove.
5080
edd6266a
AH
50812019-07-04 Alan Hayward <alan.hayward@arm.com>
5082
5083 * regformats/aarch64.dat: Remove.
5084 * regformats/i386/amd64-avx-avx512-linux.dat: Remove.
5085 * regformats/i386/amd64-avx-linux.dat: Remove.
5086 * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Remove.
5087 * regformats/i386/amd64-avx-mpx-linux.dat: Remove.
5088 * regformats/i386/amd64-linux.dat: Remove.
5089 * regformats/i386/amd64-mpx-linux.dat: Remove.
5090 * regformats/i386/amd64.dat: Remove.
5091 * regformats/i386/i386-avx-avx512-linux.dat: Remove.
5092 * regformats/i386/i386-avx-linux.dat: Remove.
5093 * regformats/i386/i386-avx-mpx-avx512-pku-linux.dat: Remove.
5094 * regformats/i386/i386-avx-mpx-linux.dat: Remove.
5095 * regformats/i386/i386-linux.dat: Remove.
5096 * regformats/i386/i386-mmx-linux.dat: Remove.
5097 * regformats/i386/i386-mpx-linux.dat: Remove.
5098 * regformats/i386/i386.dat: Remove.
5099 * regformats/i386/x32-avx-avx512-linux.dat: Remove.
5100 * regformats/i386/x32-avx-linux.dat: Remove.
5101 * regformats/i386/x32-linux.dat: Remove.
5102
2b40fda7
AH
51032019-07-04 Alan Hayward <alan.hayward@arm.com>
5104
5105 * aarch64-tdep.c: Remove xml self tests.
5106 * amd64-linux-tdep.c: Likewise.
5107 * amd64-tdep.c: Likewise.
5108 * i386-linux-tdep.c: Likewise.
5109 * i386-tdep.c: Likewise.
5110
5f4ba3e7
PA
51112019-07-03 Pedro Alves <palves@redhat.com>
5112
5113 PR cli/24732
5114 * cli/cli-cmds.c (struct pipe_cmd_opts): New.
5115 (pipe_cmd_option_defs): New.
5116 (make_pipe_cmd_options_def_group): New.
5117 (pipe_command): Use gdb::option::process_options.
5118 (pipe_command_completer): New function.
5119 (_initialize_cli_cmds): Install completer for "pipe" command.
5120
3d9be6f5
PA
51212019-07-03 Pedro Alves <palves@redhat.com>
5122
5123 * cli/cli-option.c (union option_value) <string>: New field.
5124 (struct option_def_and_value): Add ctor, move ctor, dtor and
5125 use DISABLE_COPY_AND_ASSIGN.
5126 (option_def_and_value::clear_value): New.
5127 (parse_option, save_option_value_in_ctx, get_val_type_str)
5128 (add_setshow_cmds_for_options): Handle var_string.
5129 * cli-option.h (union option_def::var_address) <string>: New
5130 field.
5131 (struct string_option_def): New.
5132 * maint-test-options.c (struct test_options_opts): Add default
5133 ctor and use DISABLE_COPY_AND_ASSIGN.
5134 <string_opt>: New field.
5135 (test_options_opts::~test_options_opts): New.
5136 (test_options_opts::dump): Also dump "-string".
5137 (test_options_option_defs): Install "string.
5138
41fc454c
PA
51392019-07-03 Pedro Alves <palves@redhat.com>
5140
5141 * cli/cli-option.c (parse_option) <var_enum>: Don't return an
5142 option_value with a null enumeration.
5143 (complete_options): Save the option values in the context.
5144 (save_option_value_in_ctx): New, factored out from ...
5145 (process_options): ... here.
5146 * cli/cli-utils.c (get_ulongest): Don't advance PP until the end
5147 of the function.
5148 * maint-test-options.c (test_options_opts::dump): New, factored
5149 out from ...
5150 (maintenance_test_options_command_mode): ... here.
5151 (maintenance_test_options_command_completion_result): Delete.
5152 (maintenance_test_options_command_completion_text): Update
5153 comment.
5154 (maintenance_show_test_options_completion_result): Change
5155 prototype. Just print
5156 maintenance_test_options_command_completion_text.
5157 (save_completion_result): New.
5158 (maintenance_test_options_completer_mode): Pass options context to
5159 complete_options, and then save a dump.
5160 (_initialize_maint_test_options): Use add_cmd to install "maint
5161 show test-options-completion-result".
5162
fdbc9870
PA
51632019-07-03 Pedro Alves <palves@redhat.com>
5164
5165 * NEWS (New commands): Mention "with" and "maint with".
5166 * cli/cli-cmds.c (with_command_1, with_command_completer_1)
5167 (with_command, with_command_completer): New.
5168 (pipe_command): Adjust to new repeat_previous
5169 interface.
5170 (_initialize_cli_cmds): Install the "with" command and its "w"
5171 alias.
5172 * cli/cli-cmds.h (with_command_1, with_command_completer_1): New
5173 declarations.
5174 * cli/cli-setshow.c (parse_cli_var_uinteger)
5175 (parse_cli_var_zuinteger_unlimited, do_set_command): Handle empty
5176 argument strings for all var_types.
5177 (get_setshow_command_value_string): New, factored out from ...
5178 (do_show_command): ... this.
5179 * cli/cli-setshow.h: Include <string>.
5180 (get_setshow_command_value_string): Declare.
5181 * command.h (repeat_previous): Now returns const char *. Adjust
5182 comment.
5183 * maint.c: Include "cli/cli-cmds.h".
5184 (maintenance_with_cmd, maintenance_with_cmd_completer): New.
5185 (_initialize_maint_cmds): Register the "maintenance with" command.
5186 * top.c (repeat_previous): Move bits from pipe_command here:
5187 Return the saved command line, if any; error out if there's no
5188 command to relaunch.
5189
c6ac8931
PA
51902019-07-03 Pedro Alves <palves@redhat.com>
5191
5192 * NEWS (New commands): Mention "maint set/show test-settings"
5193 instead of "maint test-settings".
5194 * maint-test-settings.c (maintenance_test_settings_list): Delete.
5195 (maintenance_test_settings_set_list): Rename to ...
5196 (maintenance_set_test_settings_list): ... this.
5197 (maintenance_test_settings_show_list): Rename to ...
5198 (maintenance_show_test_settings_list): ... this.
5199 (maintenance_test_settings_cmd): Delete.
5200 (maintenance_test_settings_set_cmd): ...
5201 (maintenance_set_test_settings_cmd): ... this.
5202 (maintenance_test_settings_show_cmd): ...
5203 (maintenance_show_test_settings_cmd): ... this.
5204 (maintenance_test_settings_show_value_cmd):
5205 (maintenance_show_test_settings_value_cmd): ... this.
5206 (_initialize_maint_test_settings): No longer install the "maint
5207 test-settings" prefix command. Rename "maint test-settings set"
5208 to "maint set test-settings", and "maint test-settings show" to
5209 "maint show test-settings". Adjust all subcommands.
5210
d1fcf2fd
PA
52112019-07-03 Pedro Alves <palves@redhat.com>
5212
5213 * maint-test-settings.c: Fix file's intro comment. Replace all
5214 references to "test-options" with references to "test-settings",
5215 in comments.
5216
970f9d09
PA
52172019-07-03 Pedro Alves <palves@redhat.com>
5218
5219 * maint-test-settings.c (maintenance_test_settings_xxx)
5220 (maintenance_test_settings_yyy, maintenance_test_settings_zzz):
5221 New.
5222 (maintenance_test_settings_enums): Use them.
5223 (maintenance_test_settings_enum): Default to
5224 maintenance_test_settings_xxx.
5225 (_initialize_maint_test_settings): Initialize
5226 MAINTENANCE_TEST_SETTINGS_FILENAME.
5227
f3869b1a
SM
52282019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
5229
5230 * breakpoint.h (remove_breakpoints_inf): Change return type to
5231 void, move function documentation here.
5232 * breakpoint.c (remove_breakpoints_inf): Change return type to
5233 void, move function documentation to header.
5234
54d66006
PA
52352019-07-02 Pedro Alves <palves@redhat.com>
5236
5237 * NEWS (Completion improvements): Mention "info threads".
5238 * thread.c (struct info_threads_opts, info_threads_option_defs)
5239 (make_info_threads_options_def_group): New.
5240 (info_threads_command): Use gdb::option::process_options.
5241 (info_threads_command_completer): New.
5242 (_initialize_thread): Use gdb::option::build_help to build the
5243 help text for "info threads".
5244
854f6088
SM
52452019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
5246
5247 * defs.h (generic_load): Move from here...
5248 * symfile.h (generic_load): ... to here. Rename name parameter
5249 to args.
5250 * symfile.c (generic_load): Add comment.
5251
54ee4252
TT
52522019-07-01 Tom Tromey <tromey@adacore.com>
5253
5254 * dwarf2read.c
5255 (dw2_debug_names_iterator::find_vec_in_debug_names): Hoist
5256 declaration of without_params. Fix formatting.
5257
65392b3e
TT
52582019-07-01 Tom Tromey <tromey@adacore.com>
5259
5260 * ada-exp.y (find_primitive_type): Update.
5261 * ada-lang.h (ada_lookup_symbol): Update.
5262 * ada-lang.c (ada_lookup_symbol): Remove "is_a_field_of_this"
5263 parameter.
5264 (ada_lookup_encoded_symbol, ada_lookup_symbol_nonlocal): Update.
5265
7d7571f0
SDJ
52662019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
5267
5268 PR breakpoints/24541
5269 * gdbarch.c: Regenerate.
5270 * gdbarch.h: Regenerate.
5271 * gdbarch.sh: Add 'stap_adjust_register'.
5272 * i386-tdep.c: Include '<unordered_set>'.
5273 (i386_stap_adjust_register): New function.
5274 (i386_elf_init_abi): Register 'i386_stap_adjust_register'.
5275 * stap-probe.c (stap_parse_register_operand): Call
5276 'gdbarch_stap_adjust_register'.
5277
5af5392a
SDJ
52782019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
5279
5280 PR python/24742
5281 https://bugzilla.redhat.com/show_bug.cgi?id=1723564
5282 * python/python.c (do_start_initialization): Use 'xmalloc'
5283 instead of 'PyMem_Malloc'.
5284
10d06d82
TT
52852019-06-28 Tom Tromey <tromey@adacore.com>
5286
5287 * dwarf2read.c (partial_die_info::read): Prefer the linkage name
5288 for Ada.
5289
1b7f24cd
TT
52902019-06-27 Tom Tromey <tromey@adacore.com>
5291
5292 * arm-tdep.c (arm_objfile_data_key): Move lower. Change type to
5293 objfile_key.
5294 (arm_find_mapping_symbol, arm_record_special_symbol)
5295 (_initialize_arm_tdep): Update.
5296 (arm_objfile_data_free): Remove.
5297
3d507ff2
TT
52982019-06-27 Tom Tromey <tromey@adacore.com>
5299
5300 * cp-valprint.c (cp_print_value_fields): Pass opts, not options,
5301 to cp_print_static_field.
5302
762c164d
TT
53032019-06-26 Tom Tromey <tromey@adacore.com>
5304
5305 * minsyms.c (lookup_minimal_symbol_solib_trampoline): Remove.
5306 * minsyms.h (lookup_minimal_symbol_solib_trampoline): Don't
5307 declare.
5308
aa2f9bcf
AH
53092019-06-26 Alan Hayward <alan.hayward@arm.com>
5310
5311 * features/aarch64-core.c (create_feature_aarch64_core):
5312 Regenerate.
5313 * features/aarch64-core.xml: Add cpsr flags.
5314
3426ae57
AH
53152019-06-26 Alan Hayward <alan.hayward@arm.com>
5316
5317 * arm-tdep.c (arm_gnu_triplet_regexp): New function.
5318 (arm_gdbarch_init): Add arm_gnu_triplet_regexp.
5319
4838e44c
SM
53202019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
5321
5322 * arm-tdep.c (struct arm_per_objfile) <section_maps_sorted>: New
5323 field.
5324 (arm_find_mapping_symbol): Sort mapping symbol vectors on first
5325 use.
5326 (arm_record_special_symbol): Don't insert new symbol in sorted
5327 position, push it at the end.
5328
54cc7474
SM
53292019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
5330
5331 * arm-tdep.c (struct arm_mapping_symbol) (operator <): New.
5332 (arm_mapping_symbol_s): Remove.
5333 (DEF_VEC_O(arm_mapping_symbol_s)): Remove.
5334 (arm_mapping_symbol_vec): New typedef.
5335 (struct arm_per_objfile): Add constructor.
5336 <section_maps>: Change type to
5337 std::unique_ptr<arm_mapping_symbol_vec[]>.
5338 (arm_compare_mapping_symbols): Remove.
5339 (arm_find_mapping_symbol): Adjust to section_maps type change.
5340 (arm_objfile_data_free): Call delete on arm_per_objfile.
5341 (arm_record_special_symbol): Adjust to section_maps type change.
5342 Allocate arm_per_objfile with new.
5343
b65b566c
PW
53442019-06-25 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5345
5346 * cli/cli-cmds.c (alias_command): Compare the alias prefix
5347 with the command prefix.
5348
c2fc64f5
TT
53492019-06-25 Tom Tromey <tom@tromey.com>
5350
5351 * tui/tui-wingeneral.c (tui_delete_win): Remove "return".
5352 * tui/tui-data.c (~tui_gen_win_info): Remove "if".
5353
fb54fa76
TT
53542019-06-25 Tom Tromey <tom@tromey.com>
5355
5356 * tui/tui-layout.c (init_and_make_win): Assert on unrecognized
5357 type.
5358 * tui/tui-data.h (struct tui_gen_win_info): Make constructor
5359 protected.
5360
f7952c57
TT
53612019-06-25 Tom Tromey <tom@tromey.com>
5362
5363 * tui/tui-winsource.c
5364 (tui_source_window_base::set_is_exec_point_at): Add check against
5365 LOA_ADDRESS.
5366
17568d78
TT
53672019-06-25 Tom Tromey <tom@tromey.com>
5368
5369 * tui/tui-source.c (tui_set_source_content): Don't check before
5370 xfree.
5371 * tui/tui-disasm.c (tui_disassemble): Don't check before xfree.
5372
53e7cdba
TT
53732019-06-25 Tom Tromey <tom@tromey.com>
5374
5375 * tui/tui-winsource.h (tui_update_source_window_as_is)
5376 (tui_alloc_source_buffer, tui_line_is_displayed)
5377 (tui_addr_is_displayed): Change type of win_info.
5378 * tui/tui-winsource.c (tui_update_source_window_as_is)
5379 (tui_clear_source_content, tui_show_source_line)
5380 (tui_show_source_content, tui_source_window_base::refill)
5381 (tui_source_window_base::set_is_exec_point_at)
5382 (tui_source_window_base::set_is_exec_point_at)
5383 (tui_update_breakpoint_info, tui_set_exec_info_content): Update.
5384 (tui_alloc_source_buffer, tui_line_is_displayed)
5385 (tui_addr_is_displayed): Change type of win_info. Update.
5386 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
5387 (tui_source_window_base::do_make_visible_with_new_height):
5388 Update.
5389 * tui/tui-source.c (tui_set_source_content)
5390 (tui_set_source_content_nil)
5391 (tui_source_window::do_scroll_vertical): Update.
5392 * tui/tui-layout.c (show_layout): Update.
5393 * tui/tui-disasm.c (tui_set_disassem_content)
5394 (tui_disasm_window::do_scroll_vertical): Update.
5395 * tui/tui-data.h (tui_win_content): Remove.
5396 (struct tui_gen_win_info) <content, content_size>: Remove.
5397 (struct tui_source_element): Add initializers and destructor.
5398 (union tui_which_element, struct tui_win_element): Remove.
5399 (struct tui_source_window_base) <content>: New field.
5400 (struct tui_data_window): Remove destructor.
5401 (tui_alloc_content, tui_free_win_content)
5402 (tui_free_all_source_wins_content): Don't declare.
5403 * tui/tui-data.c (tui_initialize_static_data): Update.
5404 (init_content_element, tui_alloc_content): Remove.
5405 (~tui_gen_win_info): Update.
5406 (~tui_data_window, tui_free_all_source_wins_content)
5407 (tui_free_win_content, free_content, free_content_elements):
5408 Remove.
5409
7908abbf
TT
54102019-06-25 Tom Tromey <tom@tromey.com>
5411
5412 * tui/tui-winsource.h (tui_clear_source_content)
5413 (tui_erase_source_content, tui_show_source_content): Change type
5414 of win_info.
5415 * tui/tui-winsource.c (tui_clear_source_content)
5416 (tui_erase_source_content, tui_show_source_content): Change type
5417 of win_info.
5418 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
5419 * tui/tui-source.h (tui_set_source_content_nil): Change type of
5420 win_info.
5421 * tui/tui-source.c (tui_set_source_content_nil): Change type of
5422 win_info.
5423 * tui/tui-layout.c (show_source_or_disasm_and_command): Update.
5424
02c28df0
TT
54252019-06-25 Tom Tromey <tom@tromey.com>
5426
5427 * tui/tui-winsource.c (tui_clear_source_content)
5428 (tui_source_window_base::set_is_exec_point_at): Update.
5429 * tui/tui-source.c (tui_set_source_content_nil): Update.
5430 * tui/tui-data.h (struct tui_source_element) <is_exec_point>: Now
5431 a bool.
5432 * tui/tui-data.c (init_content_element): Update.
5433
6658b1bf
TT
54342019-06-25 Tom Tromey <tom@tromey.com>
5435
5436 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Update.
5437 * tui/tui-win.c (make_invisible_and_set_new_height): Update.
5438 * tui/tui-layout.c (init_and_make_win): Update.
5439 * tui/tui.h (enum tui_win_type): Update.
5440 * tui/tui-data.h (tui_win_is_auxiliary): Rename from
5441 tui_win_is_auxillary.
5442 * tui/tui-data.c (tui_win_is_auxiliary): Rename from
5443 tui_win_is_auxillary.
5444
21e1c91e
TT
54452019-06-25 Tom Tromey <tom@tromey.com>
5446
5447 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Update.
5448 * tui/tui-windata.c (tui_data_window::first_data_item_displayed)
5449 (tui_delete_data_content_windows, tui_display_all_data)
5450 (tui_data_window::do_scroll_vertical, tui_display_data_from):
5451 Update.
5452 * tui/tui-win.c (tui_data_window::set_new_height): Simplify.
5453 * tui/tui-regs.c (tui_last_regs_line_no)
5454 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
5455 (tui_show_registers): Update.
5456 (tui_show_register_group): Return void. Update.
5457 (tui_display_registers_from, tui_display_reg_element_at_line)
5458 (tui_display_registers_from_line, tui_check_register_values):
5459 Update.
5460 * tui/tui-data.h (union tui_which_element) <data_window>: Remove
5461 member.
5462 (struct tui_data_window) <regs_content>: Now a std::vector.
5463 <regs_content_count>: Remove.
5464 (tui_add_content_elements, tui_free_data_content): Don't declare.
5465 * tui/tui-data.c (tui_data_window::clear_detail): Update.
5466 (init_content_element): Remove DATA_WIN case. Add assert.
5467 (tui_add_content_elements): Remove.
5468 (tui_data_window): Update.
5469 (tui_free_data_content): Remove.
5470 (free_content_elements): Remove DATA_WIN case.
5471
115ac53b
TT
54722019-06-25 Tom Tromey <tom@tromey.com>
5473
5474 * tui/tui-data.c (tui_data_item_window): Update.
5475 * tui/tui-windata.h (tui_check_data_values): Don't declare.
5476 * tui/tui-windata.c (tui_display_all_data)
5477 (tui_display_data_from_line): Update.
5478 (tui_check_data_values): Remove.
5479 * tui/tui-regs.c (tui_show_register_group)
5480 (tui_display_reg_element_at_line): Update.
5481 * tui/tui-hooks.c (tui_register_changed)
5482 (tui_refresh_frame_and_register_information): Call
5483 tui_check_register_values.
5484 * tui/tui-data.h (struct tui_data_window) <data_content,
5485 data_content_count, data_type>: Remove.
5486 (enum tui_data_type): Remove.
5487
5488 * tui/tui-data.c (tui_data_window::clear_detail)
5489 (~tui_data_window): Update.
5490
eaf9738b
TT
54912019-06-25 Tom Tromey <tom@tromey.com>
5492
5493 * tui/tui-windata.h (tui_first_data_item_displayed): Don't
5494 declare.
5495 * tui/tui-windata.c (tui_data_window::first_data_item_displayed):
5496 Rename from tui_first_data_item_displayed. Update.
5497 (tui_data_window::refresh_all)
5498 (tui_data_window::do_scroll_vertical): Update.
5499 * tui/tui-data.h (struct tui_data_window)
5500 <first_data_item_displayed>: Declare new method.
5501
31ca4723
TT
55022019-06-25 Tom Tromey <tom@tromey.com>
5503
5504 * tui/tui-data.h (tui_init_generic_part): Don't declare.
5505 * tui/tui-data.c (tui_init_generic_part): Remove, moving
5506 contents...
5507 (tui_initialize_static_data): ...here.
5508
41bcff7f
TT
55092019-06-25 Tom Tromey <tom@tromey.com>
5510
5511 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
5512 (tui_display_registers_from, tui_check_register_values): Update.
5513 (tui_display_register): Remove win_info parameter; update.
5514 (tui_get_register): Change type of parameters.
5515 * tui/tui-data.h (struct tui_data_element): Remove.
5516 (union tui_which_element) <data>: Remove.
5517 <data_window>: Change type.
5518 (struct tui_data_item_window): New.
5519 * tui/tui-data.c (init_content_element): Remove DATA_ITEM_WIN
5520 case. Add assert.
5521 (~tui_data_item_window): New destructor.
5522 (free_content_elements): Remove DATA_ITEM_WIN case.
5523
d2802c33
TT
55242019-06-25 Tom Tromey <tom@tromey.com>
5525
5526 * tui/tui.h (enum tui_win_type) <MAX_WINDOWS, UNDEFINED_WIN>:
5527 Remove.
5528
dd835f8b
TT
55292019-06-25 Tom Tromey <tom@tromey.com>
5530
5531 * tui/tui-data.h (struct tui_command_element): Remove.
5532 (union tui_which_element) <command>: Remove.
5533 * tui/tui-data.c (init_content_element): Remove CMD_WIN case. Add
5534 assert.
5535 (free_content_elements): Remove CMD_WIN case.
5536
bd7db367
TT
55372019-06-25 Tom Tromey <tom@tromey.com>
5538
5539 * tui/tui-layout.c (tui_set_layout): Update.
5540 * tui/tui-data.h (struct tui_layout_def) <split>: Remove.
5541 * tui/tui-data.c (layout_def): Update.
5542
3add462f
TT
55432019-06-25 Tom Tromey <tom@tromey.com>
5544
5545 * tui/tui-wingeneral.c (tui_refresh_all): Update.
5546 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
5547 (tui_source_window_base::set_new_height): Update.
5548 * tui/tui-stack.c (tui_make_status_line): Change parameter type.
5549 Update.
5550 (tui_set_locator_fullname, tui_set_locator_info)
5551 (tui_show_frame_info): Update.
5552 * tui/tui-source.c (tui_set_source_content)
5553 (tui_source_is_displayed): Update.
5554 * tui/tui-layout.c (show_source_disasm_command, show_data)
5555 (show_source_or_disasm_and_command): Update.
5556 * tui/tui-disasm.c (tui_set_disassem_content)
5557 (tui_get_begin_asm_address): Update.
5558 * tui/tui-data.h (struct tui_locator_element): Remove.
5559 (union tui_which_element) <locator>: Remove.
5560 (struct tui_locator_window): New.
5561 (tui_locator_win_info_ptr): Change return type.
5562 * tui/tui-data.c (_locator): Change type.
5563 (tui_locator_win_info_ptr): Change return type.
5564 (init_content_element): Remove LOCATOR_WIN case. Add assert.
5565 (tui_alloc_content): Add assert.
5566
489e9d8b
TT
55672019-06-25 Tom Tromey <tom@tromey.com>
5568
5569 * tui/tui-winsource.c
5570 (tui_exec_info_window::maybe_allocate_content): New method.
5571 (tui_set_exec_info_content, tui_show_exec_info_content): Update.
5572 * tui/tui-layout.c (init_and_make_win): Add EXEC_INFO_WIN case.
5573 (make_source_or_disasm_window): Add cast.
5574 * tui/tui-data.h (union tui_which_element) <simple_string>:
5575 Remove.
5576 (struct tui_source_info): New.
5577 (struct tui_source_window_base) <execution_info>: Change type.
5578 * tui/tui-data.c (init_content_element): Remove EXEC_INFO_WIN
5579 case, and add assert.
5580 (tui_alloc_content): Add assert.
5581
c3fabb7d
TT
55822019-06-25 Tom Tromey <tom@tromey.com>
5583
5584 * tui/tui-data.h (tui_alloc_win_info): Don't declare.
5585 * tui/tui-layout.c (init_and_make_win): Use "new" directly.
5586 * tui/tui-data.c (tui_alloc_win_info): Remove.
5587
bbc228ee
TT
55882019-06-25 Tom Tromey <tom@tromey.com>
5589
5590 * tui/tui-win.c (tui_set_win_focus_to): Don't check window type.
5591 * tui/tui-wingeneral.c (tui_unhighlight_win): Check
5592 can_highlight.
5593
5fcee43a
TT
55942019-06-25 Tom Tromey <tom@tromey.com>
5595
5596 * tui/tui-win.c (tui_source_window_base::update_tab_width): Call
5597 make_visible_with_new_height method.
5598 (tui_win_info::make_visible_with_new_height): New method.
5599 (tui_source_window_base::do_make_visible_with_new_height)
5600 (tui_data_window::do_make_visible_with_new_height)
5601 (tui_cmd_window::do_make_visible_with_new_height): New methods.
5602 (make_visible_with_new_height): Remove.
5603 (tui_resize_all, tui_adjust_win_heights): Use
5604 make_visible_with_new_height method.
5605 * tui/tui-data.h (struct tui_win_info)
5606 <do_make_visible_with_new_height, make_visible_with_new_height>:
5607 New methods.
5608 (struct tui_source_window_base, struct tui_data_window)
5609 (struct tui_cmd_window) <do_make_visible_with_new_height>: New
5610 methods.
5611
d83f1fe6
TT
56122019-06-25 Tom Tromey <tom@tromey.com>
5613
5614 * tui/tui-win.c (tui_source_window_base::update_tab_width): New
5615 method.
5616 (update_tab_width): Call update_tab_width method.
5617 * tui/tui-data.h (struct tui_win_info)
5618 (struct tui_source_window_base) <update_tab_width>: New methods.
5619
17374de4
TT
56202019-06-25 Tom Tromey <tom@tromey.com>
5621
5622 * tui/tui-wingeneral.h (tui_make_window): Change type of "box_it"
5623 parameter.
5624 * tui/tui-wingeneral.c (tui_make_window): Change type of "box_it"
5625 parameter.
5626 (tui_gen_win_info::make_visible): Update.
5627 * tui/tui-layout.c (init_and_make_win): Change type of "box_it"
5628 parameter.
5629 * tui/tui-data.h (enum tui_box): New enum.
5630 (BOX_WINDOW, DONT_BOX_WINDOW): Remove defines.
5631
f936bca2
TT
56322019-06-25 Tom Tromey <tom@tromey.com>
5633
5634 * tui/tui-layout.c (make_source_or_disasm_window): Always use
5635 init_and_make_win for EXEC_INFO_WIN.
5636 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>: No
5637 longer inline.
5638 (struct tui_win_info) <~tui_win_info>: Inline.
5639 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
5640 Don't declare.
5641 * tui/tui-data.c (source_win, disasm_win): Remove globals.
5642 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
5643 Remove.
5644 (tui_initialize_static_data): Update.
5645 (~tui_gen_win_info): Handle more cleanup here.
5646 (~tui_source_window_base): Delete "execution_info".
5647 (~tui_win_info): Move code to ~tui_gen_win_info; remove.
5648
d6ba6a11
TT
56492019-06-25 Tom Tromey <tom@tromey.com>
5650
5651 * tui/tui-layout.c (make_command_window): Don't set
5652 can_highlight.
5653 (show_source_disasm_command): Call the reset method.
5654 (show_data): Don't set can_highlight. Call the reset method.
5655 (tui_gen_win_info::reset): Rename from init_gen_win_info
5656 (init_and_make_win): Simplify. Return tui_gen_win_info.
5657 (show_source_or_disasm_and_command): Call the reset method.
5658 * tui/tui-data.h (struct tui_gen_win_info) <reset>: New method.
5659 (struct tui_cmd_window): Set can_highlight.
5660
48a3bd16
TT
56612019-06-25 Tom Tromey <tom@tromey.com>
5662
5663 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Rename
5664 from make_visible.
5665 (tui_make_visible, tui_make_invisible): Rewrite.
5666 (tui_win_info::make_visible): Remove.
5667 (tui_source_window_base::make_visible): Update.
5668 * tui/tui-data.h (struct tui_gen_win_info) <make_visible>: New
5669 method. Moved from...
5670 (struct tui_win_info) <make_visible>: ...here.
5671
c3bd716f
TT
56722019-06-25 Tom Tromey <tom@tromey.com>
5673
5674 * tui/tui-winsource.c
5675 (tui_source_window_base::do_scroll_horizontal): Remove direction
5676 parameter.
5677 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Remove
5678 direction parameter.
5679 * tui/tui-win.c (tui_win_info::forward_scroll)
5680 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
5681 (tui_win_info::right_scroll): Update.
5682 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Remove
5683 direction parameter.
5684 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Remove
5685 direction parameter.
5686 * tui/tui-data.h (enum tui_scroll_direction): Remove.
5687 (struct tui_win_info) <do_scroll_vertical, do_scroll_horizontal>:
5688 Remove direction parameter.
5689 (struct tui_source_window_base, struct tui_source_window)
5690 (struct tui_disasm_window, struct tui_data_window)
5691 (struct tui_cmd_window): Update.
5692
21c32dca
TT
56932019-06-25 Tom Tromey <tom@tromey.com>
5694
5695 * tui/tui-winsource.h (tui_set_exec_info_content)
5696 (tui_show_exec_info_content, tui_erase_exec_info_content)
5697 (tui_clear_exec_info_content, tui_update_exec_info): Change
5698 argument to tui_source_window_base.
5699 * tui/tui-winsource.c (tui_set_exec_info_content)
5700 (tui_show_exec_info_content, tui_erase_exec_info_content)
5701 (tui_clear_exec_info_content, tui_update_exec_info): Change
5702 argument to tui_source_window_base.
5703
73fbdc65
TT
57042019-06-25 Tom Tromey <tom@tromey.com>
5705
5706 * tui/tui-winsource.h (tui_set_exec_info_content): Return void.
5707 * tui/tui-winsource.c (tui_set_exec_info_content): Return void.
5708
33325343
TT
57092019-06-25 Tom Tromey <tom@tromey.com>
5710
5711 * tui/tui-winsource.c (tui_set_exec_info_content): Remove NULL
5712 check.
5713
29d2c474
TT
57142019-06-25 Tom Tromey <tom@tromey.com>
5715
5716 * tui/tui-winsource.h (tui_alloc_source_buffer): Change return
5717 type to void.
5718 * tui/tui-winsource.c (tui_alloc_source_buffer): Change return
5719 type to void.
5720 * tui/tui-source.c (tui_set_source_content): Update.
5721 * tui/tui-disasm.c (tui_set_disassem_content): Update.
5722
152f3f4b
TT
57232019-06-25 Tom Tromey <tom@tromey.com>
5724
5725 * tui/tui-win.c (window_name_completer, tui_set_focus)
5726 (tui_all_windows_info): Use name method.
5727 * tui/tui-data.h (struct tui_gen_win_info)
5728 (struct tui_source_window, struct tui_disasm_window)
5729 (struct tui_data_window, struct tui_cmd_window) <name>: New
5730 method.
5731 (tui_win_name): Don't declare.
5732 * tui/tui-data.c (tui_partial_win_by_name): Use name method.
5733 (tui_win_name): Remove.
5734
be4da588
TT
57352019-06-25 Tom Tromey <tom@tromey.com>
5736
5737 * tui/tui-winsource.h (tui_update_source_window)
5738 (tui_update_source_window_as_is): Change parameter type.
5739 * tui/tui-winsource.c (tui_update_source_window): Change win_info
5740 to be a tui_source_window_base.
5741 (tui_update_source_window_as_is): Likewise.
5742 * tui/tui-win.c (make_visible_with_new_height): Update.
5743
5b81daba
TT
57442019-06-25 Tom Tromey <tom@tromey.com>
5745
5746 * tui/tui-winsource.c (tui_erase_source_content)
5747 (tui_show_source_content, tui_show_exec_info_content)
5748 (tui_erase_exec_info_content): Use refresh_window method.
5749 * tui/tui-wingeneral.h (tui_refresh_win): Don't declare.
5750 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Rename
5751 from tui_refresh_win.
5752 (tui_data_window::refresh_window): New method.
5753 (tui_win_info::refresh, tui_source_window_base::refresh)
5754 (tui_refresh_all): Use refresh_window method.
5755 * tui/tui-stack.c (tui_show_locator_content): Call refresh_window
5756 method.
5757 * tui/tui-regs.c (tui_display_register): Call refresh_window
5758 method.
5759 * tui/tui-layout.c (show_source_disasm_command)
5760 (show_source_or_disasm_and_command): Call refresh_window method.
5761 * tui/tui-data.h (struct tui_gen_win_info)
5762 (struct tui_data_window, struct tui_cmd_window) <refresh_window>:
5763 New method.
5764
cb2ce893
TT
57652019-06-25 Tom Tromey <tom@tromey.com>
5766
5767 * tui/tui.c (tui_rl_other_window, tui_enable)
5768 (tui_is_window_visible, tui_get_command_dimension): Update.
5769 * tui/tui-winsource.c (tui_update_source_window_as_is)
5770 (tui_clear_source_content, tui_erase_source_content)
5771 (tui_show_source_line, tui_source_window_base::refill)
5772 (tui_source_window_base::do_scroll_horizontal)
5773 (tui_source_window_base::set_is_exec_point_at)
5774 (tui_update_breakpoint_info, tui_set_exec_info_content)
5775 (tui_alloc_source_buffer, tui_line_is_displayed)
5776 (tui_addr_is_displayed): Update.
5777 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
5778 (tui_check_and_display_highlight_if_needed)
5779 (tui_win_info::make_visible, tui_win_info::refresh)
5780 (tui_refresh_all): Update.
5781 * tui/tui-windata.c (tui_first_data_item_displayed)
5782 (tui_delete_data_content_windows, tui_erase_data_content)
5783 (tui_display_all_data, tui_data_window::refresh_all)
5784 (tui_check_data_values): Update.
5785 * tui/tui-win.c (window_name_completer, tui_update_gdb_sizes)
5786 (tui_set_win_focus_to, tui_win_info::forward_scroll)
5787 (tui_win_info::backward_scroll, tui_refresh_all_win)
5788 (tui_resize_all, tui_set_focus, tui_all_windows_info)
5789 (update_tab_width, tui_set_win_height, tui_adjust_win_heights)
5790 (tui_source_window_base::set_new_height)
5791 (tui_data_window::set_new_height)
5792 (make_invisible_and_set_new_height)
5793 (make_visible_with_new_height, new_height_ok)
5794 (parse_scrolling_args): Update.
5795 * tui/tui-stack.c (tui_show_frame_info): Update.
5796 * tui/tui-source.c (tui_set_source_content)
5797 (tui_set_source_content_nil, tui_source_is_displayed)
5798 (tui_source_window::do_scroll_vertical): Update.
5799 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
5800 (tui_display_registers_from, tui_display_reg_element_at_line)
5801 (tui_check_register_values, tui_reg_command): Update.
5802 * tui/tui-layout.c (tui_default_win_height)
5803 (show_source_disasm_command, show_data, init_and_make_win)
5804 (show_source_or_disasm_and_command): Update.
5805 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
5806 (tui_redisplay_readline, tui_mld_flush)
5807 (tui_mld_erase_entire_line, tui_mld_getc, tui_cont_sig)
5808 (tui_getc): Update.
5809 * tui/tui-disasm.c (tui_set_disassem_content)
5810 (tui_disasm_window::do_scroll_vertical): Update.
5811 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>:
5812 Now virtual.
5813 (struct tui_win_info): Derive from tui_gen_win_info.
5814 <~tui_win_info>: Mark as override.
5815 <generic>: Remove member.
5816 * tui/tui-data.c (tui_cmd_window::clear_detail, tui_next_win)
5817 (tui_prev_win, tui_partial_win_by_name, tui_win_info)
5818 (~tui_data_window, ~tui_win_info)
5819 (tui_free_all_source_wins_content): Update.
5820 * tui/tui-command.c (tui_refresh_cmd_win): Update.
5821
ab313b35
TT
58222019-06-25 Tom Tromey <tom@tromey.com>
5823
5824 * tui/tui-layout.c (init_and_make_win): Use new.
5825 * tui/tui-data.h (struct tui_gen_win_info): Add constructor,
5826 destructor, initializers.
5827 (tui_alloc_generic_win_info): Don't declare.
5828 * tui/tui-data.c (_locator): Add argument to constructor.
5829 (source_win, disasm_win): New globals.
5830 (exec_info): Remove.
5831 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
5832 Update.
5833 (tui_alloc_generic_win_info): Remove.
5834 (init_content_element): Use new.
5835 (tui_win_info::tui_win_info): Update.
5836 (free_content_elements) <case DATA_WIN>: Use delete.
5837
dc2c33e4
TT
58382019-06-25 Tom Tromey <tom@tromey.com>
5839
5840 * tui/tui-wingeneral.c (tui_refresh_win): Update.
5841 * tui/tui-windata.c (tui_first_data_item_displayed)
5842 (tui_delete_data_content_windows): Update.
5843 * tui/tui-win.c (tui_data_window::set_new_height): Update.
5844 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
5845 (tui_display_registers_from, tui_check_register_values): Update.
5846 * tui/tui-data.h (union tui_which_element) <data_window>: Now a
5847 pointer.
5848 * tui/tui-data.c (init_content_element): Update. Allocate the new
5849 window.
5850 (tui_free_data_content): Update.
5851 (free_content_elements) <case DATA_WIN>: Free the window.
5852
214a5cbe
TT
58532019-06-25 Tom Tromey <tom@tromey.com>
5854
5855 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win):
5856 Update.
5857 * tui/tui-layout.c (make_command_window)
5858 (show_source_disasm_command, show_data, init_and_make_win)
5859 (show_source_or_disasm_and_command): Update.
5860 * tui/tui-data.h (struct tui_win_info) <set_highlight>: New
5861 method.
5862 <can_highight, is_highlighted>: Now bool.
5863 (tui_set_win_highlight): Don't declare.
5864 * tui/tui-data.c (tui_set_win_highlight): Remove.
5865
8e2daf15
TT
58662019-06-25 Tom Tromey <tom@tromey.com>
5867
5868 * tui/tui-wingeneral.c (make_visible): Remove check of window
5869 type.
5870
8903bd8a
TT
58712019-06-25 Tom Tromey <tom@tromey.com>
5872
5873 * tui/tui-win.c (tui_win_info::max_height)
5874 (tui_cmd_window::max_height): New methods.
5875 (new_height_ok): Call max_height.
5876 * tui/tui-data.h (struct tui_win_info, struct tui_cmd_window)
5877 <max_height>: New method.
5878
3f02ce1e
TT
58792019-06-25 Tom Tromey <tom@tromey.com>
5880
5881 * tui/tui-win.c (tui_source_window_base::set_new_height)
5882 (tui_data_window::set_new_height): New methods.
5883 (make_invisible_and_set_new_height): Call set_new_height method.
5884 * tui/tui-data.h (struct tui_win_info)
5885 (struct tui_source_window_base, struct tui_data_window)
5886 <set_new_height>: New method.
5887
1825f487
TT
58882019-06-25 Tom Tromey <tom@tromey.com>
5889
5890 * tui/tui.c (tui_rl_other_window): Call the refresh_all method.
5891 * tui/tui-windata.c (tui_data_window::refresh_all): Rename from
5892 tui_refresh_data_win.
5893 * tui/tui-win.c (tui_source_window_base::refresh_all): New
5894 method.
5895 (tui_refresh_all_win): Call the refresh_all method.
5896 (tui_set_focus): Likewise.
5897 * tui/tui-data.h (struct tui_win_info) <refresh_all>: New method.
5898 (struct tui_source_window_base, struct tui_data_window) <refresh>:
5899 Likewise.
5900
ad54d15b
TT
59012019-06-25 Tom Tromey <tom@tromey.com>
5902
5903 * tui/tui-winsource.h (tui_refill_source_window)
5904 (tui_set_is_exec_point_at): Don't declare.
5905 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
5906 (tui_source_window_base::refill): Rename from
5907 tui_refill_source_window.
5908 (tui_source_window_base::do_scroll_horizontal): Update.
5909 (tui_source_window_base::set_is_exec_point_at): Rename from
5910 tui_set_is_exec_point_at.
5911 (tui_update_all_breakpoint_info): Update.
5912 * tui/tui-stack.c (tui_show_frame_info): Update.
5913 * tui/tui-layout.c (show_data): Add cast.
5914 * tui/tui-hooks.c (tui_redisplay_source): Call refill method.
5915 * tui/tui-data.h (struct tui_source_window_base) <refill,
5916 set_is_exec_point_at>: New methods.
5917 (tui_source_windows, tui_add_to_source_windows): Update types.
5918 (tui_add_to_source_windows): Remove redundant declaration.
5919 * tui/tui-data.c (source_windows): Store tui_source_window_base.
5920 (tui_source_windows): Change return type.
5921 (tui_clear_source_windows_detail): Update.
5922 (tui_add_to_source_windows): Change type of parameter.
5923 (tui_free_all_source_wins_content): Update.
5924
2042b506
TT
59252019-06-25 Tom Tromey <tom@tromey.com>
5926
5927 * tui/tui-wingeneral.c (tui_win_info::refresh)
5928 (tui_source_window_base::refresh): New methods.
5929 (tui_refresh_all): Call the refresh method.
5930 * tui/tui-data.h (struct tui_win_info)
5931 (struct tui_source_window_base) <refresh>: New method.
5932
56122977
TT
59332019-06-25 Tom Tromey <tom@tromey.com>
5934
5935 * tui/tui.h (tui_is_window_visible): Return bool.
5936 * tui/tui.c (tui_is_window_visible): Return bool.
5937 * tui/tui-wingeneral.c (tui_make_window, make_visible)
5938 (tui_make_visible, tui_make_invisible)
5939 (tui_win_info::make_visible)
5940 (tui_source_window_base::make_visible, make_all_visible)
5941 (tui_make_all_visible, tui_make_all_invisible): Update.
5942 * tui/tui-windata.c (tui_delete_data_content_windows): Update.
5943 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: Now
5944 bool.
5945 (struct tui_win_info, struct tui_source_window_base)
5946 (struct tui_cmd_window) <make_visible>: Change parameter to bool.
5947 * tui/tui-data.c (tui_init_generic_part): Update.
5948
cda37efb
TT
59492019-06-25 Tom Tromey <tom@tromey.com>
5950
5951 * tui/tui-wingeneral.c (tui_win_info::make_visible)
5952 (tui_source_window_base::make_visible): New methods.
5953 (make_all_visible): Make method call.
5954 * tui/tui-data.h (struct tui_win_info) <make_visible>: New method.
5955 (struct tui_source_window_base, struct tui_cmd_window): Override
5956 make_visible.
5957 (tui_win_is_source_type): Don't declare.
5958 * tui/tui-data.c (tui_win_is_source_type): Remove.
5959
6a0ee02c
TT
59602019-06-25 Tom Tromey <tom@tromey.com>
5961
5962 * tui/tui-layout.c (show_source_or_disasm_and_command): Remove
5963 NULL check.
5964
63901aec
TT
59652019-06-25 Tom Tromey <tom@tromey.com>
5966
5967 * tui/tui-data.h (struct tui_data_window, struct tui_cmd_window):
5968 Inline constructor. Add initializers for members.
5969 * tui/tui-data.c (tui_data_window, tui_cmd_window): Remove
5970 constructors; now inline in class.
5971
ceb13a13
TT
59722019-06-25 Tom Tromey <tom@tromey.com>
5973
5974 * tui/tui-regs.c (tui_show_registers): Update.
5975 * tui/tui-data.h (struct tui_data_window) <display_regs>: Now
5976 bool.
5977 * tui/tui-data.c (tui_data_window::clear_detail)
5978 (tui_data_window): Update.
5979
238eb706
TT
59802019-06-25 Tom Tromey <tom@tromey.com>
5981
5982 * tui/tui-windata.c (tui_display_all_data)
5983 (tui_display_data_from_line, tui_display_data_from)
5984 (tui_check_data_values, tui_data_window::do_scroll_vertical):
5985 Update.
5986 * tui/tui-regs.c (tui_last_regs_line_no)
5987 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
5988 (tui_show_registers, tui_show_register_group)
5989 (tui_display_registers_from, tui_display_reg_element_at_line)
5990 (tui_display_registers_from_line, tui_check_register_values)
5991 (tui_reg_next, tui_reg_prev): Update.
5992 * tui/tui-layout.c (tui_set_layout, show_data): Update.
5993 * tui/tui-data.h (struct tui_data_info): Remove. Move contents to
5994 tui_data_window.
5995 (struct tui_win_info) <detail>: Remove. Add new fields from
5996 tui_data_info.
5997 (TUI_DATA_WIN): Add cast.
5998 * tui/tui-data.c (tui_data_window::clear_detail, tui_data_window)
5999 (~tui_data_window): Simplify.
6000
81491aa0
TT
60012019-06-25 Tom Tromey <tom@tromey.com>
6002
6003 * tui/tui-layout.c (show_source_disasm_command)
6004 (show_source_or_disasm_and_command): Update.
6005 * tui/tui-io.c (update_cmdwin_start_line)
6006 (tui_redisplay_readline): Update.
6007 * tui/tui-data.h (struct tui_command_info): Remove.
6008 (struct tui_win_info) <detail>: Remove command_info member.
6009 (struct tui_data_window) <start_line>: New member, from
6010 tui_command_info.
6011 (TUI_CMD_WIN): Add casts.
6012
e6e41501
TT
60132019-06-25 Tom Tromey <tom@tromey.com>
6014
6015 * tui/tui-winsource.c (tui_update_source_window)
6016 (tui_refill_source_window)
6017 (tui_source_window_base::do_scroll_horizontal)
6018 (tui_update_breakpoint_info, tui_set_exec_info_content)
6019 (tui_show_exec_info_content, tui_erase_exec_info_content)
6020 (tui_clear_exec_info_content): Update.
6021 * tui/tui-wingeneral.c (make_all_visible, tui_refresh_all):
6022 Update.
6023 * tui/tui-win.c (make_invisible_and_set_new_height)
6024 (make_visible_with_new_height): Update.
6025 * tui/tui-source.c (tui_set_source_content)
6026 (tui_show_symtab_source): Update.
6027 * tui/tui-layout.c (extract_display_start_addr)
6028 (show_source_disasm_command, show_data)
6029 (make_source_or_disasm_window)
6030 (show_source_or_disasm_and_command): Update.
6031 * tui/tui-disasm.c (tui_set_disassem_content): Simplify.
6032 (tui_disasm_window::do_scroll_vertical): Remove shadowing
6033 "gdbarch".
6034 * tui/tui-data.h (struct tui_source_info): Remove. Move contents
6035 to tui_source_window_base.
6036 (struct tui_win_info) <detail>: Remove source_info member.
6037 (struct tui_source_window_base) <has_locator>: Inline.
6038 Move contents from tui_source_info; rename has_locator member to
6039 m_has_locator.
6040 (TUI_SRC_WIN, TUI_DISASM_WIN): Add casts.
6041 * tui/tui-data.c (tui_source_window_base::has_locator): Move to
6042 header file.
6043 (tui_source_window_base::clear_detail, ~tui_source_window_base):
6044 Simplify.
6045 (tui_free_all_source_wins_content): Cast to
6046 tui_source_window_base.
6047
44f0e208
TT
60482019-06-25 Tom Tromey <tom@tromey.com>
6049
6050 * tui/tui-win.c (make_invisible_and_set_new_height)
6051 (make_visible_with_new_height): Call has_locator method.
6052 * tui/tui-layout.c (show_source_disasm_command, show_data)
6053 (show_source_or_disasm_and_command): Update for bool change.
6054 * tui/tui-data.h (struct tui_source_info) <has_locator>: Now bool.
6055 (tui_win_info) <has_locator>: New method.
6056 (struct tui_source_window_base) <has_locator>: New method.
6057 (tui_win_has_locator): Don't declare.
6058 * tui/tui-data.c (tui_source_window_base::has_locator): Rename
6059 from tui_win_has_locator.
6060 (tui_source_window_base): Use false, not FALSE.
6061
7778b912
TT
60622019-06-25 Tom Tromey <tom@tromey.com>
6063
6064 * tui/tui-data.h (tui_clear_win_detail): Don't declare.
6065 * tui/tui-data.c (tui_clear_source_windows_detail): Call the
6066 clear_detail method directly.
6067 (tui_clear_win_detail): Remove.
6068
f83d391c
TT
60692019-06-25 Tom Tromey <tom@tromey.com>
6070
6071 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Use
6072 "this", not TUI_DISASM_WIN.
6073
13446e05
TT
60742019-06-25 Tom Tromey <tom@tromey.com>
6075
6076 * tui/tui-winsource.h (tui_horizontal_source_scroll): Don't
6077 declare.
6078 * tui/tui-winsource.c
6079 (tui_source_window_base::do_scroll_horizontal): Rename from
6080 tui_horizontal_source_scroll.
6081 * tui/tui-windata.h (tui_vertical_data_scroll): Don't declare.
6082 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Rename
6083 from tui_vertical_data_scroll.
6084 * tui/tui-win.h (tui_scroll): Don't declare.
6085 * tui/tui-win.c (tui_win_info::forward_scroll)
6086 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
6087 (tui_win_info::right_scroll): Rename and update.
6088 (tui_scroll_forward_command, tui_scroll_backward_command)
6089 (tui_scroll_left_command, tui_scroll_right_command): Update.
6090 (tui_scroll): Remove.
6091 * tui/tui-source.h: Don't declare tui_vertical_source_scroll.
6092 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Rename
6093 from tui_vertical_source_scroll.
6094 * tui/tui-disasm.h (tui_vertical_disassem_scroll): Don't declare.
6095 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Rename
6096 from tui_vertical_disassem_scroll.
6097 * tui/tui-data.h (struct tui_win_info) <do_scroll_vertical,
6098 do_scroll_horizontal>: New methods.
6099 <forward_scroll, backward_scroll, left_scroll, right_scroll>:
6100 Likewise.
6101 (struct tui_source_window_base): Add do_scroll_horizontal.
6102 (struct tui_source_window, struct tui_disasm_window): Add
6103 do_scroll_vertical.
6104 (struct tui_data_window, struct tui_cmd_window): Add
6105 do_scroll_horizontal and do_scroll_vertical.
6106 * tui/tui-command.c (tui_dispatch_ctrl_char): Use method calls.
6107
5cf82909
TT
61082019-06-25 Tom Tromey <tom@tromey.com>
6109
6110 * tui/tui-data.h (struct tui_source_window_base): New struct.
6111 (struct tui_source_window): Derive from tui_source_window_base.
6112 (struct tui_disasm_window): New struct.
6113 * tui/tui-data.c (tui_source_window_base::clear_detail): Rename
6114 from tui_source_window::clear_detail.
6115 (tui_source_window_base): Rename from tui_source_window.
6116 (~tui_source_window_base): Rename from ~tui_source_window.
6117 (tui_alloc_win_info): Create a tui_disasm_window.
6118
ee1d42d6
TT
61192019-06-25 Tom Tromey <tom@tromey.com>
6120
6121 * tui/tui-data.h (struct tui_source_window)
6122 (struct tui_data_window): Declare destructors.
6123 * tui/tui-data.c (~tui_source_window, ~tui_data_window): New
6124 destructors.
6125 (tui_win_info): Simplify.
6126
b4eb2452
TT
61272019-06-25 Tom Tromey <tom@tromey.com>
6128
6129 * tui/tui-winsource.c (tui_display_main)
6130 (tui_update_source_windows_with_addr)
6131 (tui_update_all_breakpoint_info): Update.
6132 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
6133 (new_height_ok, parse_scrolling_args): Update.
6134 * tui/tui-stack.c (tui_show_frame_info): Update.
6135 * tui/tui-data.h (struct tui_list): Remove.
6136 (tui_source_windows): Return a reference to a std::vector.
6137 * tui/tui-data.c (source_windows): Now a std::vector.
6138 (tui_source_windows): Change return type.
6139 (tui_clear_source_windows): Rewrite.
6140 (tui_clear_source_windows_detail, tui_add_to_source_windows)
6141 (tui_free_all_source_wins_content): Rewrite.
6142
8761a91b
TT
61432019-06-25 Tom Tromey <tom@tromey.com>
6144
6145 * tui/tui-data.h (struct tui_win_info, struct tui_source_window)
6146 (struct tui_data_window, struct tui_cmd_window): Declare
6147 clear_detail method.
6148 * tui/tui-data.c (tui_source_window::clear_detail)
6149 (tui_cmd_window::clear_detail, tui_data_window::clear_detail): New
6150 methods.
6151 (tui_clear_win_detail): Simplify.
6152
0ed69eda
TT
61532019-06-25 Tom Tromey <tom@tromey.com>
6154
6155 * tui/tui-layout.c (make_source_window, make_disasm_window)
6156 (make_source_or_disasm_window): Remove win_info_ptr parameter.
6157 Return the new window.
6158 (show_source_disasm_command, show_data)
6159 (show_source_or_disasm_and_command): Update.
6160
82432e10
TT
61612019-06-25 Tom Tromey <tom@tromey.com>
6162
6163 * tui/tui-layout.c (make_command_window): Remove win_info_ptr
6164 parameter. Return the new window.
6165 (show_source_disasm_command): Update and remove NULL check.
6166 (show_source_or_disasm_and_command): Update.
6167
ec328aa5
TT
61682019-06-25 Tom Tromey <tom@tromey.com>
6169
6170 * tui/tui-layout.c (init_and_make_win): Remove NULL check.
6171
33b906ab
TT
61722019-06-25 Tom Tromey <tom@tromey.com>
6173
6174 * tui/tui-data.h (struct tui_win_info): Make constructor
6175 protected. Make destructor virtual. Add initializers.
6176 (tui_source_window, tui_data_window, tui_cmd_window): New
6177 classes.
6178 * tui/tui-data.c (tui_win_info): Rename from init_win_info. Now a
6179 constructor. Add "type" parameter.
6180 (tui_source_window, tui_data_window, tui_cmd_window): New
6181 constructors.
6182 (tui_alloc_win_info): Instantiate the appropriate subclass.
6183
e7e11af4
TT
61842019-06-25 Tom Tromey <tom@tromey.com>
6185
6186 * tui/tui-win.c (tui_resize_all): Use delete.
6187 * tui/tui-data.h (struct tui_win_info) <~tui_win_info>: Declare
6188 destructor.
6189 (tui_free_window): Don't declare.
6190 * tui/tui-data.c (~tui_win_info): Rename from tui_free_window.
6191 Update.
6192
6792b55e
TT
61932019-06-25 Tom Tromey <tom@tromey.com>
6194
6195 * tui/tui-data.h (struct tui_win_info): Add constructor.
6196 * tui/tui-data.c (tui_alloc_win_info): Use new.
6197 (tui_free_window): Use delete.
6198
f95675e1
TT
61992019-06-22 Tom Tromey <tom@tromey.com>
6200
6201 * tui/tui-windata.h (tui_first_data_element_no_in_line): Don't
6202 declare.
6203 * tui/tui-windata.c (tui_first_data_element_no_in_line): Remove.
6204
5bff081c
TT
62052019-06-22 Tom Tromey <tom@tromey.com>
6206
6207 * tui/tui-data.h (tui_del_window, tui_del_data_windows): Don't
6208 declare.
6209 * tui/tui-data.c (tui_del_window, tui_del_data_windows): Remove.
6210
47e3f474
TV
62112019-06-22 Tom de Vries <tdevries@suse.de>
6212
6213 * dwarf2read.c (create_addrmap_from_aranges)
6214 (read_debug_names_from_section): Print ptrdiff_t using '%s' and plongest
6215 instead of '%zu'.
6216
fd5866f6
SM
62172019-06-21 Simon Marchi <simon.marchi@efficios.com>
6218
6219 * dwarf2read.h (dwarf2_section_info_def): Remove.
6220 (DEF_VEC_O (dwarf2_section_info_def)): Remove.
6221 * dwarf2read.c (struct dwo_sections) <types>: Change type to
6222 std::vector<dwarf2_section_info>.
6223 (struct dwo_file) <~dwo_file>: Remove.
6224 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't manually free
6225 types field.
6226 (dwarf2_per_objfile::locate_sections): Adjust to std::vector.
6227 (dwarf2_read_debug_names): Likewise.
6228 (create_debug_types_hash_table): Change parameter type to
6229 array_view, adjust code accordingly.
6230 (dwarf2_locate_dwo_sections): Adjust to std::vector.
6231 (partial_die_info::fixup): Likewise.
6232 (determine_prefix): Likewise.
6233 * dwarf-index-write.c (write_psymtabs_to_index): Adjust.
6234
fb1eb2f9
SM
62352019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
6236
6237 * dwarf2read.c (struct dwo_file) <dbfd>: Change type to
6238 gdb_bfd_ref_ptr.
6239 <~dwo_file>: Remove call to gdb_bfd_unref.
6240 (open_and_init_dwo_file): Move gdb_bfd_ref_ptr into dbfd field. Call
6241 gdb_bfd_ref_ptr::get.
6242
51ac9db5
SM
62432019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
6244
6245 * dwarf2read.h (struct dwarf2_per_objfile) <dwo_files>: Change
6246 type to htab_up.
6247 * dwarf2read.c (struct dwo_file): Initialize fields.
6248 <~dwo_file>: New.
6249 (free_dwo_file): Remove, move content to ~dwo_file.
6250 (struct dwo_file_deleter): Remove.
6251 (dwo_file_up>: Remove custom deleter.
6252 (free_dwo_files): Remove.
6253 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't explicitly free
6254 dwo_files.
6255 (process_skeletonless_type_units): Call unique_ptr::get.
6256 (allocate_dwo_file_hash_table): Add deleter to created hash
6257 table. Change return type to htab_up.
6258 (lookup_dwo_file_slot): Don't memset dwo_file, call
6259 unique_ptr::get.
6260 (create_dwo_unit_in_dwp_v1): Allocate dwo_file with new.
6261 (create_dwo_unit_in_dwp_v2): Likewise.
6262 (open_and_init_dwo_file): Likewise.
6263 (free_dwo_file_from_slot): Remove.
6264
dc4ccb6f
SM
62652019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
6266
6267 * dwarf2read.h (struct dwarf2_section_info) <readin,
6268 is_virtual>: Change type to bool.
6269 * dwarf2read.c (dwarf2_read_section, create_dwp_v2_section): Use
6270 true instead of 1.
6271
e6a1c5cb
TT
62722019-06-19 Tom Tromey <tom@tromey.com>
6273
6274 * tui/tui-data.h (tui_init_content_element): Don't declare.
6275
6f6ffbeb
TT
62762019-06-19 Tom Tromey <tom@tromey.com>
6277
6278 * tui/tui-data.h (tui_init_win_info): Don't declare.
6279
f23f598e
TV
62802019-06-19 Tom de Vries <tdevries@suse.de>
6281
6282 * dwarf2read.h (abstract_to_concrete): Change type to
6283 std::unordered_map<sect_offset, std::vector<sect_offset>,
6284 gdb::hash_enum<sect_offset>>.
6285
680e1bee
TT
62862019-06-19 Tom Tromey <tromey@adacore.com>
6287
6288 * ada-lang.c (ada_evaluate_subexp) <case OP_ATR_FIRST>: Handle
6289 EVAL_AVOID_SIDE_EFFECTS specially.
6290
dcf37923
TT
62912019-06-19 Tom Tromey <tromey@adacore.com>
6292
6293 * source-cache.c (highlighter): New global.
6294 (source_cache::get_source_lines): Create a highlighter on demand.
6295
494986d5
AB
62962019-06-18 Andrew Burgess <andrew.burgess@embecosm.com>
6297
6298 * defs.h (deprecated_interactive_hook): Delete declaration.
6299 * interps.c (clear_interpreter_hooks): Remove use of
6300 deprecated_interactive_hook.
6301 * top.c (deprecated_interactive_hook): Delete definition.
6302 * utils.c (maybe_quit): Remove use of deprecated_interactive_hook.
6303
3360b6e7
TV
63042019-06-18 Tom de Vries <tdevries@suse.de>
6305
6306 PR gdb/24515
6307 * dwarf2read.h (abstract_to_concrete): Change type from
6308 std::unordered_map<die_info_ptr, std::vector<die_info_ptr>> to
6309 std::unordered_map<sect_offset, std::vector<sect_offset>>.
6310 * dwarf2read.c (read_variable): Update.
6311 (dwarf2_fetch_die_loc_sect_off): Update.
6312
310b3441
TV
63132019-06-17 Tom de Vries <tdevries@suse.de>
6314
6315 PR gdb/24617
6316 * common/pathstuff.c (child_path): Make sure parent_len > 0 before
6317 accessing parent[parent_len - 1].
6318
ba9777be
PP
63192019-06-17 Paul Pluzhnikov <ppluzhnikov@google.com>
6320
6321 PR gdb/24364
6322 * gdb/dtrace-probe.c (dtrace_static_probe_ops::get_probe): Don't
6323 call dtrace_process_dof with NULL dof.
6324
2b9f6e89
TV
63252019-06-16 Tom de Vries <tdevries@suse.de>
6326
6327 PR gdb/24445
6328 * contrib/gdb-add-index.sh: Update to handle dwz-m-ed executable.
6329
431b3ead
TT
63302019-06-16 Tom Tromey <tom@tromey.com>
6331
6332 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
6333 (make_all_visible): Use address of member.
6334
d04b44a1
TT
63352019-06-16 Tom Tromey <tom@tromey.com>
6336
6337 * tui/tui-data.c (tui_clear_win_detail, init_win_info)
6338 (tui_free_window, free_content, free_content_elements): Remove
6339 unnecessary cast.
6340 * tui/tui-windata.c (tui_display_all_data): Remove unnecessary
6341 cast.
6342 * tui/tui-regs.c (tui_show_register_group)
6343 (tui_display_registers_from, tui_display_reg_element_at_line):
6344 Remove unnecessary cast.
6345
bf5142e7
AB
63462019-06-16 Andrew Burgess <andrew.burgess@embecosm.com>
6347
6348 * linux-nat.c (normal_mask): Delete.
6349 (_initialize_linux_nat): Don't initialise normal_mask.
6350
c4973306
SM
63512019-06-16 Simon Marchi <simon.marchi@polymtl.ca>
6352
6353 PR gdb/24445
6354 * dwarf-index-write.h (write_psymtabs_to_index): Add
6355 dwz_basename parameter.
6356 * dwarf-index-write.c (write_gdbindex): Move file writing to
6357 write_gdbindex_1. Change return type void.
6358 (assert_file_size): Move up, remove filename parameter.
6359 (write_gdbindex_1): New function.
6360 (write_debug_names): Change return type to void, call
6361 assert_file_size.
6362 (struct index_wip_file): New struct.
6363 (write_psymtabs_to_index): Add dwz_basename parameter. Move
6364 file logic to index_wip_file. Write index for dwz file if
6365 needed.
6366 (save_gdb_index_command): Pass basename of dwz file, if present.
6367 * dwarf-index-cache.c (index_cache::store): Obtain and pass
6368 build-id of dwz file, if present.
6369 * dwarf2read.c (struct dwz_file): Move to dwarf2read.h.
6370 (dwarf2_get_dwz_file): Likewise.
6371 * dwarf2read.h (struct dwz_file): Move from dwarf2read.c.
6372 (dwarf2_get_dwz_file): Likewise.
6373
395f9c91
TT
63742019-06-16 Tom Tromey <tom@tromey.com>
6375
6376 * coffread.c (process_coff_symbol): Use xstrdup.
6377 * value.c (create_internalvar): Use xstrdup.
6378
cafb3438
TT
63792019-06-16 Tom Tromey <tom@tromey.com>
6380
6381 * valops.c (value_cast, value_slice): Remove unnecessary cast.
6382 * breakpoint.c (stopin_command, stopat_command)
6383 (until_break_command, decode_location_default): Remove unnecessary
6384 cast.
6385 * utils.c (subset_compare): Remove unnecessary cast.
6386 * ada-lang.c (ada_update_initial_language): Remove unnecessary
6387 cast.
6388 * linespec.c (decode_line_with_last_displayed): Remove unnecessary
6389 cast.
6390 * infcmd.c (path_command): Remove unnecessary cast.
6391 * coffread.c (decode_type): Remove unnecessary cast.
6392 * xcoffread.c (read_xcoff_symtab): Remove unnecessary cast.
6393 * mipsread.c (mipscoff_symfile_read): Remove unnecessary cast.
6394 * tui/tui-stack.c (tui_show_locator_content)
6395 (tui_show_frame_info): Remove unnecessary cast.
6396 * tui/tui-win.c (tui_scroll_forward_command)
6397 (tui_scroll_backward_command, tui_set_focus, tui_set_win_height)
6398 (parse_scrolling_args): Remove unnecessary cast.
6399 * tui/tui-data.c (init_win_info, tui_del_window)
6400 (tui_free_window, tui_del_data_windows, tui_free_data_content)
6401 (free_content_elements): Remove unnecessary cast.
6402 * tui/tui-windata.c (tui_first_data_item_displayed): Remove
6403 unnecessary cast.
6404 * tui/tui-source.c (tui_set_source_content)
6405 (tui_vertical_source_scroll): Remove unnecessary cast.
6406 * tui/tui-layout.c (tui_default_win_height): Remove unnecessary
6407 cast.
6408 * tui/tui-io.c (tui_initialize_io): Remove unnecessary cast.
6409 * tui/tui-regs.c (tui_display_registers_from)
6410 (tui_display_register): Remove unnecessary cast.
6411 * tui/tui-wingeneral.c (tui_refresh_win, tui_delete_win)
6412 (tui_unhighlight_win, tui_highlight_win, tui_make_window)
6413 (make_visible): Remove unnecessary cast.
6414 * tui/tui-winsource.c (tui_erase_source_content)
6415 (tui_update_breakpoint_info, tui_set_exec_info_content): Remove
6416 unnecessary cast.
6417 * ax-gdb.c (agent_command_1): Remove unnecessary cast.
6418 * cli/cli-setshow.c (cmd_show_list): Remove unnecessary cast.
6419 * stabsread.c (read_type, read_array_type, read_range_type):
6420 Remove unnecessary cast.
6421 * mdebugread.c (mdebug_build_psymtabs): Remove unnecessary cast.
6422 (parse_symbol, parse_type, upgrade_type, parse_external)
6423 (parse_partial_symbols, psymtab_to_symtab_1, cross_ref): Remove
6424 unnecessary cast.
6425 * gdb_bfd.c (gdb_bfd_map_section): Remove unnecessary cast.
6426
730ead81
TT
64272019-06-16 Tom Tromey <tom@tromey.com>
6428
6429 * tui/tui-data.c (tui_alloc_generic_win_info)
6430 (tui_alloc_win_info, tui_add_content_elements): Remove NULL
6431 checks.
6432
584a927c
AB
64332019-06-16 Bernhard Heckel <bernhard.heckel@intel.com>
6434 Andrew Burgess <andrew.burgess@embecosm.com>
6435
6436 * f-typeprint.c (f_print_type): Don't return early for not
6437 associated or not allocated types.
6438 (f_type_print_varspec_suffix): Add print_rank parameter and print
6439 ranks of array types in case they dangling.
6440 (f_type_print_base): Add print_rank parameter.
6441
30056ea0
AB
64422019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
6443
6444 * NEWS: Mention new MI commands.
6445 * break-catch-throw.c (enum exception_event_kind): Move to
6446 breakpoint.h.
6447 (print_mention_exception_catchpoint): Output text as a single
6448 message.
6449 (catch_exception_command_1): Rename to...
6450 (catch_exception_event): ...this, make non-static, update header
6451 command, and change some parameter types.
6452 (catch_catch_command): Update for changes to
6453 catch_exception_command_1.
6454 (catch_throw_command): Likewise.
6455 (catch_rethrow_command): Likewise.
6456 * breakpoint.c (enum exception_event_kind): Delete.
6457 * breakpoint.h (enum exception_event_kind): Moved here from
6458 break-catch-throw.c.
6459 (catch_exception_event): Declare.
6460 * mi/mi-cmd-catch.c (mi_cmd_catch_exception_event): New function.
6461 (mi_cmd_catch_throw): New function.
6462 (mi_cmd_catch_rethrow): New function.
6463 (mi_cmd_catch_catch): New function.
6464 * mi/mi-cmds.c (mi_cmds): Add 'catch-throw', 'catch-rethrow', and
6465 'catch-catch' entries.
6466 * mi/mi-cmds.h (mi_cmd_catch_throw): Declare.
6467 (mi_cmd_catch_rethrow): Declare.
6468 (mi_cmd_catch_catch): Declare.
6469
ec8e2b6d
AB
64702019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
6471
6472 * annotate.c (annotate_source_line): Change return type to void,
6473 update implementation to match.
6474 * annotate.h (annotate_source_line): Change return type to void,
6475 update header comment.
6476 * stack.c (print_frame_info): Don't change what frame information
6477 is printed based on whether annotations are on or not.
6478
0d3abd8c
AB
64792019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
6480
6481 * annotate.c: Add 'source.h' and 'objfiles.h' includes.
6482 (annotate_source): Make static.
6483 (annotate_source_line): Moved from source.c and renamed from
6484 identify_source_line. Update the return type.
6485 * annotate.h (annotate_source): Delete declaration.
6486 (annotate_source_line): Declaration moved from source.h, and
6487 renamed from identify_source_line. Return type updated.
6488 * source.c (identify_source_line): Moved to annotate.c and renamed
6489 to annotate_source_line.
6490 (info_line_command): Remove check of annotation_level.
6491 * source.h (identify_source_line): Move declaration to annotate.h
6492 and rename to annotate_source_line.
6493 * stack.c: Add 'annotate.h' include.
6494 (print_frame_info): Remove check of annotation_level before
6495 calling annotate_source_line.
6496
00df30ae
AB
64972019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
6498
6499 * source-cache.c (source_cache::get_plain_source_lines): Use
6500 open_source_file_with_line_charpos instead of just
6501 open_source_file, remove call to find_source_lines.
6502 (source_cache::get_source_lines): Likewise.
6503 * source.c (find_source_lines): Make static.
6504 (get_filename_and_charpos): Renamed into...
6505 (open_source_file_with_line_charpos): ..this along with changes to
6506 return a scoped_fd, and some other minor clean ups.
6507 (identify_source_line): Use open_source_file_with_line_charpos.
6508 (search_command_helper): Use open_source_file_with_line_charpos
6509 instead of just open_source_file, remove call to
6510 find_source_lines.
6511 * source.h (open_source_file_with_line_charpos): Declare new
6512 function.
6513 (find_source_lines): Delete declaration.
6514
afda45a2
AB
65152019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
6516
6517 * source.c (get_filename_and_charpos): Remove fullname
6518 parameter.
6519 (identify_source_line): Update call to get_filename_and_charpos.
6520
0735b091
TT
65212019-06-14 Tom Tromey <tromey@adacore.com>
6522
6523 PR gdb/24502:
6524 * ui-style.h (skip_ansi_escape): Update comment.
6525 * ui-file.h (class no_terminal_escape_file): New class.
6526 * ui-file.c (no_terminal_escape_file::write)
6527 (no_terminal_escape_file::puts): New methods.
6528 * cli/cli-logging.c (handle_redirections): Use
6529 no_terminal_escape_file.
6530
52ce35e2
TT
65312019-06-14 Tom Tromey <tromey@adacore.com>
6532
6533 * NEWS: Move convenience variable news above Python news.
6534
73cc7272
TT
65352019-06-14 Tom Tromey <tom@tromey.com>
6536
6537 * gnulib: Move directory to top-level.
6538 * configure.ac: Don't configure gnulib.
6539 * configure: Rebuild.
6540 * common/common-defs.h: Use new path to gnulib.
6541 * Makefile.in (GNULIB_BUILDDIR): Now ../gnulib.
6542 (GNULIB_H): Remove.
6543 (INCGNU): Look in new gnulib location.
6544 (HFILES_NO_SRCDIR): Remove gnulib files.
6545 (SUBDIR, REQUIRED_SUBDIRS): Remove gnulib.
6546 (generated_files): Remove GNULIB_H.
6547 ($(LIBGNU), all-lib): Remove targets.
6548 (distclean): Don't mention GNULIB_BUILDDIR.
6549 ($(GNULIB_BUILDDIR)/Makefile): Remove target.
6550
f5686554
TT
65512019-06-14 Tom Tromey <tromey@adacore.com>
6552
6553 * symfile.c (add_symbol_file_command): Remove obsolete comment.
6554 Warn if symbol file does not provide any symbols.
6555
a0c1ffed
TT
65562019-06-14 Tom Tromey <tromey@adacore.com>
6557
6558 * source.c (find_and_open_source): Respect basenames_may_differ.
6559
7c39e397
AB
65602019-06-14 Andrew Burgess <andrew.burgess@embecosm.com>
6561
6562 * annotate.c (annotate_breakpoints_invalid): Make use of
6563 scoped_restore_terminal_state.
6564 (annotate_frames_invalid): Likewise.
6565
f411722c
TT
65662019-06-14 Tom Tromey <tromey@adacore.com>
6567
6568 * ada-lang.c (ada_evaluate_subexp) <case BINOP_ASSIGN>: Always
6569 allow assignment to an internalvar.
6570
4268ec18
TT
65712019-06-14 Tom Tromey <tromey@adacore.com>
6572
6573 * ada-lex.l: Allow "_" in attribute names.
6574
abdb711e
TT
65752019-06-14 Tom Tromey <tromey@adacore.com>
6576
6577 PR gdb/24653:
6578 * regcache.c (registers_changed): Don't call alloca.
6579 * top.c (execute_command): Don't call alloca.
6580
4c048731
PA
65812019-06-13 Pedro Alves <palves@redhat.com>
6582
6583 * cli/cli-setshow.c (cli/cli-setshow.c): New parameter
6584 'expression'. When parsing an expression, error out if there's
6585 junk after "unlimited".
6586 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
6587 (do_set_command): Adjust calls to is_unlimited_literal.
6588
66eb1ed3
PA
65892019-06-13 Pedro Alves <palves@redhat.com>
6590
6591 * compile/compile.c (make_compile_options_def_group): Add braces
6592 around array_view initializer.
6593 * thread.c (make_thread_apply_all_options_def_group)
6594 (make_thread_apply_all_options_def_group): Likewise.
6595
3345721a
PA
65962019-06-13 Pedro Alves <palves@redhat.com>
6597
6598 * NEWS (New commands): Mention "maint test-options
6599 require-delimiter", "maint test-options unknown-is-error", "maint
6600 test-options unknown-is-operand" and "maint show
6601 test-options-completion-result".
6602 (New command options, command completion): New section.
6603 (Completion improvements): New section.
6604 Mention that you can abbreviate "unlimited".
6605
6206060d
PA
66062019-06-13 Pedro Alves <palves@redhat.com>
6607
6608 * cli/cli-utils.c (parse_flags, parse_flags_qcs): Delete.
6609 * cli/cli-utils.h (parse_flags, parse_flags_qcs): Delete.
6610 * unittests/cli-utils-selftests.c (test_parse_flags)
6611 (test_parse_flags_qcs): Delete.
6612 (test_cli_utils): Don't call deleted functions.
6613
6665660a
PA
66142019-06-13 Pedro Alves <palves@redhat.com>
6615
6616 * thread.c: Include "cli/cli-option.h".
6617 (tp_array_compar_ascending): Global.
6618 (tp_array_compar): Delete function.
6619 (tp_array_compar_ascending, tp_array_compar_descending): New
6620 functions.
6621 (ascending_option_def, qcs_flag_option_def)
6622 (thr_qcs_flags_option_defs)
6623 (make_thread_apply_all_options_def_group)
6624 (make_thread_apply_options_def_group): New.
6625 (thread_apply_all_command): Use gdb::option::process_options.
6626 (thread_apply_command_completer)
6627 (thread_apply_all_command_completer): New.
6628 (thread_apply_command): Use gdb::option::process_options.
6629 (_initialize_thread): Delete THREAD_APPLY_FLAGS_HELP, replace it
6630 with a new THREAD_APPLY_OPTION_HELP. Use gdb::option::build_help
6631 to generate help text of "thread apply". Adjust "taas"'s help.
6632 * tid-parse.c (tid_range_parser::in_thread_range): New method.
6633 * tid-parse.h (tid_range_parser::in_thread_range): New method.
6634
f7e13587
PA
66352019-06-13 Pedro Alves <palves@redhat.com>
6636
6637 * thread.c (thread_apply_command): Check for invalid TID with
6638 isdigit instead of !isalpha.
6639
5d707134
PA
66402019-06-13 Pedro Alves <palves@redhat.com>
6641
6642 * cli/cli-utils.c (parse_flags_qcs): Use validate_flags_qcs.
6643 (validate_flags_qcs): New.
6644 * cli/cli-utils.h (struct qcs_flags): Change field types to int.
6645 (validate_flags_qcs): Declare.
6646 * stack.c (qcs_flag_option_def, fr_qcs_flags_option_defs): New.
6647 (make_frame_apply_options_def_group): New.
6648 (frame_apply_command_count): Process options with
6649 gdb::option::process_options.
6650 (frame_apply_completer): New.
6651 (frame_apply_level_completer, frame_apply_all_completer)
6652 (frame_apply_completer): New.
6653 (_initialize_stack): Update help of "frame apply", "frame apply
6654 level", "frame apply all" and "faas" to mention supported options
6655 and install command completers.
6656 * stack.h (frame_apply_all_completer): Declare.
6657 * thread.c: Include "stack.h".
6658 (tfaas_command): Add "--".
6659 (_initialize_thread): Update help "tfaas" to mention supported
6660 options and install command completer.
6661
272d4594
PA
66622019-06-13 Pedro Alves <palves@redhat.com>
6663
6664 * completer.c (complete_nested_command_line): New.
6665 (gdb_completion_word_break_characters_throw): Add assertion.
6666 * completer.h (complete_nested_command_line): Declare.
6667
90a1ef87
PA
66682019-06-13 Pedro Alves <palves@redhat.com>
6669
6670 * stack.c (parse_backtrace_qualifiers): New.
6671 (backtrace_command): Use it.
6672 (backtrace_command_completer): Complete on qualifiers.
6673
d4c16835
PA
66742019-06-13 Pedro Alves <palves@redhat.com>
6675
6676 * frame.c: Include "cli/cli-option.h.
6677 (user_set_backtrace_options): New.
6678 (backtrace_past_main, backtrace_past_entry, backtrace_limit):
6679 Delete.
6680 (get_prev_frame): Adjust.
6681 (boolean_option_def, uinteger_option_def)
6682 (set_backtrace_option_defs): New.
6683 (_initialize_frame): Adjust and use
6684 gdb::option::add_setshow_cmds_for_options to install "set
6685 backtrace past-main" and "set backtrace past-entry".
6686 * frame.h: Include "cli/cli-option.h".
6687 (struct frame_print_options): Forward declare.
6688 (print_frame_arguments_all, print_frame_arguments_scalars)
6689 (print_frame_arguments_none): Declare.
6690 (print_entry_values): Delete declaration.
6691 (struct frame_print_options, user_frame_print_options): New.
6692 (struct set_backtrace_options): New.
6693 (set_backtrace_option_defs, user_set_backtrace_options): Declare.
6694 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
6695 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
6696 (mi_cmd_stack_list_variables): Pass down USER_FRAME_PRINT_OPTIONS.
6697 (list_args_or_locals): Add frame_print_options parameter.
6698 (mi_cmd_stack_info_frame): Pass down USER_FRAME_PRINT_OPTIONS.
6699 * python/py-framefilter.c (enumerate_args): Pass down
6700 USER_FRAME_PRINT_OPTIONS.
6701 * stack.c: Include "cli/cli-option.h".
6702 (print_frame_arguments_all, print_frame_arguments_scalars)
6703 (print_frame_arguments_none): Declare.
6704 (print_raw_frame_arguments, print_entry_values): Delete.
6705 (user_frame_print_options): New.
6706 (boolean_option_def, enum_option_def, frame_print_option_defs):
6707 New.
6708 (struct backtrace_cmd_options): New.
6709 (bt_flag_option_def): New.
6710 (backtrace_command_option_defs): New.
6711 (print_stack_frame): Pass down USER_FRAME_PRINT_OPTIONS.
6712 (print_frame_arg, read_frame_arg, print_frame_args)
6713 (print_frame_info, print_frame): Add frame_print_options parameter
6714 and use it.
6715 (info_frame_command_core): Pass down USER_FRAME_PRINT_OPTIONS.
6716 (backtrace_command_1): Add frame_print_options and
6717 backtrace_cmd_options parameters and use them.
6718 (make_backtrace_options_def_group): New.
6719 (backtrace_command): Process command options with
6720 gdb::option::process_options.
6721 (backtrace_command_completer): New.
6722 (_initialize_stack): Extend "backtrace"'s help to mention
6723 supported options. Install completer for "backtrace".
6724 Install some settings commands with add_setshow_cmds_for_options.
6725
2daf894e
PA
67262019-06-13 Pedro Alves <palves@redhat.com>
6727
6728 * NEWS (Changed commands): Mention set/show print raw-frame-arguments,
6729 and that "set/show print raw frame-arguments" are now deprecated.
6730
6731 * cli/cli-decode.c (add_setshow_boolean_cmd): Now returns the
6732 command.
6733 * command.h (add_setshow_boolean_cmd): Return cmd_list_element *.
6734 * stack.c (_initialize_stack): Install "set/show print
6735 raw-frame-arguments", and deprecate "set/show print raw
6736 frame-arguments".
6737 * valprint.c (_initialize_valprint): Deprecate "set/show print
6738 raw".
6739
e6ed716c
PA
67402019-06-13 Pedro Alves <palves@redhat.com>
6741
6742 * compile/compile.c (struct compile_options): New.
6743 (compile_flag_option_def, compile_command_option_defs)
6744 (make_compile_options_def_group): New.
6745 (compile_file_command): Handle options with
6746 gdb::option::process_options.
6747 (compile_file_command_completer): New function.
6748 (compile_code_command): Handle options with
6749 gdb::option::process_options.
6750 (compile_code_command_completer): New function.
6751 (_initialize_compiler): Install completers for "compile code" and
6752 "compile file". Mention available options in "compile code" and
6753 "compile code"'s help.
6754 * completer.c (advance_to_completion_word): New, factored out from
6755 ...
6756 (advance_to_expression_complete_word_point): ... this.
6757 (advance_to_filename_complete_word_point): New.
6758 * completer.h (advance_to_filename_complete_word_point): New
6759 declaration.
6760
7d8062de
PA
67612019-06-13 Pedro Alves <palves@redhat.com>
6762
6763 * compile/compile.c: Include "cli/cli-option.h".
6764 (compile_print_value): Scope data pointer is now a
6765 value_print_options pointer; adjust.
6766 (compile_print_command): Process options. Scope data pointer is
6767 now a value_print_options pointer; adjust.
6768 (_initialize_compile): Update "compile print"'s help to include
6769 supported options. Install a completer for "compile print".
6770 * cp-valprint.c (show_vtblprint, show_objectprint)
6771 (show_static_field_print): Delete.
6772 (_initialize_cp_valprint): Don't install "set print
6773 static-members", "set print vtbl", "set print object" here.
6774 * printcmd.c: Include "cli/cli-option.h" and
6775 "common/gdb_optional.h".
6776 (print_command_parse_format): Rework to fill in a
6777 value_print_options instead of a format_data.
6778 (print_value): Change parameter type from format_data pointer to
6779 value_print_options reference. Adjust.
6780 (print_command_1): Process options. Adjust to pass down a
6781 value_print_options.
6782 (print_command_completer): New.
6783 (_initialize_printcmd): Install print_command_completer as
6784 handle_brkchars completer for the "print" command. Update
6785 "print"'s help to include supported options.
6786 * valprint.c: Include "cli/cli-option.h".
6787 (show_vtblprint, show_objectprint, show_static_field_print): Moved
6788 here from cp-valprint.c.
6789 (boolean_option_def, uinteger_option_def)
6790 (value_print_option_defs, make_value_print_options_def_group):
6791 New. Use gdb::option::add_setshow_cmds_for_options to install
6792 "set print elements", "set print null-stop", "set print repeats",
6793 "set print pretty", "set print union", "set print array", "set
6794 print address", "set print symbol", "set print array-indexes".
6795 * valprint.h: Include <string> and "cli/cli-option.h".
6796 (make_value_print_options_def_group): Declare.
6797 (print_value): Change parameter type from format_data pointer to
6798 value_print_options reference.
6799 (print_command_completer): Declare.
6800
9d0faba9
PA
68012019-06-13 Pedro Alves <palves@redhat.com>
6802
6803 * Makefile.in (SUBDIR_CLI_SRCS): Add cli/cli-option.c.
6804 (COMMON_SFILES): Add maint-test-settings.c.
6805 * cli/cli-decode.c (boolean_enums): New global, factored out from
6806 ...
6807 (add_setshow_boolean_cmd): ... here.
6808 * cli/cli-decode.h (boolean_enums): Declare.
6809 * cli/cli-option.c: New file.
6810 * cli/cli-option.h: New file.
6811 * cli/cli-setshow.c (parse_cli_boolean_value(const char **)): New,
6812 factored out from ...
6813 (parse_cli_boolean_value(const char *)): ... this.
6814 (is_unlimited_literal): Change parameter type to pointer to
6815 pointer. Adjust and advance ARG pointer.
6816 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
6817 (parse_cli_var_enum): New, factored out from ...
6818 (do_set_command): ... this. Adjust.
6819 * cli/cli-setshow.h (parse_cli_boolean_value)
6820 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
6821 (parse_cli_var_enum): Declare.
6822 * cli/cli-utils.c: Include "cli/cli-option.h".
6823 (get_ulongest): New.
6824 * cli/cli-utils.h (get_ulongest): Declare.
6825 (check_for_argument): New overloads.
6826 * maint-test-options.c: New file.
6827
2c722807
PA
68282019-06-13 Pedro Alves <palves@redhat.com>
6829
6830 * cli/cli-utils.c (number_or_range_parser::get_number): Do not
6831 parse a range if "-" is at the end of the string.
6832
dee7b4c8
PA
68332019-06-13 Pedro Alves <palves@redhat.com>
6834
6835 * cli/cli-setshow.c (parse_auto_binary_operation)
6836 (parse_cli_boolean_value): Don't allow "o".
6837
dca0f6c0
PA
68382019-06-13 Pedro Alves <palves@redhat.com>
6839
6840 * Makefile.in (COMMON_SFILES): Add maint-test-settings.c.
6841 * NEWS: Mention maint test-settings KIND.
6842 * maint-test-settings.c: New file.
6843
597bf39d
PA
68442019-06-13 Pedro Alves <palves@redhat.com>
6845
6846 * cli/cli-decode.c (add_setshow_cmd_full): Remove "show"
6847 completer.
6848 (add_setshow_string_cmd, add_setshow_string_noescape_cmd): Remove
6849 "set" completers.
6850
48c410fb
PA
68512019-06-13 Pedro Alves <palves@redhat.com>
6852
6853 * cli/cli-setshow.c (do_set_command) <var_enum>: Detect junk
6854 after item.
6855
93bcb043
PA
68562019-06-13 Pedro Alves <palves@redhat.com>
6857
6858 * cli/cli-setshow.c (is_unlimited_literal): Allow abbreviations.
6859
cbba3ecd
PA
68602019-06-13 Pedro Alves <palves@redhat.com>
6861
6862 * ax-gdb.c (agent_command_1): Remove skip_spaces call.
6863 * breakpoint.c (watch_maybe_just_location): Remove skip_spaces
6864 call.
6865 * cli/cli-cmds.c (apropos_command): Remove skip_spaces call.
6866 * cli/cli-utils.c (extract_info_print_args): Remove skip_spaces
6867 calls.
6868 (check_for_argument): Skip spaces after argument.
6869
b9a3f842
PA
68702019-06-13 Pedro Alves <palves@redhat.com>
6871
6872 * thread.c (thread_apply_command): Adjust TID parsing.
6873 * tid-parse.c (tid_range_parser::finished): Ensure parsing end is
6874 detected before end of string.
6875 (tid_is_in_list): Error out if LIST is invalid.
6876
3844e605
PA
68772019-06-13 Pedro Alves <palves@redhat.com>
6878
6879 * completer.c (complete_line_internal_1): Rewind completion word
6880 point.
6881 (completion_tracker::advance_custom_word_point_by): Change
6882 parameter type to int.
6883 * completer.h (completion_tracker::advance_custom_word_point_by):
6884 Likewise.
6885
00b56dbe
PA
68862019-06-13 Pedro Alves <palves@redhat.com>
6887
6888 * completer.c (advance_to_completion_word): Handle delimiters.
6889
d106773e
PA
68902019-06-11 Bernhard Heckel <bernhard.heckel@intel.com>
6891
6892 * dwarf2read.c (add_partial_symbol): Skip nameless modules.
6893
08f10e02
TT
68942019-06-11 Tom Tromey <tom@tromey.com>
6895
6896 * common/common-utils.c (xmalloc, xrealloc, xcalloc)
6897 (xmalloc_failed): Move to alloc.c.
6898 * alloc.c: New file.
6899 * Makefile.in (COMMON_SFILES): Add alloc.c.
6900
1c7fe951
TT
69012019-06-11 Tom Tromey <tom@tromey.com>
6902
6903 * nat/linux-waitpid.c: Don't include server.h.
6904 (linux_debug): Remove.
6905 (my_waitpid): Update.
6906
89549d7f
TT
69072019-06-11 Tom Tromey <tromey@adacore.com>
6908
6909 * infcall.c (_initialize_infcall): Remove trailing newline from
6910 help.
6911 * user-regs.c (_initialize_user_regs): Remove trailing newline
6912 from help.
6913 * typeprint.c (_initialize_typeprint): Remove trailing newline
6914 from help.
6915 * reverse.c (_initialize_reverse): Remove trailing newlines from
6916 help.
6917 * tracepoint.c (_initialize_tracepoint): Remove trailing newlines
6918 from help.
6919 * language.c (add_set_language_command): Remove trailing newline
6920 from help.
6921 * infcmd.c (_initialize_infcmd): Remove trailing newlines from
6922 help.
6923 * disasm.c (_initialize_disasm): Remove trailing newline from
6924 help.
6925 * top.c (init_main): Remove trailing newline from help.
6926 * interps.c (_initialize_interpreter): Remove trailing newline
6927 from help.
6928 * btrace.c (_initialize_btrace): Remove trailing newlines from
6929 help.
6930 * breakpoint.c (_initialize_breakpoint): Remove trailing newline
6931 from help.
6932 * python/python.c (_initialize_python): Remove trailing newline
6933 from help.
6934 * spu-tdep.c (_initialize_spu_tdep): Remove trailing newlines from
6935 help.
6936 * tui/tui-win.c (_initialize_tui_win): Remove trailing newlines
6937 from help. Reformat some text.
6938 * tui/tui-stack.c (_initialize_tui_stack): Remove trailing newline
6939 from help.
6940 * tui/tui-layout.c (_initialize_tui_layout): Remove trailing
6941 newline from help.
6942
86108c13
TT
69432019-06-11 Tom Tromey <tromey@adacore.com>
6944
6945 * darwin-nat.c (darwin_decode_exception_message)
6946 (darwin_decode_message, darwin_nat_target::kill): Fix shadowing.
6947
a7067863
AB
69482019-06-10 Andrew Burgess <andrew.burgess@embecosm.com>
6949
6950 * valops.c (value_slice): Check for not allocated or not
6951 associated values.
6952
9ab08412
TV
69532019-06-10 Tom de Vries <tdevries@suse.de>
6954
6955 PR gdb/24618
6956 * dwarf2read.c (struct mapped_index::symbol_name_slot_invalid): Make
6957 sure an empty slot (defined by a 32-bit zero pair) is recognized as
6958 invalid.
6959
f19e22e9
TV
69602019-06-10 Tom de Vries <tdevries@suse.de>
6961
6962 PR gdb/24611
6963 * linespec.c (linespec_lexer_lex_string): Remove incorrect
6964 "++(PARSER_STREAM (parser))" for "[abi"-prefixed colon. Add assert.
6965
e99f9db0
TV
69662019-06-10 Tom de Vries <tdevries@suse.de>
6967
6968 PR symtab/24545
6969 * symtab.c (struct demangled_name_entry): Add language field.
6970 (symbol_set_names): Revert "[gdb/symtab] Fix language of duplicate
6971 static minimal symbol". Set and use language field.
6972
9bf7038b
TT
69732019-06-10 Tom Tromey <tromey@adacore.com>
6974
6975 * ada-lang.c (_initialize_ada_language): Update help text.
6976
422186a9
TT
69772019-06-10 Tom Tromey <tromey@adacore.com>
6978
6979 * m32c-tdep.c (m32c_m16c_address_to_pointer): Don't end warning
6980 with a newline.
6981 * guile/guile.c (handle_boot_error): Don't end warning with a
6982 newline.
6983 * cli/cli-cmds.c (exit_status_set_internal_vars): Don't end
6984 warning with a newline.
6985 * s12z-tdep.c (s12z_skip_prologue): Don't end warning with a
6986 newline.
6987 (s12z_frame_cache): Likewise.
6988 * dwarf-index-cache.c (index_cache::store): Don't end warning with
6989 a newline.
6990 * solib-svr4.c (disable_probes_interface): Don't end warning with
6991 a newline.
6992 * nat/fork-inferior.c (fork_inferior): Don't end warning with a
6993 newline.
6994 * python/python.c (do_finish_initialization): Don't end warning
6995 with a newline.
6996
25ce02ee
TT
69972019-06-10 Tom Tromey <tom@tromey.com>
6998
6999 * python/py-breakpoint.c (gdbpy_breakpoint_created)
7000 (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
7001 gdbpy_enter.
7002
caa429d8
TT
70032019-06-10 Tom Tromey <tromey@adacore.com>
7004
7005 * elfread.c (elf_read_minimal_symbols): Don't set the dbx objfile
7006 data.
7007 (elf_new_init): Don't call stabsread_new_init.
7008 * dbxread.c (coffstab_build_psymtabs): Set dbx objfile data.
7009 (elfstab_build_psymtabs): Likewise. Call stabsread_new_init.
7010 * coffread.c (coff_symfile_init): Don't set the dbx objfile data.
7011
81873cc8
TV
70122019-06-10 Tom de Vries <tdevries@suse.de>
7013
7014 PR symtab/16264
7015 PR symtab/24517
7016 * dwarf2read.c (read_func_scope): Handle DW_AT_main_subprogram.
7017
4fa0265e
РИ
70182019-06-06 Руслан Ижбулатов <lrn1986@gmail.com>
7019
7020 * source.c (find_and_open_source): Also rewrite relative file
7021 names.
7022
1a3da2cd
AB
70232019-04-26 Amos Bird <amosbird@gmail.com>
7024
7025 * annotate.c (annotate_thread_exited): Add "thread-exited"
7026 annotation.
7027
3847a7bf
TT
70282019-06-06 Tom Tromey <tromey@adacore.com>
7029
7030 * maint.h (class scoped_command_stats): Use
7031 DISABLE_COPY_AND_ASSIGN.
7032 <print_time>: New method.
7033 * maint.c (scoped_command_stats, ~scoped_command_stats): Call
7034 print_time.
7035 (scoped_command_stats::print_time): New method.
7036
312617a3
AB
70372019-06-05 Andrew Burgess <andrew.burgess@embecosm.com>
7038
7039 * riscv-tdep.c (riscv_insn::decode): Gracefully ignore
7040 instructions of lengths 6 or 8 bytes.
7041
b02f78f9
PA
70422019-06-04 Pedro Alves <palves@redhat.com>
7043
7044 * common/gdb_unique_ptr.h (make_unique_xstrdup): New.
7045
7046 * ada-lang.c (catch_ada_completer): Use make_unique_xstrdup.
7047 * breakpoint.c (condition_completer): Likewise.
7048 * cli/cli-dump.c (scan_expression): Likewise.
7049 * common/filestuff.c (mkdir_recursive): Likewise.
7050 * common/gdb_tilde_expand.c (gdb_tilde_expand_up)
7051 * common/pathstuff.c (gdb_realpath, gdb_realpath_keepfile)
7052 (gdb_abspath): Likewise.
7053 * compile/compile-cplus-types.c
7054 (compile_cplus_instance::decl_name): Likewise.
7055 * completer.c (complete_explicit_location):
7056 (signal_completer, reg_or_group_completer_1): Likewise.
7057 * cp-support.c (cp_remove_params_if_any): Likewise.
7058 * fbsd-tdep.c (fbsd_core_vnode_path): Likewise.
7059 * guile/scm-safe-call.c (gdbscm_safe_eval_string): Likewise.
7060 * infcmd.c (strip_bg_char): Likewise.
7061 * linespec.c (copy_token_string): Likewise.
7062 * mi/mi-main.c (output_cores): Likewise.
7063 * psymtab.c (psymtab_search_name):
7064 * symfile.c (test_set_ext_lang_command): Likewise.
7065 * target.c (target_fileio_read_stralloc): Likewise.
7066 * tui/tui-regs.c (tui_reggroup_completer): Likewise.
7067 * value.c (complete_internalvar): Likewise.
7068
e1f2e1a2
CB
70692019-06-04 Christian Biesinger <cbiesinger@google.com>
7070
7071 Add objfile property to gdb.Type.
d3238f7d
PA
7072 * NEWS: Mention Python API addition.
7073 * python/py-type.c (typy_get_objfile): New method.
e1f2e1a2 7074
e664d728
PW
70752019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7076
7077 * NEWS: Mention the new set|show style [title|highlight].
7078 Mention changes to "show style", "help" and "apropos".
7079
66d8c862
PW
70802019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7081
7082 * cli/cli-decode.h (apropos_cmd): Add verbose argument.
7083 * cli/cli-decode.c (apropos_cmd): Likewise. Use print_doc_of_command
7084 instead of print_help_for_command.
7085 (print_doc_of_command): New function.
7086 (help_list): Add 'apropos -v word' suggestion.
7087 (print_help_for_command): Style the command name using title style.
7088 * cli/cli-cmds.c (apropos_command): Parse optional -v flag.
7089 (_initialize_cli_cmds): Describe -v in apropos_command help.
7090
9303eb2f
PW
70912019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7092
7093 * cli/cli-style.h (cli_style_option): Add name in constructor,
7094 add m_name class member, add constructor with intensity,
7095 add name class function.
7096 (cli_style_option::add_setshow_commands): Remove name argument.
7097 (highlight_style, title_style): New styles.
7098 * cli/cli-style.c (do_show): New function that shows a style
7099 characteristic styling the style name with itself.
7100 (set_style_name): New function.
7101 (STYLE_ADD_SETSHOW_COMMANDS): Remove NAME arguments.
7102 Update all callers according to the changes in cli/cli-style.h.
7103 * utils.h (fputs_highlighted): New function.
7104 * utils.c (fputs_highlighted): Likewise.
7105
e2c52041
PW
71062019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7107
7108 * NEWS: Mention new pipe command and new convenience variables.
7109
947d3946
PW
71102019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7111
7112 * cli/cli-cmds.c (pipe_command): New function.
7113 (_initialize_cli_cmds): Call add_com for pipe_command.
7114 Define | as an alias for pipe.
7115 (exit_status_set_internal_vars): New function.
7116 (shell_escape): Call exit_status_set_internal_vars.
7117 cli/cli-decode.c (find_command_name_length): Recognize | as
7118 a single character command.
7119
b8fd0918
PW
71202019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7121
7122 * gdbcmd.h (execute_command_to_ui_file): New declaration.
7123 top.c (execute_command_to_ui_file): New function, mostly a copy
7124 of execute_command_to_string.
7125 (execute_command_to_string): Implement by calling
7126 execute_command_to_ui_file.
7127
68bb5386
PW
71282019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7129
7130 * top.h (saved_command_line): Remove declaration.
7131 * top.c (previous_saved_command_line, previous_repeat_arguments):
7132 New variables.
7133 (saved_command_line): Make static, define together with other
7134 'repeat variables'.
7135 (dont_repeat): Clear repeat_arguments.
7136 (repeat_previous, get_saved_command_line, save_command_line):
7137 New functions.
7138 (gdb_init): Initialize saved_command_line
7139 and previous_saved_command_line.
7140 * main.c (captured_main_1): Remove saved_command_line initialization.
7141 * event-top.c (handle_line_of_input): Update to use
7142 the new 'repeat' related functions instead of direct access to
7143 saved_command_line.
7144 * command.h (repeat_previous, get_saved_command_line,
7145 save_command_line): New declarations.
7146 (dont_repeat): Add comment.
7147
bfcdb852
TT
71482019-05-30 Tom Tromey <tromey@adacore.com>
7149
7150 * gdbtypes.h (struct range_bounds) <flag_upper_bound_is_count>:
7151 Fix comment.
7152 (TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED): Rewrite comment.
7153
0ef209f2
JV
71542019-05-30 Jan Vrany <jan.vrany@fit.cvut.cz>
7155
7156 PR cli/24587
7157 * completer.c (complete): Initialize variable word.
7158
955b06fa
SDJ
71592019-05-29 Sergio Durigan Junior <sergiodj@redhat.com>
7160
7161 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
7162 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1715008
7163 * dwarf2read.c (dwarf_decode_macro_bytes): Move check to see if
7164 'body' is NULL to the outter 'if', protecting the '!is_define'
7165 situation as well.
7166
fa9c3fa0
TT
71672019-05-29 Tom Tromey <tromey@adacore.com>
7168
7169 * dwarf2read.c (partial_die_parent_scope): Call dwarf_tag_name.
7170 (dwarf_unknown): New function.
7171 (dwarf_tag_name, dwarf_attr_name, dwarf_form_name)
7172 (dwarf_type_encoding_name): Use dwarf_unknown.
7173
4330d61d
TT
71742019-05-29 Tom Tromey <tromey@adacore.com>
7175
7176 PR c++/20020:
7177 * cp-valprint.c (cp_print_value_fields): Call
7178 cp_print_static_field inside "try".
7179
33a6bc35
TT
71802019-05-29 Tom Tromey <tromey@adacore.com>
7181
7182 * inflow.c (struct terminal_info): Add default operator=.
7183 * configure: Rebuild.
7184 * warning.m4 (AM_GDB_WARNINGS): Add -Wdeprecated-copy,
7185 -Wdeprecated-copy-dtor, -Wredundant-move.
7186
000439d5
TT
71872019-05-29 Tom Tromey <tromey@adacore.com>
7188
7189 * NEWS: Add entry.
7190 * infcmd.c (print_return_value_1): Handle finish_print
7191 option.
7192 (show_print_finish): New function.
7193 (_initialize_infcmd): Add "set/show print finish" commands.
7194 * valprint.c (user_print_options): Initialize new member.
7195 * valprint.h (struct value_print_options) <finish_print>: New
7196 member.
7197
c0e70c62
TT
71982019-05-28 Tom Tromey <tromey@adacore.com>
7199
7200 * ada-lang.c (ada_remove_Xbn_suffix)
7201 (find_old_style_renaming_symbol)
7202 (parse_old_style_renaming): Remove.
7203 (ada_find_renaming_symbol): Don't call
7204 find_old_style_renaming_symbol.
7205 (ada_is_renaming_symbol): Rename from
7206 ada_find_renaming_symbol. Remove "block" parameter. Return
7207 bool. Now static.
7208 (ada_read_var_value): Update and simplify.
7209 * ada-exp.y (write_var_or_type): Remove old code.
7210
766f8836
AH
72112019-05-28 Alan Hayward <alan.hayward@arm.com>
7212
68255adc 7213 PR gdb/25010
766f8836
AH
7214 * event-top.c: Remove include comment.
7215 * inflow.c (class scoped_ignore_sigttou): Move from here...
7216 * inflow.h (class scoped_ignore_sigttou): ...to here.
7217 * ser-unix.c (hardwire_drain_output): Block SIGTTOU during drain.
7218 * top.c: Remove include comment.
7219
eb41253a
TT
72202019-05-27 Tom Tromey <tom@tromey.com>
7221
7222 * NEWS: Fix typo.
7223
4ca51187
TT
72242019-05-22 Tom Tromey <tromey@adacore.com>
7225
7226 * target.c (target_follow_exec): Constify parameter.
7227 * target-delegates.c: Rebuild.
7228 * remote.c (remote_target::follow_exec): Constify parameter.
7229 * infrun.c (follow_exec): Constify parameter.
7230 * target.h (struct target_ops) <follow_exec>: Constify parameter.
7231 (target_follow_exec): Likewise.
7232
8fca4da0
AH
72332019-05-22 Alan Hayward <alan.hayward@arm.com>
7234
7235 * aarch64-tdep.c (aarch64_execute_dwarf_cfa_vendor_op): Treat
7236 DW_CFA_AARCH64_negate_ra_state as nop on non pauth targets.
7237
b7060614
AH
72382019-05-22 Alan Hayward <alan.hayward@arm.com>
7239
7240 * NEWS: Add debugredirect and testsuite sections.
7241
0a5954bd
SC
72422019-05-22 Simon Cook <simon.cook@embecosm.com>
7243
7244 * riscv-tdep.c (riscv_gdbarch_init): Support determining flen from
7245 target descriptions using exclusively floating point register name
7246 aliases.
7247
dc42e902
AB
72482019-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
7249
7250 PR gdb/18644:
7251 * f-lang.c (build_fortran_types): Handle the case where
7252 gdbarch_floatformat_for_type returns a nullptr.
7253
fb7806c7
TV
72542019-05-21 Tom de Vries <tdevries@suse.de>
7255
7256 PR cli/24587
7257 * cli/cli-cmds.c (complete_command): Fix use of unitialized variable.
7258
34d11c68
AB
72592019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
7260
7261 PR gdb/18644:
7262 * f-lang.c (build_fortran_types): Use floatformats_ia64_quad for
7263 16-byte floats.
7264 * i386-tdep.c (i386_floatformat_for_type): Use
7265 floatformats_ia64_quad for the 16-byte floating point component
7266 within a fortran 32-byte complex number.
7267
122cf0f2
AB
72682019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
7269
7270 * dwarf2read.c (struct cu_partial_die_info): Add constructor,
7271 delete default constructor.
7272 (find_partial_die): Update to return const struct.
7273 (partial_die_parent_scope): Move variable declaration into scope
7274 of its use and change its type to auto.
7275 (guess_partial_die_structure_name): Likewise.
7276 (partial_die_info::fixup): Likewise.
7277
33d0e35a
TT
72782019-05-17 Tom Tromey <tromey@adacore.com>
7279
7280 * source.c (find_and_open_source): Remove cast.
7281
a45575b0
TT
72822019-05-17 Tom Tromey <tromey@adacore.com>
7283
7284 * annotate.c (annotate_source): Make "filename" const.
7285 * annotate.h (annotate_source): Use const.
7286
81f47ac2
AH
72872019-05-17 Alan Hayward <alan.hayward@arm.com>
7288
7289 * disasm.c (set_disassembler_options): Send errors to stderr.
7290
ca1285d1
AH
72912019-05-17 Alan Hayward <alan.hayward@arm.com>
7292
7293 * cli/cli-interp.c (struct saved_output_files): Add saved entry.
7294 (cli_interp_base::set_logging): Check debug_redirect.
7295 * cli/cli-interp.h (set_logging): Add debug_redirect parameter.
7296 * cli/cli-logging.c (debug_redirect): Add static variable.
7297 (pop_output_files): Add default param.
7298 (handle_redirections): Print debug setting.
7299 (show_logging_command): Likewise.
7300 (_initialize_cli_logging): Add debugredirect command.
7301 * interps.c (current_interp_set_logging): Add debug_redirect
7302 parameter.
7303 * interps.h (set_logging): Add debug_redirect parameter.
7304 (current_interp_set_logging): Likewise.
7305 * mi/mi-common.h: Likewise.
7306 * mi/mi-interp.c (mi_interp::set_logging): Likewise.
7307
73082019-05-17 Alan Hayward <alan.hayward@arm.com>
f3a09c80
AH
7309 Tom Tromey <tromey@adacore.com>
7310
7311 * cli/cli-interp.c (cli_interp_base::set_logging): Create tee_file
7312 directly.
7313 * cli/cli-interp.h (make_logging_output): Remove declaration.
7314 * cli/cli-logging.c (make_logging_output): Remove function.
7315 * mi/mi-interp.c (mi_interp::set_logging): Create tee_file
7316 directly.
7317 * ui-file.c (tee_file::tee_file): Remove bools.
7318 (tee_file::~tee_file): Remove deletes.
7319 * ui-file.h (tee_file): Remove bools.
7320
26648588
JV
73212019-01-28 Jan Vrany <jan.vrany@fit.cvut.cz>
7322
7323 * mi/mi-cmds.h (mi_cmd_complete): New function.
7324 * mi/mi-main.c (mi_cmd_complete): Likewise.
7325 * mi/mi-cmds.c: Define new MI command -complete.
7326 * NEWS: Mention new -complete command.
7327
6e035501
JV
73282019-01-24 Jan Vrany <jan.vrany@fit.cvut.cz>
7329
7330 * completer.h (complete): New function.
7331 * completer.c (complete): Likewise.
7332 * cli/cli-cmds.c: (complete_command): Update to use new complete()
7333 function defined in completer.h.
7334
7d0e2ece
JV
73352019-05-17 Jan Vrany <jan.vrany@fit.cvut.cz>
7336
e79be6e5 7337 * MAINTAINERS (Write After Approval): Add myself.
7d0e2ece 7338
fb816e8b
TV
73392019-05-17 Tom de Vries <tdevries@suse.de>
7340
7341 PR gdb/24094
7342 * dwarf2read.c (struct cu_partial_die_info): New struct.
7343 (find_partial_die): Return cu_partial_die_info.
7344 (partial_die_parent_scope, guess_partial_die_structure_name)
7345 (partial_die_info::fixup): Handle new return type of find_partial_die.
7346
677052f2
SDJ
73472019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
7348
a1726c38 7349 PR breakpoints/24541
677052f2
SDJ
7350 * stap-probe.c (stap_parse_register_operand): Make "regname" an
7351 "std::string", simplifying the algorithm.
7352
f3da9116
SDJ
73532019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
7354
7355 * stap-probe.c (handle_stap_probe): Fix complaint formatting.
7356 (stap_static_probe_ops::get_probes): Likewise.
7357
f1bb75ab
SDJ
73582019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
7359
7360 * stap-probe.c (stap_parse_register_operand): Make "if (*p->arg ==
7361 '-')" and "else if".
7362 (stap_parse_single_operand): Join checks for
7363 "gdbarch_stap_parse_special_token_p" and
7364 "gdbarch_stap_parse_special_token" in the same "if" statement.
7365 Invert check when verifying for operation on register
7366 displacement.
7367
3ca58cde
SDJ
73682019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
7369
7370 * stap-probe.c (stap_get_opcode): Update comment.
7371 (stap_get_expected_argument_type): Likewise.
7372 (handle_stap_probe): Likewise.
7373
af2d9bee
SDJ
73742019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
7375
7376 * i386-tdep.c (i386_stap_parse_special_token_triplet): Change
7377 return type to 'bool'. Adjust comment. Use 'bool' when
7378 appropriate.
7379 (i386_stap_parse_special_token_three_arg_disp): Likewise.
7380 * stap-probe.c (stap_parse_argument_1): Likewise.
7381 (stap_is_operator): Likewise.
7382 (stap_is_generic_prefix): Likewise.
7383 (stap_is_register_prefix): Likewise.
7384 (stap_is_register_indirection_prefix): Likewise.
7385 (stap_is_integer_prefix): Likewise.
7386 (stap_generic_check_suffix): Likewise.
7387 (stap_check_integer_suffix): Likewise.
7388 (stap_check_register_suffix): Likewise.
7389 (stap_check_register_indirection_suffix): Likewise.
7390 (stap_parse_register_operand): Likewise.
7391 (stap_parse_single_operand): Likewise.
7392 (stap_parse_argument_1): Likewise.
7393 (stap_probe::get_argument_count): Likewise.
7394 (stap_is_operator): Likewise.
7395
61c9c421
TT
73962019-05-16 Tom Tromey <tromey@adacore.com>
7397
7398 * darwin-nat.c (thread_info_from_private_thread_info): Add struct
7399 keyword to foreach.
7400
9ddc1af1
SM
74012019-05-15 Simon Marchi <simon.marchi@efficios.com>
7402
7403 * linux-thread-db.c (try_thread_db_load_1): Change return type
7404 to bool.
7405 (try_thread_db_load): Likewise.
7406 (try_thread_db_load_from_pdir_1): Likewise.
7407 (try_thread_db_load_from_pdir): Likewise.
7408 (try_thread_db_load_from_sdir): Likewise.
7409 (try_thread_db_load_from_dir): Likewise.
7410 (thread_db_load_search): Likewise.
7411 (has_libpthread): Likewise.
7412 (thread_db_load): Likewise.
7413
7bede828
SDJ
74142019-05-15 Sergio Durigan Junior <sergiodj@redhat.com>
7415
7416 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
7417 * dwarf2read.c (parse_macro_definition): Check whether 'body' is
7418 NULL, and complain/return if that's the case.
7419
c5358db4
JD
74202019-05-15 John Darrington <john@darrington.wattle.id.au>
7421
7422 * s12z-tdep.c (push_pull_get_stack_adjustment): New function.
7423 (advance, posn, abstract_read_memory): New functions.
7424 [struct mem_read_abstraction]: New struct.
7425 (s12z_frame_cache): Use opcodes API to interpret stack frame code.
7426
c408a94f
TT
74272019-05-14 Tom Tromey <tromey@adacore.com>
7428
7429 * ada-lang.c (coerce_unspec_val_to_type): Only set address when
7430 value is not lval_memory.
7431
e7bd7fba
TT
74322019-05-14 Tom Tromey <tromey@adacore.com>
7433
7434 * solib.c (info_sharedlibrary_command): Style the file name.
7435
a6d0f249
AH
74362019-05-14 Alan Hayward <alan.hayward@arm.com>
7437
7438 * aarch64-tdep.c (aarch64_vnh_type): Add half view.
7439 (aarch64_vnv_type): Likewise.
7440 * target-descriptions.c (make_gdb_type): Add TDESC_TYPE_IEEE_HALF.
7441 * common/tdesc.c: Likewise.
7442 * common/tdesc.h (enum tdesc_type_kind): Likewise.
7443 * features/aarch64-fpu.c (create_feature_aarch64_fpu): Regenerate.
7444 * features/aarch64-fpu.xml: Add ieee half view.
7445 * features/aarch64-sve.c (create_feature_aarch64_fpu): Likewise.
7446 * gdbtypes.c (gdbtypes_post_init): Add builtin_half
7447 * gdbtypes.h (struct builtin_type): Likewise.
7448 (struct objfile_type): Likewise.
7449
66b8bb74
SM
74502019-05-12 Paul Naert <paul.naert@polymtl.ca>
7451
7452 * language.c (language_sniff_from_mangled_name): Fix "langauge"
7453 typo.
7454 * location.h (string_to_event_location): Likewise.
7455
21c219fd
JB
74562019-05-11 Joel Brobecker <brobecker@adacore.com>
7457
7458 GDB 8.3 released.
7459
13674803
SM
74602019-05-10 Simon Marchi <simon.marchi@efficios.com>
7461
7462 * breakpoint.h (fix_multi_location_breakpoint_output_globally):
7463 New variable declaration.
7464 * breakpoint.c (fix_multi_location_breakpoint_output_globally):
7465 New variable.
7466 (print_one_breakpoint): Use ui_out::test_flags and new global
7467 variable to compute use_fixed_output.
7468 * mi/mi-main.h (mi_multi_location_breakpoint_output_fixed):
7469 Remove.
7470 * mi/mi-main.c (fix_multi_location_breakpoint_output): Remove.
7471 (mi_multi_location_breakpoint_output_fixed): Remove.
7472 (mi_cmd_fix_multi_location_breakpoint_output): Adjust to set the
7473 new variable.
7474 * mi/mi-out.c (mi_ui_out::mi_ui_out): Set
7475 fix_multi_location_breakpoint_output flag if version >= 3.
7476 * ui-out.h (enum ui_out_flag)
7477 <fix_multi_location_breakpoint_output>: New enumerator.
7478
a9eac7f9
SM
74792019-05-10 Simon Marchi <simon.marchi@efficios.com>
7480
7481 * contrib/cc-with-tweaks.sh: Validate dwz's work.
7482
71bed2db
TT
74832019-05-10 Tom Tromey <tromey@adacore.com>
7484
7485 * ada-lang.c (catch_ada_completer): New function.
7486 (_initialize_ada_language): Use it.
7487
24c54127
TT
74882019-05-10 Tom Tromey <tromey@adacore.com>
7489
7490 * thread.c (print_thread_info): Make "requested_threads" const.
7491 * gdbthread.h (print_thread_info): Make "requested_threads"
7492 const.
7493 * ada-tasks.c (print_ada_task_info): Make "taskno_str" const.
7494 * ada-lang.h (print_ada_task_info): Make "taskno_str" const.
7495
7a102139
TT
74962019-05-08 Tom Tromey <tom@tromey.com>
7497
7498 * gdbtypes.c (objfile_type_data): Change type.
7499 (objfile_type, _initialize_gdbtypes): Update.
7500
924d79e2
TT
75012019-05-08 Tom Tromey <tom@tromey.com>
7502
7503 * dwarf2-frame.c (dwarf2_frame_objfile_data): Change type.
7504 (dwarf2_frame_find_fde, dwarf2_build_frame_info)
7505 (_initialize_dwarf2_frame): Update.
7506
4c58e337
TT
75072019-05-08 Tom Tromey <tom@tromey.com>
7508
7509 * objc-lang.c (objc_objfile_data): Change type.
7510 (find_methods): Update.
7511 (_initialize_objc_lang): Remove.
7512
d772d2ab
TT
75132019-05-08 Tom Tromey <tom@tromey.com>
7514
7515 * stabsread.c (rs6000_builtin_type_data): Change type.
7516 (rs6000_builtin_type, _initialize_stabsread): Update.
7517
d11d83f4
TT
75182019-05-08 Tom Tromey <tom@tromey.com>
7519
7520 * mips-tdep.c (mips_pdr_data): Remove.
7521 (_initialize_mips_tdep): Update.
7522
9a73f0ad
TT
75232019-05-08 Tom Tromey <tom@tromey.com>
7524
7525 * hppa-tdep.c (hppa_objfile_priv_data): Change type.
7526 (hppa_init_objfile_priv_data, read_unwind_info)
7527 (find_unwind_entry, _initialize_hppa_tdep): Update.
7528
8127a2fa
TT
75292019-05-08 Tom Tromey <tom@tromey.com>
7530
7531 * elfread.c (elf_objfile_gnu_ifunc_cache_data): Change type.
7532 (elf_gnu_ifunc_record_cache): Update. Don't allocate hash table
7533 on obstack.
7534 (elf_gnu_ifunc_resolve_by_cache, _initialize_elfread): Update.
7535
91d3055d
TT
75362019-05-08 Tom Tromey <tom@tromey.com>
7537
7538 * mdebugread.c (basic_type_data): Change type.
7539 (basic_type, _initialize_mdebugread): Update.
7540
31930bd3
TT
75412019-05-08 Tom Tromey <tom@tromey.com>
7542
7543 * common/gdb_unique_ptr.h (struct noop_deleter): New.
7544
bdb3ed9e
TT
75452019-05-08 Tom Tromey <tom@tromey.com>
7546
7547 * nto-tdep.c (nto_inferior_data_reg): Change type.
7548 (nto_inferior_data): Update.
7549 (nto_inferior_data_cleanup, nto_new_inferior_data)
7550 (_initialize_nto_tdep): Remove.
7551 * nto-tdep.h (struct nto_inferior_data): Add initializers.
7552
f37b313d
TT
75532019-05-08 Tom Tromey <tom@tromey.com>
7554
7555 * ada-lang.c (struct ada_inferior_data): Add initializers.
7556 (ada_inferior_data): Change type.
7557 (ada_inferior_data_cleanup): Remove.
7558 (get_ada_inferior_data, ada_inferior_exit)
7559 (struct ada_pspace_data): Add initializers, destructor.
7560 (ada_pspace_data_handle): Change type.
7561 (get_ada_pspace_data): Update.
7562 (ada_pspace_data_cleanup): Remove.
7563
24699405
TT
75642019-05-08 Tom Tromey <tom@tromey.com>
7565
7566 * coffread.c (struct coff_symfile_info): Add initializers.
7567 (coff_objfile_data_key): Move lower. Change type.
7568 (coff_symfile_init, coff_symfile_read, _initialize_coffread):
7569 Update.
7570 (coff_free_info): Remove.
7571
d4e05d2f
TT
75722019-05-08 Tom Tromey <tom@tromey.com>
7573
7574 * fbsd-tdep.c (struct fbsd_pspace_data): Add initializers.
7575 (fbsd_pspace_data_handle): Move lower. Change type.
7576 (get_fbsd_pspace_data): Update.
7577 (fbsd_pspace_data_cleanup): Remove.
7578 (_initialize_fbsd_tdep): Update.
7579
14ef6690
TT
75802019-05-08 Tom Tromey <tom@tromey.com>
7581
7582 * ada-tasks.c (ada_tasks_pspace_data_handle): Change type.
7583 (get_ada_tasks_pspace_data): Update.
7584 (ada_tasks_pspace_data_cleanup): Remove.
7585 (_initialize_tasks): Update.
7586 (ada_tasks_inferior_data_handle): Change type.
7587 (get_ada_tasks_inferior_data): Update.
7588 (ada_tasks_inferior_data_cleanup): Remove.
7589 (struct ada_tasks_pspace_data): Add initializers.
7590
814cf43a
TT
75912019-05-08 Tom Tromey <tom@tromey.com>
7592
7593 * symfile.h (struct sym_probe_fns) <sym_get_probes>: Change type.
7594 * symfile-debug.c (debug_sym_get_probes): Change type.
7595 * stap-probe.c (handle_stap_probe):
7596 (stap_static_probe_ops::get_probes): Change type.
7597 * probe.h (class static_probe_ops) <get_probes>: Change type.
7598 * probe.c (class any_static_probe_ops) <get_probes>: Change type.
7599 (parse_probes_in_pspace): Update.
7600 (find_probes_in_objfile, find_probe_by_pc, collect_probes):
7601 Update.
7602 (any_static_probe_ops::get_probes): Change type.
7603 * elfread.c (elfread_data): New typedef.
7604 (probe_key): Change type.
7605 (elf_get_probes): Likewise. Update.
7606 (probe_key_free): Remove.
7607 (_initialize_elfread): Update.
7608 * dtrace-probe.c (class dtrace_static_probe_ops) <get_probes>:
7609 Change type.
7610 (dtrace_process_dof_probe, dtrace_process_dof)
7611 (dtrace_static_probe_ops::get_probe): Change type.
7612
02dc647e
TT
76132019-05-08 Tom Tromey <tom@tromey.com>
7614
7615 * xcoffread.c (struct xcoff_symfile_info): Rename from
7616 coff_symfile_info. Add initializers.
7617 (xcoff_objfile_data_key): Move lower. Change type.
7618 (XCOFF_DATA): Rewrite.
7619 (xcoff_free_info): Remove.
7620 (xcoff_symfile_init, _initialize_xcoffread, read_xcoff_symtab)
7621 (read_symbol, read_symbol_lineno, find_linenos, init_stringtab)
7622 (xcoff_initial_scan): Update.
7623
09232438
TT
76242019-05-08 Tom Tromey <tom@tromey.com>
7625
7626 * solib-svr4.c (struct svr4_info): Add initializers and
7627 destructor.
7628 <probes_table>: Now an htab_up.
7629 (solib_svr4_pspace_data): Change type.
7630 (free_probes_table): Simplify.
7631 (~svr4_info): Rename from svr4_pspace_data_cleanup.
7632 (get_svr4_info, probes_table_htab_remove_objfile_probes)
7633 (probes_table_remove_objfile_probes, register_solib_event_probe)
7634 (solib_event_probe_at, svr4_update_solib_event_breakpoint)
7635 (_initialize_svr4_solib): Update.
7636
7b4a314f
TT
76372019-05-08 Tom Tromey <tom@tromey.com>
7638
7639 * remote.c (remote_pspace_data): Change type.
7640 (remote_pspace_data_cleanup): Remove.
7641 (get_remote_exec_file, set_pspace_remote_exec_file)
7642 (_initialize_remote): Update.
7643
51d3063a
TT
76442019-05-08 Tom Tromey <tom@tromey.com>
7645
7646 * breakpoint.c (breakpoint_objfile_key): Change type.
7647 (get_breakpoint_objfile_data): Update.
7648 (free_breakpoint_objfile_data): Remove.
7649 (_initialize_breakpoint): Update.
7650
89fb8848
TT
76512019-05-08 Tom Tromey <tom@tromey.com>
7652
7653 * linux-tdep.c (struct linux_info): Add initializers.
7654 (linux_inferior_data): Move. Change type.
7655 (invalidate_linux_cache_inf): Update.
7656 (linux_inferior_data_cleanup): Remove.
7657 (get_linux_inferior_data, _initialize_linux_tdep): Update.
7658
e9b89e2d
TT
76592019-05-08 Tom Tromey <tom@tromey.com>
7660
7661 * auxv.c (auxv_inferior_data): Move. Change type.
7662 (auxv_inferior_data_cleanup): Remove.
7663 (invalidate_auxv_cache_inf): Rewrite.
7664 (get_auxv_inferior_data, _initialize_auxv): Update.
7665
8c42777c
TT
76662019-05-08 Tom Tromey <tom@tromey.com>
7667
7668 * symfile-debug.c (struct debug_sym_fns_data): Add initializers.
7669 (symfile_debug_objfile_data_key): Change type.
7670 (symfile_debug_installed, debug_qf_has_symbols)
7671 (debug_qf_find_last_source_symtab)
7672 (debug_qf_forget_cached_source_info)
7673 (debug_qf_map_symtabs_matching_filename, debug_qf_lookup_symbol)
7674 (debug_qf_print_stats, debug_qf_dump)
7675 (debug_qf_expand_symtabs_for_function)
7676 (debug_qf_expand_all_symtabs)
7677 (debug_qf_expand_symtabs_with_fullname)
7678 (debug_qf_map_matching_symbols)
7679 (debug_qf_expand_symtabs_matching)
7680 (debug_qf_find_pc_sect_compunit_symtab)
7681 (debug_qf_map_symbol_filenames)
7682 (debug_qf_find_compunit_symtab_by_address, debug_sym_get_probes)
7683 (debug_sym_new_init, debug_sym_init, debug_sym_read)
7684 (debug_sym_read_psymbols, debug_sym_finish, debug_sym_offsets)
7685 (debug_sym_read_linetable, debug_sym_relocate): Update.
7686 (symfile_debug_free_objfile): Remove.
7687 (install_symfile_debug_logging, _initialize_symfile_debug):
7688 Update.
7689
5bfd760d
TT
76902019-05-08 Tom Tromey <tom@tromey.com>
7691
7692 * dwarf2read.h (struct dwarf2_per_objfile): Don't inherit from
7693 allocate_on_obstack.
7694 * dwarf2read.c (dwarf2_objfile_data_key): Change type.
7695 (get_dwarf2_per_objfile): Update.
7696 (set_dwarf2_per_objfile): Remove.
7697 (dwarf2_has_info, dwarf2_get_section_info): Update.
7698 (dwarf2_free_objfile): Remove.
7699 (_initialize_dwarf2_read): Update.
7700
e85e19b4
TT
77012019-05-08 Tom Tromey <tom@tromey.com>
7702
7703 * auto-load.c (struct auto_load_pspace_info): Add destructor and
7704 initializers.
7705 <unsupported_script_warning_printed,
7706 script_not_found_warning_printed>: Now bool.
7707 (auto_load_pspace_data): Change type.
7708 (~auto_load_pspace_info): Rename from
7709 auto_load_pspace_data_cleanup.
7710 (get_auto_load_pspace_data, init_loaded_scripts_info)
7711 (clear_section_scripts, maybe_print_unsupported_script_warning)
7712 (maybe_print_script_not_found_warning, _initialize_auto_load):
7713 Update.
7714
f6aa7436
TT
77152019-05-08 Tom Tromey <tom@tromey.com>
7716
7717 * objfiles.c (objfile_pspace_info): Add destructor and
7718 initializers.
7719 (objfiles_pspace_data): Change type.
7720 (~objfile_pspace_info): Rename from objfiles_pspace_data_cleanup.
7721 (get_objfile_pspace_data): Update.
7722 (objfiles_bfd_data): Change type.
7723 (get_objfile_bfd_data): Update.
7724 (objfile_bfd_data_free, _initialize_objfiles): Remove.
7725
6ae614f6
TT
77262019-05-08 Tom Tromey <tom@tromey.com>
7727
7728 * break-catch-syscall.c (catch_syscall_inferior_data): Move.
7729 Change type.
7730 (get_catch_syscall_inferior_data): Update.
7731 (catch_syscall_inferior_data_cleanup): Remove.
7732 (_initialize_break_catch_syscall): Update.
7733
6509b8eb
TT
77342019-05-08 Tom Tromey <tom@tromey.com>
7735
7736 * inflow.c (struct terminal_info): Add destructor and
7737 initializers.
7738 (inflow_inferior_data): Change type.
7739 (~terminal_info): Rename from inflow_inferior_data_cleanup.
7740 (get_inflow_inferior_data, inflow_inferior_exit)
7741 (swap_terminal_info, _initialize_inflow): Update.
7742
35632941
TT
77432019-05-08 Tom Tromey <tom@tromey.com>
7744
7745 * target-dcache.c (target_dcache_cleanup): Remove.
7746 (target_dcache_aspace_key): Change type.
7747 (target_dcache_init_p, target_dcache_invalidate)
7748 (target_dcache_get, target_dcache_get_or_init)
7749 (_initialize_target_dcache): Update.
7750 * dcache.h (struct dcache_deleter): New.
7751
3017b94d
TT
77522019-05-08 Tom Tromey <tom@tromey.com>
7753
7754 * symtab.c (struct symbol_cache): Add destructor and
7755 initializers.
7756 (symbol_cache_key): Move. Change type.
7757 (make_symbol_cache, free_symbol_cache): Remove.
7758 (get_symbol_cache): Update.
7759 (symbol_cache_cleanup): Remove.
7760 (ALL_PSPACES, symbol_cache_flush)
7761 (maintenance_print_symbol_cache)
7762 (maintenance_print_symbol_cache_statistics, _initialize_symtab):
7763 Update.
7764
a32ad8c5
TT
77652019-05-08 Tom Tromey <tom@tromey.com>
7766
7767 * symtab.c (struct main_info): Add destructor and initializers.
7768 (main_progspace_key): Move. Change type.
7769 (get_main_info): Update.
7770 (main_info_cleanup): Remove.
7771 (_initialize_symtab): Update.
7772
5f6e90a0
TT
77732019-05-08 Tom Tromey <tom@tromey.com>
7774
7775 * registry.h (DECLARE_REGISTRY): Define the _key class.
7776
1bd0c6e4
AB
77772019-05-08 Andrew Burgess <andrew.burgess@embecosm.com>
7778
7779 * NEWS: Merge two 'New commands' sections.
7780
2228ef77
XR
77812019-05-08 Joel Brobecker <brobecker@adacore.com>
7782
7783 * ada-valprint.c (ada_val_print_gnat_array): Remove language
7784 parameter and use Ada language definition instead.
7785 (ada_val_print_ptr): Remove unused language parameter.
7786 (ada_val_print_num): Remove language parameter and use Ada language
7787 definition instead.
7788 (ada_val_print_enum, ada_val_print_flt): Remove unused language
7789 parameter.
7790 (ada_val_print_struct_union, ada_val_print_ref): Remove language
7791 parameter and use Ada language definition instead.
7792 (ada_val_print_1): Update all ada_val_print_xxx calls.
7793 Remove language parameter.
7794 (ada_val_print): Update ada_val_print_1 call.
7795
60fcc1c3
TT
77962019-05-08 Tom Tromey <tromey@adacore.com>
7797
7798 * remote.c (remote_hw_watchpoint_limit)
7799 (remote_hw_watchpoint_length_limit, remote_hw_breakpoint_limit):
7800 Now static.
7801
ed2b7c17
TT
78022019-05-08 Tom Tromey <tromey@adacore.com>
7803
7804 * maint.c (_initialize_maint_cmds): Move initialization code to
7805 remote.c.
7806 (watchdog, show_watchdog): Move to remote.c.
7807 * remote.c (watchdog, show_watchdog): Move from maint.c. Make
7808 "watchdog" static.
7809 (_initialize_remote): Move initialization code from maint.c.
7810 * defs.h (watchdog): Don't declare.
7811
b0be6c91
TT
78122019-05-08 Tom Tromey <tromey@adacore.com>
7813
7814 * tui/tui-interp.c: Include main.h.
7815 * interps.c: Include main.h.
7816 * main.h (interpreter_p): Declare.
7817 * defs.h (interpreter_p): Don't declare.
7818
587ee17b
TT
78192019-05-08 Tom Tromey <tromey@adacore.com>
7820
7821 * dwarf2loc.c: Include dwarf2read.h.
7822 * defs.h (read_unsigned_leb128): Don't declare.
7823 * dwarf2read.h (read_unsigned_leb128): Declare.
7824
ca1df239
TT
78252019-05-08 Tom Tromey <tromey@adacore.com>
7826
7827 * utils.c (fputs_maybe_filtered): Call can_emit_style_escape as a
7828 method.
7829
99f20f08
TT
78302019-05-08 Tom Tromey <tromey@adacore.com>
7831
7832 * utils.c (fputs_maybe_filtered): Reset style after paging, even
7833 when no wrap column is set.
7834
80e55b13
TT
78352019-05-08 Tom Tromey <tromey@adacore.com>
7836
7837 * c-lang.c (c_get_string): Handle non-C-style arrays.
7838
9d3421af
TT
78392019-05-08 Tom Tromey <tromey@adacore.com>
7840
7841 * typeprint.c (print_offset_data::update): Print the bit offset,
7842 not the number of bits remaining.
7843
844333e2
TT
78442019-05-08 Tom Tromey <tromey@adacore.com>
7845
7846 * typeprint.c (print_offset_data::maybe_print_hole): Add extra
7847 padding at end of comment.
7848
988915ee
TT
78492019-05-08 Tom Tromey <tromey@adacore.com>
7850
7851 * dwarf2loc.c (dwarf2_evaluate_property) <PROP_ADDR_OFFSET>:
7852 Compare main types.
7853
26bfd823
TT
78542019-05-06 Tom Tromey <tom@tromey.com>
7855
7856 * common/scoped_mmap.c: Include common-defs.h.
7857 * common/scoped_mmap.h: Don't include config.h.
7858
89055eaa
TT
78592019-05-04 Tom Tromey <tom@tromey.com>
7860
7861 * aarch64-tdep.c (stack_item_t): Remove typedef and DEF_VEC.
7862 (struct aarch64_call_info): Add initializers.
7863 <si>: Now a std::vector.
7864 (pass_on_stack, aarch64_push_dummy_call): Update.
7865
5da01df5
TT
78662019-05-04 Simon Marchi <simon.marchi@efficios.com>
7867 Tom Tromey <tom@tromey.com>
7868
7869 * ppc-linux-nat.c (thread_points_p): Remove typedef and DEF_VEC.
7870 (ppc_threads): Now a std::vector. Now static.
7871 (hwdebug_find_thread_points_by_tid)
7872 (ppc_linux_nat_target::low_new_thread, ppc_linux_thread_exit):
7873 Update.
7874
fbdf05a1
TT
78752019-05-04 Tom Tromey <tom@tromey.com>
7876
7877 * arc-tdep.c (arc_tdesc_init): Return bool.
7878
06d16ec9
TT
78792019-05-04 Tom Tromey <tom@tromey.com>
7880
7881 * arm-linux-nat.c (arm_linux_nat_target::can_use_hw_breakpoint):
7882 Use gdb_assert_not_reached.
7883
9c056022
TT
78842019-05-04 Tom Tromey <tom@tromey.com>
7885
7886 * compile/compile-cplus-types.c (compile_cplus_convert_enum): Use
7887 "false".
7888
fa9c2a59
TT
78892019-05-04 Tom Tromey <tom@tromey.com>
7890
7891 * arc-tdep.c (arc_tdesc_init): Use bool.
7892
e2eb806a
TT
78932019-05-04 Tom Tromey <tom@tromey.com>
7894
7895 * stack.c (select_frame_for_mi): Use "false", not "FALSE".
7896
6fe87677
TT
78972019-05-04 Tom Tromey <tom@tromey.com>
7898
7899 * cli/cli-cmds.c (valid_command_p): Return bool.
7900
7f008c9e
TT
79012019-05-04 Tom Tromey <tom@tromey.com>
7902
7903 * cli/cli-decode.c (valid_user_defined_cmd_name_p): Return bool.
7904 * command.h (valid_user_defined_cmd_name_p): Channge return type.
7905
b6484282
RT
79062019-05-04 Raul Tambre <raul@tambre.ee>
7907
7908 * python/lib/gdb/prompt.py (_ExtendedPrompt)
7909 <before_prompt_hook, get_show_string>: Fix incorrect use of 'is'
7910 operator for comparison.
7911
af97b416
TT
79122019-05-04 Tom Tromey <tom@tromey.com>
7913
7914 * psymtab.c (psymbol_name_matches, match_partial_symbol)
7915 (lookup_partial_symbol, print_partial_symbols)
7916 (recursively_search_psymtabs, sort_pst_symbols, psymbol_hash)
7917 (psymbol_compare): Update.
7918 (add_psymbol_to_bcache): Clear the entire psymbol.
7919 (maintenance_check_psymtabs): Update.
7920 * psympriv.h (struct partial_symbol): Don't derive from
7921 general_symbol_info.
7922 <obj_section, unrelocated_address, address,
7923 set_unrelocated_address>: Update.
7924 <ginfo>: New member.
7925 * dwarf-index-write.c (write_psymbols, debug_names::insert)
7926 (debug_names::write_psymbols): Update.
7927
9d6d4be8
TV
79282019-05-04 Tom de Vries <tdevries@suse.de>
7929
7930 * contrib/cc-with-tweaks.sh: Support -n arg.
7931
66452beb
PW
79322019-05-04 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7933
7934 * corelow.c (core_target::detach): Ensure frame cache and
7935 register caches are cleared.
7936 inferior.c (exit_inferior_1): Likewise.
7937
bde09ab7
TT
79382019-05-03 Sandra Loosemore <sandra@codesourcery.com>
7939 Tom Tromey <tom@tromey.com>
7940
7941 * dictionary.c (collate_pending_symbols_by_language): Remove
7942 "struct" from foreach.
7943 * symtab.c (lookup_global_symbol_from_objfile)
7944 (lookup_symbol_in_objfile_from_linkage_name): Remove "struct" from
7945 foreach.
7946 * ser-tcp.c (net_open): Remove "struct" from foreach.
7947 * objfiles.c (objfile_relocate, objfile_rebase)
7948 (objfile_has_symbols): Remove "struct" from foreach.
7949 * minsyms.c (lookup_minimal_symbol_by_pc_section): Remove "struct"
7950 from foreach.
7951 * dwarf2read.c (handle_struct_member_die): Remove "struct" from
7952 foreach.
7953 * darwin-nat.c (thread_info_from_private_thread_info): Remove
7954 "struct" from foreach.
7955 * ada-lang.c (create_excep_cond_exprs)
7956 (ada_exception_catchpoint_cond_string): Remove "struct" from
7957 foreach.
7958
222a8d25
TT
79592019-05-03 Tom Tromey <tromey@adacore.com>
7960
7961 * ada-exp.y (convert_char_literal): Check suffix of each
7962 enumerator.
7963
fcd60b84
DP
79642019-05-03 Dilyan Palauzov <dilyan.palauzov@aegee.org>
7965
7966 PR ada/21406:
7967 * ada-exp.y (yywrap): Don't define.
7968 * ada-lex.l (%option): Add noyywrap
7969 (yywrap): Remove.
7970
5f2459c2
EZ
79712019-05-03 Eli Zaretskii <eliz@gnu.org>
7972
353ea2d1
EZ
7973 * common/common-defs.h [__MINGW32__ || __CYGWIN__]: Define
7974 _WIN32_WINNT to the XP level, unless already defined to a higher
7975 level.
7976
7977 * unittests/parse-connection-spec-selftests.c:
7978 * ser-tcp.c:
7979 * common/netstuff.c [USE_WIN32API]: Remove the _WIN32_WINNT
7980 override.
7981
5f2459c2
EZ
7982 * symfile.c (find_separate_debug_file): Remove colon from the
7983 drive spec of DOS/Windows file names of the target, so that the
7984 file name produced from DEBUGDIR and the target's directory will
7985 be valid on DOS/Windows systems.
7986
80062eb9
AB
79872019-05-02 Andrew Burgess <andrew.burgess@embecosm.com>
7988
7989 * rust-lang.c (val_print_struct): Handle printing structures
7990 containing strings.
7991
b8c05e85
TT
79922019-05-02 Tom Tromey <tromey@adacore.com>
7993
7994 * valarith.c (_initialize_valarith): Remove.
7995
4504bbde
TT
79962019-05-01 Tom Tromey <tromey@adacore.com>
7997
7998 * ada-lang.c (ada_value_primitive_field): Treat more fields as
7999 bitfields.
8000
d48e62f4
TT
80012019-05-01 Tom Tromey <tromey@adacore.com>
8002
8003 * ada-lang.c (ada_value_assign): Correctly compute starting offset
8004 for big-endian copies.
8005
15f18d14
AT
80062019-04-30 Ali Tamur <tamur@google.com>
8007 * gdb/dwarf2read.c (read_3_bytes): New declaration.
8008 (read_attribute_value): Added DW_FORM_strx1-4 cases.
8009 (read_3_bytes): New function.
8010
ab4ee614
JB
80112019-04-30 Joel Brobecker <brobecker@adacore.com>
8012
8013 * windows-nat.c (main_thread_id): Delete.
8014 (handle_output_debug_string): Replace main_thread_id by
8015 current_event.dwThreadId.
8016 (fake_create_process): Likewise.
8017 (get_windows_debug_event) <CREATE_PROCESS_DEBUG_EVENT>:
8018 Do not set main_thread_id.
8019 <LOAD_DLL_DEBUG_EVENT>: Replace main_thread_id by
8020 current_event.dwThreadId.
8021 <UNLOAD_DLL_DEBUG_EVENT>: Likewise.
8022
8ed5b76e
JB
80232019-04-30 Joel Brobecker <brobecker@adacore.com>
8024
8025 * windows-nat.c (get_windows_debug_event) <EXIT_PROCESS_DEBUG_EVENT>:
8026 Use current_event.dwThreadId instead of main_thread_id.
8027
2ff0a947
TT
80282019-04-30 Tom Tromey <tromey@adacore.com>
8029
8030 * ada-lang.c (ada_lookup_simple_minsyms): New function.
8031 (create_excep_cond_exprs): Iterate over program spaces.
8032 (ada_exception_catchpoint_cond_string): Examine all minimal
8033 symbols for exception types.
8034
a776957c
TT
80352019-04-30 Tom Tromey <tromey@adacore.com>
8036
8037 PR c++/24470:
8038 * dwarf2read.c (process_structure_scope): Handle case where type
8039 has template parameters but no symbol was created.
8040
bc68014d
AB
80412019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8042 Chris January <chris.january@arm.com>
8043
8044 * f-typeprint.c (f_type_print_base): Print 'allocatable' type
8045 qualifier.
8046 * gdbtypes.h (TYPE_IS_ALLOCATABLE): Define.
8047
f1fdc960
AB
80482019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8049
8050 * f-typeprint.c (f_print_type): Update rules for printing
8051 whitespace.
8052 (f_type_print_varspec_suffix): Likewise.
8053
bf7a4de1
AB
80542019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8055 Chris January <chris.january@arm.com>
8056
8057 * f-typeprint.c (f_type_print_varspec_suffix): Handle printing
8058 function arguments.
8059
bbe75b9d
AB
80602019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8061
8062 * f-lang.c (build_fortran_types): Change name of void type to
8063 lower case.
8064 * f-typeprint.c (f_type_print_base): Print the name of the void
8065 type, rather than a fixed string.
8066 * f-valprint.c (f_decorations): Use lower case void string.
8067
1db455a7
AB
80682019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8069 Chris January <chris.january@arm.com>
8070
8071 * dwarf2read.c (dwarf2_init_complex_target_type): Use different
8072 types for Fortran.
8073
b6d03bb2
AB
80742019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8075 Chris January <chris.january@arm.com>
8076 David Lecomber <david.lecomber@arm.com>
8077
8078 * f-exp.y (BINOP_INTRINSIC): New token.
8079 (exp): New parser rule handling BINOP_INTRINSIC.
8080 (f77_keywords): Add new builtin procedures.
8081 * f-lang.c (evaluate_subexp_f): Handle BINOP_MOD, UNOP_FORTRAN_CEILING,
8082 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8083 (operator_length_f): Handle UNOP_FORTRAN_CEILING,
8084 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8085 (print_unop_subexp_f): New function.
8086 (print_binop_subexp_f): New function.
8087 (print_subexp_f): Handle UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
8088 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8089 (dump_subexp_body_f): Likewise.
8090 (operator_check_f): Likewise.
8091 * fortran-operator.def: Add UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
8092 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX
8093
83228e93
AB
80942019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8095
8096 * gdb/expprint.c (dump_subexp_body_standard): Remove use of
8097 UNOP_KIND.
8098 * gdb/expression.h (exp_opcode): Include 'fortran-operator.def'.
8099 * gdb/f-exp.y (exp): Rename UNOP_KIND to UNOP_FORTRAN_KIND.
8100 * gdb/f-lang.c (evaluate_subexp_f): Likewise.
8101 (operator_length_f): New fuction.
8102 (print_subexp_f): New function.
8103 (op_name_f): New function.
8104 (dump_subexp_body_f): New function.
8105 (operator_check_f): New function.
8106 (exp_descriptor_f): Replace standard expression handling functions
8107 with new functions.
8108 * gdb/fortran-operator.def: New file.
8109 * gdb/parse.c (operator_length_standard): Remove use of UNOP_KIND.
8110 * gdb/std-operator.def: Remove UNOP_KIND.
8111
6fdcd7cc
AB
81122019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8113
8114 * std-operator.def: Remove unbalanced, stray double quote
8115 character.
8116
2e62ab40
AB
81172019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8118 Chris January <chris.january@arm.com>
8119 Daniel Everett <daniel.everett@arm.com>
8120 Nick Forrington <nick.forrington@arm.com>
8121 Richard Bunt <richard.bunt@arm.com>
8122
8123 * cp-valprint.c (cp_print_value_fields): Allow an additional level
8124 of depth when printing anonymous structs or unions.
8125 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
8126 Don't print either the top-level value, or the children if the
8127 max-depth is exceeded.
8128 (ppscm_print_children): When printing the key of a map, allow one
8129 extra level of depth.
8130 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Don't
8131 print either the top-level value, or the children if the max-depth
8132 is exceeded.
8133 (print_children): When printing the key of a map, allow one extra
8134 level of depth.
8135 * python/py-value.c (valpy_format_string): Add max_depth keyword.
8136 * valprint.c: (PRINT_MAX_DEPTH_DEFAULT): Define.
8137 (user_print_options): Initialise max_depth field.
8138 (val_print_scalar_or_string_type_p): New function.
8139 (val_print): Check to see if the max depth has been reached.
8140 (val_print_check_max_depth): Define new function.
8141 (show_print_max_depth): New function.
8142 (_initialize_valprint): Add 'print max-depth' option.
8143 * valprint.h (struct value_print_options) <max_depth>: New field.
8144 (val_print_check_max_depth): Declare new function.
8145 * NEWS: Document new feature.
8146
4be290b2
AB
81472019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8148
8149 * ada-lang.c (ada_language_defn): Initialise new field.
8150 * c-lang.c (c_is_string_type_p): New function.
8151 (c_language_defn): Initialise new field.
8152 (cplus_language_defn): Initialise new field.
8153 (asm_language_defn): Initialise new field.
8154 (minimal_language_defn): Initialise new field.
8155 * c-lang.h (c_is_string_type_p): Declare new function.
8156 * d-lang.c (d_language_defn): Initialise new field.
8157 * f-lang.c (f_is_string_type_p): New function.
8158 (f_language_defn): Initialise new field.
8159 * go-lang.c (go_is_string_type_p): New function.
8160 (go_language_defn): Initialise new field.
8161 * language.c (default_is_string_type_p): New function.
8162 (unknown_language_defn): Initialise new field.
8163 (auto_language_defn): Initialise new field.
8164 * language.h (struct language_defn) <la_is_string_type_p>: New
8165 member variable.
8166 (default_is_string_type_p): Declare new function.
8167 * m2-lang.c (m2_language_defn): Initialise new field.
8168 * objc-lang.c (objc_language_defn): Initialise new field.
8169 * opencl-lang.c (opencl_language_defn): Initialise new field.
8170 * p-lang.c (pascal_is_string_type_p): New function.
8171 (pascal_language_defn): Initialise new field.
8172 * rust-lang.c (rust_is_string_type_p): New function.
8173 (rust_language_defn): Initialise new field.
8174
721b08c6
AB
81752019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8176
8177 * language.h (struct language_defn) <la_struct_too_deep_ellipsis>:
8178 New field.
8179 * ada-lang.c (ada_language_defn): Initialise new field.
8180 * c-lang.c (c_language_defn): Likewise.
8181 (cplus_language_defn): Likewise.
8182 (asm_language_defn): Likewise.
8183 (minimal_language_defn): Likewise.
8184 * d-lang.c (d_language_defn): Likewise.
8185 * f-lang.c (f_language_defn): Likewise.
8186 * go-lang.c (go_language_defn): Likewise.
8187 * language.c (unknown_language_defn): Likewise.
8188 (auto_language_defn): Likewise.
8189 * m2-lang.c (m2_language_defn): Likewise.
8190 * objc-lang.c (objc_language_defn): Likewise.
8191 * opencl-lang.c (opencl_language_defn): Likewise.
8192 * p-lang.c (pascal_language_defn): Likewise.
8193 * rust-lang.c (rust_language_defn): Likewise.
8194
fc913e53
AB
81952019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8196
8197 * ada-lang.c (ada_is_character_type): Change return type to bool.
8198 (ada_is_string_type): Likewise.
8199 * ada-lang.h (ada_is_character_type): Update declaration
8200 (ada_is_string_type): Likewise.
8201
fa731fa0
PW
82022019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8203
8204 Support style in 'frame|thread apply'
8205
8206 * gdbcmd.h (execute_command_to_string): New term_out parameter.
8207 * record.c (record_start, record_stop): Update callers of
8208 execute_command_to_string with false.
8209 * guile/guile.c (gdbscm_execute_gdb_command): Likewise.
8210 * ui-file.h (class ui_file): New term_out and can_emit_style_escape
8211 methods.
8212 (class string_file): New constructor with term_out parameter.
8213 Override methods term_out and can_emit_style_escape. New member
8214 term_out.
8215 (class stdio_file): Override can_emit_style_escape.
8216 (class tee_file): Override term_out and can_emit_style_escape.
8217 * utils.h (can_emit_style_escape): Remove.
8218 * utils.c (can_emit_style_escape): Likewise.
8219 Update all callers of can_emit_style_escape (SOMESTREAM) to
8220 SOMESTREAM->can_emit_style_escape.
8221 * source-cache.c (source_cache::get_source_lines): Likewise.
8222 * stack.c (frame_apply_command_count): Call execute_command_to_string
8223 passing the term_out characteristic of the current gdb_stdout.
8224 * thread.c (thr_try_catch_cmd): Likewise.
8225 * top.c (execute_command_to_string): pass term_out parameter
8226 to construct the string_file for the command output.
8227 * ui-file.c (term_cli_styling): New function (most code moved
8228 from utils.c can_emit_style_escape).
8229 (string_file::string_file, string_file::can_emit_style_escape,
8230 stdio_file::can_emit_style_escape, tee_file::term_out,
8231 tee_file::can_emit_style_escape): New functions.
8232
136afab8
PW
82332019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8234
8235 * NEWS: Mention the new set|show may-call-functions.
8236 * infcall.c (may_call_functions_p): New variable.
8237 (show_may_call_functions_p): New function.
8238 (call_function_by_hand_dummy): Throws an error if not
8239 may-call-functions.
8240 (_initialize_infcall): Call add_setshow_boolean_cmd for
8241 may-call-functions.
8242
725cbb63
KS
82432019-04-25 Keith Seitz <keiths@redhat.com>
8244
8245 PR c++/24367
8246 * cp-support.c (inspect_type): Don't attempt substitutions
8247 of symbol with the same name.
8248
3d1cbb78
TT
82492019-04-25 Tom Tromey <tromey@adacore.com>
8250
8251 PR gdb/24475:
8252 * event-top.c (gdb_rl_callback_handler): Make "gdb_rl_expt"
8253 static.
8254
94aeb44b
TT
82552019-04-25 Tom Tromey <tromey@adacore.com>
8256
8257 * xml-support.c (struct gdb_xml_parser) <set_error>: Take an
8258 rvalue reference.
8259 (gdb_xml_start_element_wrapper, gdb_xml_end_element_wrapper)
8260 (gdb_xml_parser::parse): Use std::move.
8261 * python/python-internal.h (gdbpy_convert_exception): Take a const
8262 reference.
8263 * python/py-value.c (valpy_getitem, valpy_nonzero): Use
8264 std::move.
8265 * python/py-utils.c (gdbpy_convert_exception): Take a const
8266 reference.
8267 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
8268 Use std::move.
8269 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
8270 Use std::move.
8271 * mi/mi-main.c (mi_print_exception): Take a const reference.
8272 * main.c (handle_command_errors): Take a const reference.
8273 * linespec.c (parse_linespec): Use std::move.
8274 * infcall.c (run_inferior_call): Use std::move.
8275 (call_function_by_hand_dummy): Use std::move.
8276 * exec.c (try_open_exec_file): Use std::move.
8277 * exceptions.h (exception_print, exception_fprintf)
8278 (exception_print_same): Update.
8279 * exceptions.c (print_exception, exception_print)
8280 (exception_fprintf, exception_print_same): Change parameters to
8281 const reference.
8282 * event-top.c (gdb_rl_callback_read_char_wrapper): Update.
8283 * common/new-op.c: Use std::move.
8284 * common/common-exceptions.h (struct gdb_exception): Add move
8285 constructor.
8286 (struct gdb_exception_error, struct gdb_exception_quit, struct
8287 gdb_quit_bad_alloc): Change constructor to move constructor.
8288 (throw_exception): Change parameter to rvalue reference.
8289 * common/common-exceptions.c (throw_exception): Take rvalue
8290 reference.
8291 * cli/cli-interp.c (safe_execute_command): Use std::move.
8292 * breakpoint.c (insert_bp_location, location_to_sals): Use
8293 std::move.
8294
680d7fd5
TT
82952019-04-25 Tom Tromey <tromey@adacore.com>
8296
8297 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception)
8298 (gdbscm_throw_gdb_exception): Take a gdbscm_gdb_exception.
8299 * guile/scm-block.c, guile/scm-breakpoint.c, guile/scm-cmd.c,
8300 guile/scm-disasm.c, guile/scm-frame.c, guile/scm-lazy-string.c,
8301 guile/scm-math.c, guile/scm-param.c, guile/scm-ports.c,
8302 guile/scm-symbol.c, guile/scm-symtab.c, guile/scm-type.c,
8303 guile/scm-value.c: Use unpack.
8304 * guile/guile-internal.h (gdbscm_scm_from_gdb_exception): Take a
8305 gdbscm_gdb_exception.
8306 (gdbscm_throw_gdb_exception): Likewise.
8307 (struct gdbscm_gdb_exception): New.
8308 (unpack): New function.
8309 (gdbscm_wrap): Use unpack.
8310
c6fdd8b2
TT
83112019-04-25 Tom Tromey <tromey@adacore.com>
8312
8313 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
8314 (gdb_rl_callback_handler): Use std::move.
8315 * common/common-exceptions.h (struct gdb_exception): Add move
8316 assignment operator.
8317 (throw_exception_sjlj): Change "exception" to const reference.
8318 * common/common-exceptions.c (exceptions_state_mc_catch): Update.
8319 (throw_exception_sjlj): Change "exception" to const reference.
8320
cc06b668
TT
83212019-04-25 Tom Tromey <tromey@adacore.com>
8322
8323 * xml-support.c (gdb_xml_parser::gdb_xml_parser): Update.
8324 * python/py-value.c (valpy_getitem, valpy_nonzero): Update.
8325 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
8326 Update.
8327 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
8328 Update.
8329 * mi/mi-interp.c (mi_interp::exec): Update.
8330 * linespec.c (parse_linespec): Update.
8331 * infcall.c (run_inferior_call): Update.
8332 * guile/scm-value.c (gdbscm_value_to_lazy_string): Update.
8333 * guile/scm-symbol.c (gdbscm_lookup_symbol)
8334 (gdbscm_lookup_global_symbol): Update.
8335 * guile/scm-param.c (gdbscm_parameter_value): Update.
8336 * guile/scm-frame.c (gdbscm_frame_read_register)
8337 (gdbscm_frame_read_var): Update.
8338 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
8339 * exec.c (try_open_exec_file): Update.
8340 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
8341 (gdb_rl_callback_handler): Update.
8342 * common/common-exceptions.h (exception_none): Don't declare.
8343 * common/common-exceptions.c (exception_none): Don't define.
8344 (struct catcher) <exception>: Update.
8345 * cli/cli-interp.c (safe_execute_command): Update.
8346 * breakpoint.c (insert_bp_location, location_to_sals): Update.
8347
cf532bd1
AT
83482019-04-25 Ali Tamur <tamur@google.com>
8349
8350 * dwarf2read.c (skip_one_die): Add DW_FORM_strx.
8351 (read_attribute_value): Likewise.
8352 (dwarf2_read_addr_index): Update comment.
8353 (read_str_index): Add DW_FORM_strx.
8354 (dwarf2_string_attr): Likewise.
8355 (dwarf2_const_value_attr): Likewise.
8356 (dump_die_shallow): Likewise.
8357 (dwarf2_fetch_constant_bytes): Likewise.
8358 (skip_form_bytes): Likewise.
8359 * testsuite/lib/dwarf.exp (_handle_DW_FORM): Add DW_FORM_strx.
8360
82433e3e
SDJ
83612019-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
8362
8363 PR corefiles/11608
8364 PR corefiles/18187
8365 * linux-tdep.c (dump_mapping_p): Add new parameters ADDR and
8366 OFFSET. Verify if current mapping contains an ELF header.
8367 (linux_find_memory_regions_full): Adjust call to
8368 dump_mapping_p.
8369
723adb65
SL
83702019-04-25 Sandra Loosemore <sandra@codesourcery.com>
8371 Kang Li <kanglictf@gmail.com>
8372
8373 PR gdb/21600
8374
8375 * dwarf2-frame.c (read_initial_length): Be consistent about using
8376 unsigned representation of length.
8377 (decode_frame_entry_1): Likewise. Check for wraparound of
8378 end pointer as well as buffer overflow.
8379
596179f7
SDJ
83802019-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
8381
8382 * aarch64-tdep.c (aarch64_gdbarch_init): Use "pulongest" to print
8383 "vq".
8384
a59240a4
TT
83852019-04-24 Tom Tromey <tromey@adacore.com>
8386
8387 * amd64-tdep.c (amd64_has_unaligned_fields): Ignore bitfields.
8388
f872fdbb
AB
83892019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8390
8391 * s12z-tdep.c (s12z_unwind_pc): Delete.
8392 (s12z_unwind_sp): Delete.
8393 (s12z_gdbarch_init): Don't register deleted functions with
8394 gdbarch.
8395
b614e6f3
AB
83962019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8397
8398 * rl78-tdep.c (rl78_unwind_sp): Delete.
8399 (rl78_gdbarch_init): Don't register deleted function with gdbarch.
8400
14faed38
AB
84012019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8402
8403 * xstormy16-tdep.c (xstormy16_unwind_sp): Delete.
8404 (xstormy16_unwind_pc): Delete.
8405 (xstormy16_dummy_id): Delete.
8406 (xstormy16_gdbarch_init): Don't register deleted functions with
8407 gdbarch.
8408
541aad8a
AB
84092019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8410
8411 * vax-tdep.c (vax_unwind_pc): Delete.
8412 (vax_gdbarch_init): Don't register deleted function with gdbarch.
8413
29222070
AB
84142019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8415
8416 * v850-tdep.c (v850_unwind_sp): Delete.
8417 (v850_unwind_pc): Delete.
8418 (v850_dummy_id): Delete.
8419 (v850_gdbarch_init): Don't register deleted functions with
8420 gdbarch.
8421
0f534d76
AB
84222019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8423
8424 * tilegx-tdep.c (tilegx_unwind_sp): Delete.
8425 (tilegx_unwind_pc): Delete.
8426 (tilegx_unwind_dummy_id): Delete.
8427 (tilegx_gdbarch_init): Don't register deleted functions with
8428 gdbarch.
8429
1ba7b7f9
AB
84302019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8431
8432 * tic6x-tdep.c (tic6x_unwind_sp): Delete.
8433 (tic6x_dummy_id): Delete.
8434 (tic6x_gdbarch_init): Don't register deleted functions with
8435 gdbarch.
8436
d31f262c
AB
84372019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8438
8439 * sparc-tdep.c (sparc_unwind_pc): Delete.
8440 (sparc32_gdbarch_init): Don't register deleted function with
8441 gdbarch.
8442
6d14d64d
AB
84432019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8444
8445 * sh-tdep.c (sh_unwind_sp): Delete.
8446 (sh_unwind_pc): Delete.
8447 (sh_dummy_id): Delete.
8448 (sh_gdbarch_init): Don't register deleted functions with
8449 gdbarch.
8450
a40dde9d
AB
84512019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8452
8453 * score-tdep.c (score_unwind_sp): Delete.
8454 (score_unwind_pc): Delete.
8455 (score_dummy_id): Delete.
8456 (score_gdbarch_init): Don't register deleted functions with
8457 gdbarch.
8458
47c47d69
AB
84592019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8460
8461 * rx-tdep.c (rx_unwind_pc): Delete.
8462 (rx_unwind_sp): Delete.
8463 (rx_dummy_id): Delete.
8464 (rx_gdbarch_init): Don't register deleted functions with
8465 gdbarch. Update comment.
8466
833a4480
AB
84672019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8468
8469 * rs6000-tdep.c (rs6000_unwind_pc): Delete.
8470 (rs6000_dummy_id): Delete.
8471 (rs6000_gdbarch_init): Don't register deleted functions with
8472 gdbarch.
8473
3f2cef49
AB
84742019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8475
8476 * or1k-tdep.c (or1k_dummy_id): Delete.
8477 (or1k_gdbarch_init): Don't register deleted function with gdbarch.
8478
96acf884
AB
84792019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8480
8481 * nios2-tdep.c (nios2_dummy_id): Delete.
8482 (nios2_unwind_sp): Delete.
8483 (nios2_gdbarch_init): Don't register deleted functions with
8484 gdbarch.
8485
ca0ab0aa
AB
84862019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8487
8488 * nds32-tdep.c (nds32_dummy_id): Delete.
8489 (nds32_unwind_pc): Delete.
8490 (nds32_unwind_sp): Delete.
8491 (nds32_gdbarch_init): Don't register deleted functions with
8492 gdbarch.
8493
c8259044
AB
84942019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8495
8496 * msp430-tdep.c (msp430_unwind_pc): Delete.
8497 (msp430_unwind_sp): Delete.
8498 (msp430_dummy_id): Delete.
8499 (msp430_gdbarch_init): Don't register deleted functions with
8500 gdbarch.
8501
27f113c8
AB
85022019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8503
8504 * moxie-tdep.c (moxie_unwind_sp): Delete.
8505 (moxie_unwind_pc): Delete.
8506 (moxie_dummy_id): Delete.
8507 (moxie_gdbarch_init): Don't register deleted functions with
8508 gdbarch.
8509
aee6c3cd
AB
85102019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8511
8512 * mn10300-tdep.c (mn10300_dummy_id): Delete.
8513 (mn10300_unwind_pc): Delete.
8514 (mn10300_unwind_sp): Delete.
8515 (mn10300_push_dummy_call): Use gdbarch_unwind_sp not
8516 mn10300_unwind_sp.
8517 (mn10300_frame_unwind_init): Don't register deleted functions with
8518 gdbarch.
8519
8e2b5aea
AB
85202019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8521
8522 * mep-tdep.c (mep_unwind_pc): Delete.
8523 (mep_unwind_sp): Delete.
8524 (mep_dummy_id): Delete.
8525 (mep_gdbarch_init): Don't register deleted functions with
8526 gdbarch.
8527
43cf3ede
AB
85282019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8529
8530 * m68hc11-tdep.c (m68hc11_unwind_pc): Delete.
8531 (m68hc11_unwind_sp): Delete.
8532 (m68hc11_gdbarch_init): Don't register deleted functions with
8533 gdbarch.
8534
5e79b7bb
AB
85352019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8536
8537 * m32r-tdep.c (m32r_unwind_sp): Delete.
8538 (m32r_unwind_pc): Delete.
8539 (m32r_dummy_id): Delete.
8540 (m32r_gdbarch_init): Don't register deleted functions with
8541 gdbarch.
8542
89b268d8
AB
85432019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8544
8545 * m32c-tdep.c (m32c_unwind_pc): Delete.
8546 (m32c_unwind_sp): Delete.
8547 (m32c_dummy_id): Delete.
8548 (m32c_gdbarch_init): Don't register deleted functions with
8549 gdbarch.
8550
946c28d2
AB
85512019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8552
8553 * gdb/lm32-tdep.c (lm32_unwind_sp): Delete.
8554 (lm32_unwind_pc): Delete.
8555 (lm32_dummy_id): Delete.
8556 (lm32_gdbarch_init): Don't register deleted functions with
8557 gdbarch.
8558
bf12844a
AB
85592019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8560
8561 * gdb/iq2000-tdep.c (iq2000_unwind_sp): Delete.
8562 (iq2000_unwind_pc): Delete.
8563 (iq2000_dummy_id): Delete.
8564 (iq2000_gdbarch_init): Don't register deleted functions with
8565 gdbarch.
8566
ecbc06d2
AB
85672019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8568
8569 * nds32-tdep.c (nds32_type_align): Delete.
8570 (nds32_push_dummy_call): Use type_align instead.
8571
030197b4
AB
85722019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8573
8574 * arm-tdep.c (arm_type_align): Only handle vector override case.
8575 (arm_push_dummy_call): Use type_align.
8576 (arm_gdbarch_init): Register arm_type_align gdbarch function.
8577
b907456c
AB
85782019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8579
8580 * aarch64-tdep.c (aarch64_type_align): Only handle vector override
8581 case.
8582 (pass_on_stack): Use type_align.
8583 (aarch64_gdbarch_init): Register aarch64_type_align gdbarch
8584 function.
8585
9e97ba43
TT
85862019-04-23 Tom Tromey <tromey@adacore.com>
8587
8588 * dwarf2read.c (line_header::file_name_at): Remove unused
8589 overload.
8590
6892f601
TV
85912019-04-23 Tom de Vries <tdevries@suse.de>
8592
8593 PR gdb/24438
8594 * contrib/cc-with-tweaks.sh: Remove superfluous .alt file after dwz
8595 invocation.
8596
336d760d
AT
8597
85982019-03-27 Ali Tamur <tamur@google.com>
8599
8600 * dwarf2-frame.c(dwarf_expr_executor::get_addr_index): Update comment
8601 * dwarf2expr.c(dwarf_expr_context::execute_stack_op): Add DW_OP_addrx
8602 * dwarf2expr.h(dwarf_expr_context::offset): Update comment
8603 (dwarf_expr_context::get_addr_index): Likewise
8604 * dwarf2loc.c(dwarf_evaluate_loc_desc::get_addr_index): Likewise
8605 (symbol_needs_eval_context::get_addr_index): Likewise
8606 (disassemble_dwarf_expression): Add DW_OP_addrx
8607 * dwarf2read.c(attr_value_as_address): Add DW_FORM_addrx
8608 (read_cutu_die_from_dwo): Update comment
8609 (skip_one_die): Add DW_FORM_addrx
8610 (read_attribute_value): Likewise
8611 (var_decode_location): Add DW_OP_addrx
8612 (dwarf2_const_value_attr): Add DW_FORM_addrx
8613 (dump_die_shallow): Likewise
8614 (dwarf2_fetch_constant_bytes): Likewise
8615 (decode_locdesc): Add DW_OP_addrx
8616 (skip_form_bytes): Add DW_FORM_addrx
8617
ad9d13f8
AT
86182019-04-22 Ali Tamur <tamur@google.com>
8619
8620 * MAINTAINERS (Write After Approval): Add self.
8621
d70cc3ba
SM
86222019-04-22 Simon Marchi <simon.marchi@efficios.com>
8623
8624 * solib-svr4.c (get_svr4_info): Add pspace parameter.
8625 (svr4_keep_data_in_core): Pass current_program_space to get_svr4_info.
8626 (open_symbol_file_object): Likewise.
8627 (svr4_default_sos): Add info parameter.
8628 (svr4_read_so_list): Likewise.
8629 (svr4_current_sos_direct): Adjust functions calls to pass down
8630 info.
8631 (svr4_current_sos_1): Add info parameter.
8632 (svr4_current_sos): Call get_svr4_info, pass info down to
8633 svr4_current_sos_1.
8634 (svr4_fetch_objfile_link_map): Pass objfile->pspace to
8635 get_svr4_info.
8636 (svr4_in_dynsym_resolve_code): Pass current_program_space to
8637 get_svr4_info.
8638 (probes_table_htab_remove_objfile_probes): Pass objfile->pspace
8639 to get_svr4_info.
8640 (probes_table_remove_objfile_probes): Likewise.
8641 (register_solib_event_probe): Add info parameter.
8642 (solist_update_incremental): Pass info parameter down to
8643 svr4_read_so_list.
8644 (disable_probes_interface): Add info parameter.
8645 (svr4_handle_solib_event): Pass current_program_space to
8646 get_svr4_info. Adjust disable_probes_interface cleanup.
8647 (svr4_create_probe_breakpoints): Add info parameter, pass it
8648 down to register_solib_event_probe.
8649 (svr4_create_solib_event_breakpoints): Add info parameter,
8650 pass it down to svr4_create_probe_breakpoints.
8651 (enable_break): Pass info down to
8652 svr4_create_solib_event_breakpoints.
8653 (svr4_solib_create_inferior_hook): Pass current_program_space to
8654 get_svr4_info.
8655 (svr4_clear_solib): Likewise.
8656
7905fc35
PA
86572019-04-22 Pedro Alves <palves@redhat.com>
8658
8659 * solib-svr4.c (svr4_free_objfile_observer): New.
8660 (probe_and_action::objfile): New field.
8661 (probes_table_htab_remove_objfile_probes)
8662 (probes_table_remove_objfile_probes): New functions.
8663 (register_solib_event_probe): Add 'objfile' parameter. Store it
8664 in the new probe_and_action. Don't store the probe in 'lookup'.
8665 (svr4_create_probe_breakpoints): Pass objfile to
8666 register_solib_event_probe.
8667 (_initialize_svr4_solib): Register a free_objfile observer.
8668
fb881986
TT
86692019-04-19 Tom Tromey <tom@tromey.com>
8670
8671 * common/queue.h: Remove.
8672
8732db6c
TT
86732019-04-19 Tom Tromey <tom@tromey.com>
8674
8675 * event-loop.c: Don't include "common/queue.h".
8676
97dfbadd
TT
86772019-04-19 Tom Tromey <tom@tromey.com>
8678
8679 * remote.c (remote_target): Use delete.
8680 * remote-notif.h: Include <list>, not "common/queue.h".
8681 (notif_client_p): Remove typedef.
8682 (remote_notif_state): Add constructor, destructor, initializer.
8683 <notif_queue>: Now a std::list.
8684 (remote_notif_state_xfree): Don't declare.
8685 * remote-notif.c (remote_notif_process, handle_notification)
8686 (remote_notif_state_allocate): Update.
8687 (~remote_notif_state): Rename from remote_notif_state_xfree.
8688
cf250e36
TT
86892019-04-19 Tom Tromey <tom@tromey.com>
8690
8691 * symfile.c (reread_symbols): Update.
8692 * objfiles.c (objfile_register_static_link)
8693 (objfile_lookup_static_link): Update
8694 (~objfile) Don't delete static_links.
8695 * objfiles.h (struct objfile) <static_links>: Now an htab_up.
8696
61f4b350
TT
86972019-04-19 Tom Tromey <tom@tromey.com>
8698
8699 * type-stack.h (struct type_stack) <insert>: Constify string.
8700 * type-stack.c (type_stack::insert): Constify string.
8701 * gdbtypes.h (lookup_template_type): Update.
8702 (address_space_name_to_int): Update.
8703 * gdbtypes.c (address_space_name_to_int): Make space_identifier
8704 const.
8705 (lookup_template_type): Make name const.
8706 * c-exp.y: Update rules.
8707 (lex_one_token, classify_name, classify_inner_name)
8708 (c_print_token): Update.
8709 * p-exp.y: Update rules.
8710 (yylex): Update.
8711 * f-exp.y: Update rules.
8712 (yylex): Update.
8713 * d-exp.y: Update rules.
8714 (lex_one_token, classify_name, classify_inner_name): Update.
8715 * parse.c (write_dollar_variable, copy_name): Return std::string.
8716 * parser-defs.h (copy_name): Change return type.
8717 * m2-exp.y: Update rules.
8718 (yylex): Update.
8719 * go-exp.y (lex_one_token): Update.
8720 Update rules.
8721 (classify_unsafe_function, classify_packaged_name)
8722 (classify_name, yylex): Update.
8723
189b8c2e
ST
87242019-04-19 Sergei Trofimovich <siarheit@google.com>
8725
8726 * configure.ac: add --enable-source-highlight switch.
8727 * configure: Regenerate.
8728 * top.c (print_gdb_version): plumb --enable-source-highlight
8729 status to "show configuration".
8730
8ecb59f8
TT
87312019-04-19 Tom Tromey <tromey@adacore.com>
8732
8733 * ada-lang.c (ada_is_variant_part, ada_to_fixed_type_1):
8734 Check ADA_TYPE_P.
8735 (empty_record, ada_template_to_fixed_record_type_1)
8736 (template_to_static_fixed_type)
8737 (to_record_with_fixed_variant_part): Use INIT_NONE_SPECIFIC.
8738 * cp-abi.c (value_rtti_type): Check HAVE_CPLUS_STRUCT.
8739 * gdbtypes.h (INIT_NONE_SPECIFIC, ADA_TYPE_P): New
8740 macros.
8741
62160ec9
TT
87422019-04-19 Ilya Yu. Malakhov <malakhov@mcst.ru>
8743
8744 PR symtab/24423:
8745 * source.c (print_source_lines_base): Advance "iter" when a
8746 control character is seen.
8747
f2ae8bc8
PW
87482019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8749
8750 * inferior.h (struct infcall_suspend_state_deleter):
8751 Catch exception in destructor to avoid crash.
8752
d563b953
PW
87532019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8754
8755 * cli/cli-cmds.c (_initialize_cli_cmds): Move "shell" "!" alias
8756 close to the add_com "shell".
8757
dc34c897
TT
87582019-04-18 Tom Tromey <tromey@adacore.com>
8759
8760 * process-stratum-target.h (class process_stratum_target)
8761 <stratum>: Add "final".
8762
a12e5744
TT
87632019-04-17 Tom Tromey <tromey@adacore.com>
8764
8765 * dwarf2read.c (dwarf2_init_complex_target_type): Check "tt"
8766 against nullptr before use.
8767
a7e559cc
AH
87682019-04-17 Alan Hayward <alan.hayward@arm.com>
8769
8770 * nat/linux-waitpid.c (linux_debug): Call debug_vprintf.
8771
c01660c6
AB
87722019-04-17 Jim Wilson <jimw@sifive.com>
8773 Andrew Burgess <andrew.burgess@embecosm.com>
8774
8775 * riscv-tdep.c (riscv_breakpoint_kind_from_pc): Hanndle case where
8776 code read might fail, assume 4-byte breakpoint in that case.
8777
4aa866af
LS
87782019-04-15 Leszek Swirski <leszeks@google.com>
8779
8780 * amd64-tdep.c (amd64_classify_aggregate): Use cp_pass_by_reference
8781 rather than a hand-rolled POD check when checking for forced MEMORY
8782 classification.
8783
48574d91
AH
87842019-04-15 Alan Hayward <alan.hayward@arm.com>
8785
8786 * aarch64-linux-nat.c (store_sveregs_to_thread): Set vector length.
8787 * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_set_vq): New
8788 function.
8789 (aarch64_sve_regs_copy_to_reg_buf): Remove VG checks.
8790 (aarch64_sve_regs_copy_from_reg_buf): Likewise.
8791 * nat/aarch64-sve-linux-ptrace.h (aarch64_sve_set_vq): New
8792 declaration.
8793
4da037ef
AH
87942019-04-15 Alan Hayward <alan.hayward@arm.com>
8795
8796 * aarch64-linux-nat.c
8797 (aarch64_linux_nat_target::thread_architecture): Add override.
8798 * aarch64-tdep.c (aarch64_gdbarch_init): Ensure different tdesc for
8799 each VQ.
8800
ccb8d7e8
AH
88012019-04-15 Alan Hayward <alan.hayward@arm.com>
8802
8803 * aarch64-tdep.c (aarch64_gdbarch_init): Move gdbarch lookup.
8804
35add35e
AB
88052019-04-13 Andrew Burgess <andrew.burgess@embecosm.com>
8806
8807 * dwarf2read.c (dwarf2_init_complex_target_type): Handle complex
8808 target types of size 96-bits, add some additional comments, and
8809 check that the builtin type we found was the correct size.
8810
51196bbc
EZ
88112019-04-12 Eli Zaretskii <eliz@gnu.org>
8812
8813 * utils.c (prompt_for_continue): Don't restore the styling at the
8814 end, as applied_style has the wrong value. This fixes styling in
8815 long lists of file names that are interrupted by the "Continue?"
8816 prompt.
8817
62253a61
AB
88182019-04-12 Andrew Burgess <andrew.burgess@embecosm.com>
8819
8820 * ada-lang.c (ada_language_defn): Remove use of LANG_MAGIC.
8821 * c-lang.c (c_language_defn): Likewise.
8822 (cplus_language_defn): Likewise.
8823 (asm_language_defn): Likewise.
8824 (minimal_language_defn): Likewise.
8825 * d-lang.c (d_language_defn): Likewise.
8826 * f-lang.c (f_language_defn): Likewise.
8827 * go-lang.c (go_language_defn): Likewise.
8828 * language.c (unknown_language_defn): Likewise.
8829 (auto_language_defn): Likewise.
8830 * language.h (struct language_defn): Remove la_magic field.
8831 (LANG_MAGIC): Delete.
8832 * m2-lang.c (m2_language_defn): Remove use of LANG_MAGIC.
8833 * objc-lang.c (objc_language_defn): Likewise.
8834 * opencl-lang.c (opencl_language_defn): Likewise.
8835 * p-lang.c (pascal_language_defn): Likewise.
8836 * rust-lang.c (rust_language_defn): Likewise.
8837
a9158a86
AB
88382019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
8839
8840 * riscv-tdep.c (riscv_type_align): New function.
8841 (riscv_type_alignment): Delete.
8842 (riscv_arg_location): Use 'type_align'.
8843 (riscv_gdbarch_init): Register riscv_type_align gdbarch function.
8844
41077b66
AB
88452019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
8846
8847 * gdbtypes.c (type_align): A struct with no non-static fields also
8848 has alignment of 1.
8849
9f0272f8
AB
88502019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
8851
8852 * riscv-tdep.c (riscv_call_arg_complex_float): Fix offset of first
8853 component to 0.
8854 (riscv_struct_info::riscv_struct_info): Initialise m_offsets
8855 member.
8856 (riscv_struct_info::analyse): New implementation using new
8857 analyse_inner member function.
8858 (riscv_struct_info::field_offset): New member function.
8859 (riscv_struct_info::m_offsets): New member variable.
8860 (riscv_struct_info::analyse_inner): New private member function,
8861 takes the old implementation of riscv_struct_info::analyse but
8862 extended to track field offsets.
8863 (riscv_call_arg_struct): Update the struct folding special cases
8864 to handle cases where empty C++ structs, which are non-zero
8865 length, are found.
8866 (riscv_arg_location): Initialise the length of each location, a
8867 non-zero length now indicates the location is in use.
8868 (riscv_push_dummy_call): Allow for the first location having a
8869 non-zero offset when setting up arguments.
8870 (riscv_return_value): Likewise, but for return values.
8871
02cf60c7
TT
88722019-04-11 Tom Tromey <tromey@adacore.com>
8873
8874 * utils.c (internal_vproblem): Make "msg" const.
8875
68811f8f
AH
88762019-04-11 Alan Hayward <alan.hayward@arm.com>
8877
8878 * aarch64-tdep.c (aarch64_analyze_prologue_test): Reset saved regs.
8879 * trad-frame.c (trad_frame_reset_saved_regs): New function.
8880 (trad_frame_alloc_saved_regs): Call trad_frame_reset_saved_regs.
8881 * trad-frame.h (trad_frame_reset_saved_regs): New declaration.
8882
3f52fdbc
KB
88832019-04-10 Kevin Buettner <kevinb@redhat.com>
8884
8885 * amd64-linux-nat.c (amd64_linux_collect_native_gregset): New
8886 function.
8887 (fill_gregset): Call amd64_linux_collect_native_gregset instead
8888 of amd64_collect_native_gregset.
8889 (amd64_linux_nat_target::store_registers): Likewise.
8890
e9ad22ee
TT
88912019-04-10 Tom Tromey <tom@tromey.com>
8892
8893 * symtab.c (lookup_global_symbol_from_objfile)
8894 (lookup_symbol_in_objfile_from_linkage_name): Use the iterator.
8895 * objfiles.h (class separate_debug_iterator): New.
8896 (class separate_debug_range): New.
8897 (struct objfile) <separate_debug_objfiles>: New method.
8898 (objfile_separate_debug_iterate): Don't declare.
8899 * objfiles.c (separate_debug_iterator::operator++): Rename from
8900 objfile_separate_debug_iterate.
8901 (objfile_relocate, objfile_rebase, objfile_has_symbols): Use the
8902 iterator.
8903 * minsyms.c (lookup_minimal_symbol_by_pc_section): Use the
8904 iterator.
8905
ee371134
TT
89062019-04-10 Tom Tromey <tom@tromey.com>
8907
8908 * symfile.c (reread_symbols): Remove old comment.
8909 * objfiles.c (free_all_objfiles): Fix a typo.
8910
bf227d61
TT
89112019-04-10 Tom Tromey <tom@tromey.com>
8912
8913 * ia64-tdep.c (ia64_get_dyn_info_list): Use foreach.
8914 * minsyms.c (lookup_minimal_symbol): Use foreach.
8915 (lookup_minimal_symbol_text, lookup_minimal_symbol_by_pc_name)
8916 (lookup_minimal_symbol_solib_trampoline): Likewise.
8917 * symfile.c (reread_symbols): Use foreach.
8918
8dc433a0
TT
89192019-04-09 Ivan Begert <ivanbegert@gmail.com>
8920 Tom Tromey <tromey@adacore.com>
8921
8922 PR rust/24414:
8923 * rust-exp.y (rust_parser::lex_number): Use strtoulst.
8924 (rust_lex_int_test): Change "value" to be LONGEST.
8925 (rust_lex_tests): Add test for long integer literal.
8926
9ab8741a
TT
89272019-04-09 Tom Tromey <tromey@adacore.com>
8928
8929 * remote.c (remote_target::remote_add_inferior): Change fake_pid_p
8930 to bool.
8931 (extended_remote_target::attach): Update.
8932 (remote_target::remote_notice_new_inferior): Update.
8933 (remote_target::add_current_inferior_and_thread): Update.
8934 * inferior.c (exit_inferior_1): Use "false".
8935 * corelow.c (add_to_thread_list): Make fake_pid_p bool.
8936
e242fd12
SM
89372019-04-09 Simon Marchi <simon.marchi@efficios.com>
8938
9ca1957f 8939 * infcmd.c (run_command_1): Pass -qualified to tbreak when using
e242fd12
SM
8940 the "start" command.
8941
2b0c8b01
KB
89422019-04-08 Kevin Buettner <kevinb@redhat.com>
8943
8944 * python/py-inferior.c (infpy_thread_from_thread_handle):
8945 Adjust comments to reflect renaming of thread_from_thread_handle
8946 to thread_from_handle. Adjust keywords. Fix type error message.
8947 (inferior_object_methods): Add thread_from_handle. Retain
8948 thread_from_thread_handle, but mark it as deprecated.
8949
50a82723
KB
89502019-04-08 Kevin Buettner <kevinb@redhat.com>
8951
8952 * gdbthread.h (find_thread_by_handle): Revise declaration.
8953 * thread.c (find_thread_by_handle): Likewise. Adjust
8954 implementation too.
8955 * python/py-inferior.c (infpy_thread_from_thread_handle): Add
8956 support for buffer objects as handles.
8957
cf63b016
KB
89582019-04-08 Kevin Buettner <kevinb@redhat.com>
8959
8960 * python/py-infthread.c (thpy_thread_handle): New function.
8961 (thread_object_methods): Register thpy_thread_handle.
8962
3d6c6204
KB
89632019-04-08 Kevin Buettner <kevinb@redhat.com>
8964
8965 * gdbthread.h (thread_to_thread_handle): Declare.
8966 * thread.c (gdbtypes.h): Include.
8967 (thread_to_thread_handle): New function.
8968
8969 * target.h (struct target_ops): Add thread_info_to_thread_handle.
8970 (target_thread_info_to_thread_handle): Declare.
8971 * target.c (target_thread_info_to_thread_handle): New function.
8972 * target-debug.h (target_debug_print_gdb_byte_vector): Define.
8973 * target-delegates.c: Regenerate.
8974
8975 * linux-thread-db.c (class thread_db_target): Add method
8976 thread_info_to_thread_handle.
8977 (thread_db_target::thread_info_to_thread_handle): Define.
8978 * remote.c (class remote_target): Add new method
8979 thread_info_to_thread_handle.
8980 (remote_target::thread_info_to_thread_handle): Define.
8981
56be6ea8
PA
89822019-04-08 Pedro Alves <palves@redhat.com>
8983
8984 * common/common-exceptions.c (throw_exception): Don't create
8985 named object to throw; throw directly.
8986 (throw_it): Likewise. Don't initialize gdb_exception::message
8987 here, with new; pass FMT and AP to the ctor instead.
8988 * common/common-exceptions.h: Include <string>.
8989 (gdb_exception::gdb_exception(enum return_reason, enum errors,
8990 const char *, va_list)): New ctor. Use std::make_shared.
8991 (gdb_exception_error::gdb_exception_error(enum return_reason, enum
8992 errors)): Delete.
8993 (gdb_exception_error::gdb_exception_error(enum errors, const char
8994 *, va_list)): New.
8995 (gdb_exception_error::gdb_exception_error(const gdb_exception &)):
8996 Add assertion.
8997 (gdb_exception_quit::gdb_exception_quit(enum return_reason, enum
8998 errors)): Delete.
8999 (gdb_exception_quit::gdb_exception_quit(const char *, va_list)): New.
9000 (gdb_exception_quit::gdb_exception_quit(const gdb_exception &)):
9001 Add assertion.
9002
eedc3f4f
TT
90032019-04-08 Tom Tromey <tom@tromey.com>
9004
9005 * valops.c (value_rtti_indirect_type): Replace throw_exception
9006 with throw.
9007 * tracefile-tfile.c (tfile_target_open): Replace throw_exception
9008 with throw.
9009 * thread.c (thr_try_catch_cmd): Replace throw_exception with
9010 throw.
9011 * target.c (target_translate_tls_address): Replace throw_exception
9012 with throw.
9013 * stack.c (frame_apply_command_count): Replace throw_exception
9014 with throw.
9015 * solib-spu.c (append_ocl_sos): Replace throw_exception with
9016 throw.
9017 * s390-tdep.c (s390_frame_unwind_cache): Replace throw_exception
9018 with throw.
9019 * rs6000-tdep.c (rs6000_frame_cache)
9020 (rs6000_epilogue_frame_cache): Replace throw_exception with throw.
9021 * remote.c: Replace throw_exception with throw.
9022 * record-full.c (record_full_message, record_full_wait_1)
9023 (record_full_restore): Replace throw_exception with throw.
9024 * record-btrace.c:
9025 (get_thread_current_frame_id, record_btrace_start_replaying)
9026 (cmd_record_btrace_bts_start, cmd_record_btrace_pt_start)
9027 (cmd_record_btrace_start): Replace throw_exception with throw.
9028 * parse.c (parse_exp_in_context_1): Replace throw_exception with
9029 throw.
9030 * linux-nat.c (detach_one_lwp, linux_resume_one_lwp)
9031 (resume_stopped_resumed_lwps): Replace throw_exception with throw.
9032 * linespec.c:
9033 (find_linespec_symbols): Replace throw_exception with throw.
9034 * infrun.c (displaced_step_prepare, resume): Replace
9035 throw_exception with throw.
9036 * infcmd.c (post_create_inferior): Replace throw_exception with
9037 throw.
9038 * inf-loop.c (inferior_event_handler): Replace throw_exception
9039 with throw.
9040 * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
9041 (i386_sigtramp_frame_cache): Replace throw_exception with throw.
9042 * frame.c (frame_unwind_pc, get_prev_frame_if_no_cycle)
9043 (get_prev_frame_always, get_frame_pc_if_available)
9044 (get_frame_address_in_block_if_available, get_frame_language):
9045 Replace throw_exception with throw.
9046 * frame-unwind.c (frame_unwind_try_unwinder): Replace
9047 throw_exception with throw.
9048 * eval.c (fetch_subexp_value, evaluate_var_value)
9049 (evaluate_funcall, evaluate_subexp_standard): Replace
9050 throw_exception with throw.
9051 * dwarf2loc.c (call_site_find_chain)
9052 (dwarf2_evaluate_loc_desc_full, dwarf2_locexpr_baton_eval):
9053 Replace throw_exception with throw.
9054 * dwarf2-frame.c (dwarf2_frame_cache): Replace throw_exception
9055 with throw.
9056 * darwin-nat.c (darwin_attach_pid): Replace throw_exception with
9057 throw.
9058 * cp-abi.c (baseclass_offset): Replace throw_exception with throw.
9059 * completer.c (complete_line_internal): Replace throw_exception
9060 with throw.
9061 * compile/compile-object-run.c (compile_object_run): Replace
9062 throw_exception with throw.
9063 * cli/cli-script.c (process_next_line): Replace throw_exception
9064 with throw.
9065 * btrace.c (btrace_compute_ftrace_pt, btrace_compute_ftrace)
9066 (btrace_enable, btrace_maint_update_pt_packets): Replace
9067 throw_exception with throw.
9068 * breakpoint.c (create_breakpoint, save_breakpoints): Replace
9069 throw_exception with throw.
9070 * break-catch-throw.c (re_set_exception_catchpoint): Replace
9071 throw_exception with throw.
9072 * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
9073 (amd64_epilogue_frame_cache): Replace throw_exception with throw.
9074 * aarch64-tdep.c (aarch64_make_prologue_cache)
9075 (aarch64_make_stub_cache): Replace throw_exception with throw.
9076
26003a20
TT
90772019-04-08 Tom Tromey <tom@tromey.com>
9078
9079 * common/common-exceptions.c (throw_exception): Rename from
9080 throw_exception_cxx. Remove old copy. Make argument const.
9081 (throw_it): Create and throw exception objects directly.
9082 * common/common-exceptions.h (throw_exception): Make argument
9083 const.
9084 (struct gdb_exception_error): Add constructor.
9085 (struct gdb_exception_quit): Add constructor.
9086
d272eb37
TT
90872019-04-08 Tom Tromey <tom@tromey.com>
9088
9089 * common/common-exceptions.h (exception_rethrow): Don't declare.
9090 (TRY_SJLJ): Update comment.
9091 (TRY, CATCH, END_CATCH): Remove.
9092 * common/common-exceptions.c (exception_rethrow): Remove.
9093
230d2906
TT
90942019-04-08 Tom Tromey <tom@tromey.com>
9095
9096 * common/common-exceptions.h (gdb_exception_RETURN_MASK_ALL):
9097 Remove.
9098 (gdb_exception_error): Rename from
9099 gdb_exception_RETURN_MASK_ERROR.
9100 (gdb_exception_quit): Rename from gdb_exception_RETURN_MASK_QUIT.
9101 (gdb_quit_bad_alloc): Update.
9102 * aarch64-tdep.c: Update.
9103 * ada-lang.c: Update.
9104 * ada-typeprint.c: Update.
9105 * ada-valprint.c: Update.
9106 * amd64-tdep.c: Update.
9107 * arch-utils.c: Update.
9108 * break-catch-throw.c: Update.
9109 * breakpoint.c: Update.
9110 * btrace.c: Update.
9111 * c-varobj.c: Update.
9112 * cli/cli-cmds.c: Update.
9113 * cli/cli-interp.c: Update.
9114 * cli/cli-script.c: Update.
9115 * common/common-exceptions.c: Update.
9116 * common/new-op.c: Update.
9117 * common/selftest.c: Update.
9118 * compile/compile-c-symbols.c: Update.
9119 * compile/compile-cplus-symbols.c: Update.
9120 * compile/compile-object-load.c: Update.
9121 * compile/compile-object-run.c: Update.
9122 * completer.c: Update.
9123 * corelow.c: Update.
9124 * cp-abi.c: Update.
9125 * cp-support.c: Update.
9126 * cp-valprint.c: Update.
9127 * darwin-nat.c: Update.
9128 * disasm-selftests.c: Update.
9129 * dtrace-probe.c: Update.
9130 * dwarf-index-cache.c: Update.
9131 * dwarf-index-write.c: Update.
9132 * dwarf2-frame-tailcall.c: Update.
9133 * dwarf2-frame.c: Update.
9134 * dwarf2loc.c: Update.
9135 * dwarf2read.c: Update.
9136 * eval.c: Update.
9137 * event-loop.c: Update.
9138 * event-top.c: Update.
9139 * exec.c: Update.
9140 * f-valprint.c: Update.
9141 * fbsd-tdep.c: Update.
9142 * frame-unwind.c: Update.
9143 * frame.c: Update.
9144 * gdbtypes.c: Update.
9145 * gnu-v3-abi.c: Update.
9146 * guile/guile-internal.h: Update.
9147 * guile/scm-block.c: Update.
9148 * guile/scm-breakpoint.c: Update.
9149 * guile/scm-cmd.c: Update.
9150 * guile/scm-disasm.c: Update.
9151 * guile/scm-frame.c: Update.
9152 * guile/scm-lazy-string.c: Update.
9153 * guile/scm-math.c: Update.
9154 * guile/scm-param.c: Update.
9155 * guile/scm-ports.c: Update.
9156 * guile/scm-pretty-print.c: Update.
9157 * guile/scm-symbol.c: Update.
9158 * guile/scm-symtab.c: Update.
9159 * guile/scm-type.c: Update.
9160 * guile/scm-value.c: Update.
9161 * i386-linux-tdep.c: Update.
9162 * i386-tdep.c: Update.
9163 * inf-loop.c: Update.
9164 * infcall.c: Update.
9165 * infcmd.c: Update.
9166 * infrun.c: Update.
9167 * jit.c: Update.
9168 * language.c: Update.
9169 * linespec.c: Update.
9170 * linux-fork.c: Update.
9171 * linux-nat.c: Update.
9172 * linux-tdep.c: Update.
9173 * linux-thread-db.c: Update.
9174 * main.c: Update.
9175 * mi/mi-cmd-break.c: Update.
9176 * mi/mi-cmd-stack.c: Update.
9177 * mi/mi-interp.c: Update.
9178 * mi/mi-main.c: Update.
9179 * objc-lang.c: Update.
9180 * p-valprint.c: Update.
9181 * parse.c: Update.
9182 * ppc-linux-tdep.c: Update.
9183 * printcmd.c: Update.
9184 * python/py-arch.c: Update.
9185 * python/py-breakpoint.c: Update.
9186 * python/py-cmd.c: Update.
9187 * python/py-finishbreakpoint.c: Update.
9188 * python/py-frame.c: Update.
9189 * python/py-framefilter.c: Update.
9190 * python/py-gdb-readline.c: Update.
9191 * python/py-inferior.c: Update.
9192 * python/py-infthread.c: Update.
9193 * python/py-lazy-string.c: Update.
9194 * python/py-linetable.c: Update.
9195 * python/py-objfile.c: Update.
9196 * python/py-param.c: Update.
9197 * python/py-prettyprint.c: Update.
9198 * python/py-progspace.c: Update.
9199 * python/py-record-btrace.c: Update.
9200 * python/py-record.c: Update.
9201 * python/py-symbol.c: Update.
9202 * python/py-type.c: Update.
9203 * python/py-unwind.c: Update.
9204 * python/py-utils.c: Update.
9205 * python/py-value.c: Update.
9206 * python/python.c: Update.
9207 * record-btrace.c: Update.
9208 * record-full.c: Update.
9209 * remote-fileio.c: Update.
9210 * remote.c: Update.
9211 * riscv-tdep.c: Update.
9212 * rs6000-aix-tdep.c: Update.
9213 * rs6000-tdep.c: Update.
9214 * rust-exp.y: Update.
9215 * rust-lang.c: Update.
9216 * s390-tdep.c: Update.
9217 * selftest-arch.c: Update.
9218 * solib-dsbt.c: Update.
9219 * solib-frv.c: Update.
9220 * solib-spu.c: Update.
9221 * solib-svr4.c: Update.
9222 * solib.c: Update.
9223 * sparc64-linux-tdep.c: Update.
9224 * stack.c: Update.
9225 * symfile-mem.c: Update.
9226 * symmisc.c: Update.
9227 * target.c: Update.
9228 * thread.c: Update.
9229 * top.c: Update.
9230 * tracefile-tfile.c: Update.
9231 * tui/tui.c: Update.
9232 * typeprint.c: Update.
9233 * unittests/cli-utils-selftests.c: Update.
9234 * unittests/parse-connection-spec-selftests.c: Update.
9235 * valops.c: Update.
9236 * valprint.c: Update.
9237 * value.c: Update.
9238 * varobj.c: Update.
9239 * windows-nat.c: Update.
9240 * x86-linux-nat.c: Update.
9241 * xml-support.c: Update.
9242
a70b8144
TT
92432019-04-08 Tom Tromey <tom@tromey.com>
9244
9245 * xml-support.c: Use C++ exception handling.
9246 * x86-linux-nat.c: Use C++ exception handling.
9247 * windows-nat.c: Use C++ exception handling.
9248 * varobj.c: Use C++ exception handling.
9249 * value.c: Use C++ exception handling.
9250 * valprint.c: Use C++ exception handling.
9251 * valops.c: Use C++ exception handling.
9252 * unittests/parse-connection-spec-selftests.c: Use C++ exception
9253 handling.
9254 * unittests/cli-utils-selftests.c: Use C++ exception handling.
9255 * typeprint.c: Use C++ exception handling.
9256 * tui/tui.c: Use C++ exception handling.
9257 * tracefile-tfile.c: Use C++ exception handling.
9258 * top.c: Use C++ exception handling.
9259 * thread.c: Use C++ exception handling.
9260 * target.c: Use C++ exception handling.
9261 * symmisc.c: Use C++ exception handling.
9262 * symfile-mem.c: Use C++ exception handling.
9263 * stack.c: Use C++ exception handling.
9264 * sparc64-linux-tdep.c: Use C++ exception handling.
9265 * solib.c: Use C++ exception handling.
9266 * solib-svr4.c: Use C++ exception handling.
9267 * solib-spu.c: Use C++ exception handling.
9268 * solib-frv.c: Use C++ exception handling.
9269 * solib-dsbt.c: Use C++ exception handling.
9270 * selftest-arch.c: Use C++ exception handling.
9271 * s390-tdep.c: Use C++ exception handling.
9272 * rust-lang.c: Use C++ exception handling.
9273 * rust-exp.y: Use C++ exception handling.
9274 * rs6000-tdep.c: Use C++ exception handling.
9275 * rs6000-aix-tdep.c: Use C++ exception handling.
9276 * riscv-tdep.c: Use C++ exception handling.
9277 * remote.c: Use C++ exception handling.
9278 * remote-fileio.c: Use C++ exception handling.
9279 * record-full.c: Use C++ exception handling.
9280 * record-btrace.c: Use C++ exception handling.
9281 * python/python.c: Use C++ exception handling.
9282 * python/py-value.c: Use C++ exception handling.
9283 * python/py-utils.c: Use C++ exception handling.
9284 * python/py-unwind.c: Use C++ exception handling.
9285 * python/py-type.c: Use C++ exception handling.
9286 * python/py-symbol.c: Use C++ exception handling.
9287 * python/py-record.c: Use C++ exception handling.
9288 * python/py-record-btrace.c: Use C++ exception handling.
9289 * python/py-progspace.c: Use C++ exception handling.
9290 * python/py-prettyprint.c: Use C++ exception handling.
9291 * python/py-param.c: Use C++ exception handling.
9292 * python/py-objfile.c: Use C++ exception handling.
9293 * python/py-linetable.c: Use C++ exception handling.
9294 * python/py-lazy-string.c: Use C++ exception handling.
9295 * python/py-infthread.c: Use C++ exception handling.
9296 * python/py-inferior.c: Use C++ exception handling.
9297 * python/py-gdb-readline.c: Use C++ exception handling.
9298 * python/py-framefilter.c: Use C++ exception handling.
9299 * python/py-frame.c: Use C++ exception handling.
9300 * python/py-finishbreakpoint.c: Use C++ exception handling.
9301 * python/py-cmd.c: Use C++ exception handling.
9302 * python/py-breakpoint.c: Use C++ exception handling.
9303 * python/py-arch.c: Use C++ exception handling.
9304 * printcmd.c: Use C++ exception handling.
9305 * ppc-linux-tdep.c: Use C++ exception handling.
9306 * parse.c: Use C++ exception handling.
9307 * p-valprint.c: Use C++ exception handling.
9308 * objc-lang.c: Use C++ exception handling.
9309 * mi/mi-main.c: Use C++ exception handling.
9310 * mi/mi-interp.c: Use C++ exception handling.
9311 * mi/mi-cmd-stack.c: Use C++ exception handling.
9312 * mi/mi-cmd-break.c: Use C++ exception handling.
9313 * main.c: Use C++ exception handling.
9314 * linux-thread-db.c: Use C++ exception handling.
9315 * linux-tdep.c: Use C++ exception handling.
9316 * linux-nat.c: Use C++ exception handling.
9317 * linux-fork.c: Use C++ exception handling.
9318 * linespec.c: Use C++ exception handling.
9319 * language.c: Use C++ exception handling.
9320 * jit.c: Use C++ exception handling.
9321 * infrun.c: Use C++ exception handling.
9322 * infcmd.c: Use C++ exception handling.
9323 * infcall.c: Use C++ exception handling.
9324 * inf-loop.c: Use C++ exception handling.
9325 * i386-tdep.c: Use C++ exception handling.
9326 * i386-linux-tdep.c: Use C++ exception handling.
9327 * guile/scm-value.c: Use C++ exception handling.
9328 * guile/scm-type.c: Use C++ exception handling.
9329 * guile/scm-symtab.c: Use C++ exception handling.
9330 * guile/scm-symbol.c: Use C++ exception handling.
9331 * guile/scm-pretty-print.c: Use C++ exception handling.
9332 * guile/scm-ports.c: Use C++ exception handling.
9333 * guile/scm-param.c: Use C++ exception handling.
9334 * guile/scm-math.c: Use C++ exception handling.
9335 * guile/scm-lazy-string.c: Use C++ exception handling.
9336 * guile/scm-frame.c: Use C++ exception handling.
9337 * guile/scm-disasm.c: Use C++ exception handling.
9338 * guile/scm-cmd.c: Use C++ exception handling.
9339 * guile/scm-breakpoint.c: Use C++ exception handling.
9340 * guile/scm-block.c: Use C++ exception handling.
9341 * guile/guile-internal.h: Use C++ exception handling.
9342 * gnu-v3-abi.c: Use C++ exception handling.
9343 * gdbtypes.c: Use C++ exception handling.
9344 * frame.c: Use C++ exception handling.
9345 * frame-unwind.c: Use C++ exception handling.
9346 * fbsd-tdep.c: Use C++ exception handling.
9347 * f-valprint.c: Use C++ exception handling.
9348 * exec.c: Use C++ exception handling.
9349 * event-top.c: Use C++ exception handling.
9350 * event-loop.c: Use C++ exception handling.
9351 * eval.c: Use C++ exception handling.
9352 * dwarf2read.c: Use C++ exception handling.
9353 * dwarf2loc.c: Use C++ exception handling.
9354 * dwarf2-frame.c: Use C++ exception handling.
9355 * dwarf2-frame-tailcall.c: Use C++ exception handling.
9356 * dwarf-index-write.c: Use C++ exception handling.
9357 * dwarf-index-cache.c: Use C++ exception handling.
9358 * dtrace-probe.c: Use C++ exception handling.
9359 * disasm-selftests.c: Use C++ exception handling.
9360 * darwin-nat.c: Use C++ exception handling.
9361 * cp-valprint.c: Use C++ exception handling.
9362 * cp-support.c: Use C++ exception handling.
9363 * cp-abi.c: Use C++ exception handling.
9364 * corelow.c: Use C++ exception handling.
9365 * completer.c: Use C++ exception handling.
9366 * compile/compile-object-run.c: Use C++ exception handling.
9367 * compile/compile-object-load.c: Use C++ exception handling.
9368 * compile/compile-cplus-symbols.c: Use C++ exception handling.
9369 * compile/compile-c-symbols.c: Use C++ exception handling.
9370 * common/selftest.c: Use C++ exception handling.
9371 * common/new-op.c: Use C++ exception handling.
9372 * cli/cli-script.c: Use C++ exception handling.
9373 * cli/cli-interp.c: Use C++ exception handling.
9374 * cli/cli-cmds.c: Use C++ exception handling.
9375 * c-varobj.c: Use C++ exception handling.
9376 * btrace.c: Use C++ exception handling.
9377 * breakpoint.c: Use C++ exception handling.
9378 * break-catch-throw.c: Use C++ exception handling.
9379 * arch-utils.c: Use C++ exception handling.
9380 * amd64-tdep.c: Use C++ exception handling.
9381 * ada-valprint.c: Use C++ exception handling.
9382 * ada-typeprint.c: Use C++ exception handling.
9383 * ada-lang.c: Use C++ exception handling.
9384 * aarch64-tdep.c: Use C++ exception handling.
9385
3d6e9d23
TT
93862019-04-08 Tom Tromey <tom@tromey.com>
9387
9388 * xml-support.c (gdb_xml_parser::parse): Update.
9389 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
9390 * value.c (show_convenience): Update.
9391 * unittests/cli-utils-selftests.c (test_number_or_range_parser)
9392 (test_parse_flags_qcs): Update.
9393 * thread.c (thr_try_catch_cmd): Update.
9394 * target.c (target_translate_tls_address): Update.
9395 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
9396 (info_frame_command_core, frame_apply_command_count): Update.
9397 * rust-exp.y (rust_lex_exception_test): Update.
9398 * riscv-tdep.c (riscv_print_one_register_info): Update.
9399 * remote.c (remote_target::enable_btrace): Update.
9400 * record-btrace.c (record_btrace_enable_warn): Update.
9401 * python/py-utils.c (gdbpy_convert_exception): Update.
9402 * printcmd.c (do_one_display, print_variable_and_value): Update.
9403 * mi/mi-main.c (mi_print_exception): Update.
9404 * mi/mi-interp.c (mi_cmd_interpreter_exec): Use SCOPE_EXIT.
9405 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
9406 * linux-nat.c (linux_nat_target::attach): Update.
9407 * linux-fork.c (class scoped_switch_fork_info): Update.
9408 * infrun.c (displaced_step_prepare): Update.
9409 * infcall.c (call_function_by_hand_dummy): Update.
9410 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception): Update.
9411 * gnu-v3-abi.c (print_one_vtable): Update.
9412 * frame.c (get_prev_frame_always): Update.
9413 * f-valprint.c (info_common_command_for_block): Update.
9414 * exec.c (try_open_exec_file): Update.
9415 * exceptions.c (print_exception, exception_print)
9416 (exception_fprintf, exception_print_same): Update.
9417 * dwarf2-frame.c (dwarf2_build_frame_info): Update.
9418 * dwarf-index-cache.c (index_cache::store)
9419 (index_cache::lookup_gdb_index): Update.
9420 * darwin-nat.c (maybe_cache_shell): Update.
9421 * cp-valprint.c (cp_print_value_fields): Update.
9422 * compile/compile-cplus-symbols.c (gcc_cplus_convert_symbol)
9423 (gcc_cplus_symbol_address): Update.
9424 * compile/compile-c-symbols.c (gcc_convert_symbol)
9425 (gcc_symbol_address, generate_c_for_for_one_variable): Update.
9426 * common/selftest.c: Update.
9427 * common/common-exceptions.h (struct gdb_exception) <message>: Now
9428 a std::string.
9429 (exception_try_scope_entry, exception_try_scope_exit): Don't
9430 declare.
9431 (struct exception_try_scope): Remove.
9432 (TRY): Don't use exception_try_scope.
9433 (struct gdb_exception): Add constructor, operator=.
9434 <what>: New method.
9435 (struct gdb_exception_RETURN_MASK_ALL)
9436 (struct gdb_exception_RETURN_MASK_ERROR)
9437 (struct gdb_exception_RETURN_MASK_QUIT): Add constructor.
9438 (struct gdb_quit_bad_alloc): Update.
9439 * common/common-exceptions.c (exception_none): Change
9440 initializer.
9441 (struct catcher) <state, exception>: Initialize inline.
9442 <prev>: Remove member.
9443 (current_catcher): Remove.
9444 (catchers): New global.
9445 (exceptions_state_mc_init): Simplify.
9446 (catcher_pop): Remove.
9447 (exceptions_state_mc, exceptions_state_mc_catch): Update.
9448 (try_scope_depth, exception_try_scope_entry)
9449 (exception_try_scope_exit): Remove.
9450 (throw_exception_sjlj): Update.
9451 (exception_messages, exception_messages_size): Remove.
9452 (throw_it): Simplify.
9453 (gdb_exception_sliced_copy): Remove.
9454 (throw_exception_cxx): Update.
9455 * cli/cli-script.c (script_from_file): Update.
9456 * breakpoint.c (insert_bp_location, update_breakpoint_locations):
9457 Update.
9458 * ada-valprint.c (ada_val_print): Update.
9459 * ada-lang.c (ada_to_fixed_type_1, ada_exception_name_addr)
9460 (create_excep_cond_exprs): Update.
9461
c5c10118
TT
94622019-04-08 Tom Tromey <tom@tromey.com>
9463
9464 * common/common-exceptions.h (GDB_XCPT_SJMP, GDB_XCPT_TRY)
9465 (GDB_XCPT_RAW_TRY, GDB_XCPT): Remove.
9466 (TRY, CATCH, END_CATCH): Remove some definitions.
9467 * common/common-exceptions.c: Don't use GDB_XCPT.
9468 (catcher_list_size): Remove.
9469 (throw_exception, throw_it): Simplify.
9470
4de283e4
TT
94712019-04-05 Tom Tromey <tom@tromey.com>
9472
9473 Revert the header-sorting patch.
9474 * ft32-tdep.c: Revert.
9475 * frv-tdep.c: Revert.
9476 * frv-linux-tdep.c: Revert.
9477 * frame.c: Revert.
9478 * frame-unwind.c: Revert.
9479 * frame-base.c: Revert.
9480 * fork-child.c: Revert.
9481 * findvar.c: Revert.
9482 * findcmd.c: Revert.
9483 * filesystem.c: Revert.
9484 * filename-seen-cache.h: Revert.
9485 * filename-seen-cache.c: Revert.
9486 * fbsd-tdep.c: Revert.
9487 * fbsd-nat.h: Revert.
9488 * fbsd-nat.c: Revert.
9489 * f-valprint.c: Revert.
9490 * f-typeprint.c: Revert.
9491 * f-lang.c: Revert.
9492 * extension.h: Revert.
9493 * extension.c: Revert.
9494 * extension-priv.h: Revert.
9495 * expprint.c: Revert.
9496 * exec.h: Revert.
9497 * exec.c: Revert.
9498 * exceptions.c: Revert.
9499 * event-top.c: Revert.
9500 * event-loop.c: Revert.
9501 * eval.c: Revert.
9502 * elfread.c: Revert.
9503 * dwarf2read.h: Revert.
9504 * dwarf2read.c: Revert.
9505 * dwarf2loc.c: Revert.
9506 * dwarf2expr.h: Revert.
9507 * dwarf2expr.c: Revert.
9508 * dwarf2-frame.c: Revert.
9509 * dwarf2-frame-tailcall.c: Revert.
9510 * dwarf-index-write.h: Revert.
9511 * dwarf-index-write.c: Revert.
9512 * dwarf-index-common.c: Revert.
9513 * dwarf-index-cache.h: Revert.
9514 * dwarf-index-cache.c: Revert.
9515 * dummy-frame.c: Revert.
9516 * dtrace-probe.c: Revert.
9517 * disasm.h: Revert.
9518 * disasm.c: Revert.
9519 * disasm-selftests.c: Revert.
9520 * dictionary.c: Revert.
9521 * dicos-tdep.c: Revert.
9522 * demangle.c: Revert.
9523 * dcache.h: Revert.
9524 * dcache.c: Revert.
9525 * darwin-nat.h: Revert.
9526 * darwin-nat.c: Revert.
9527 * darwin-nat-info.c: Revert.
9528 * d-valprint.c: Revert.
9529 * d-namespace.c: Revert.
9530 * d-lang.c: Revert.
9531 * ctf.c: Revert.
9532 * csky-tdep.c: Revert.
9533 * csky-linux-tdep.c: Revert.
9534 * cris-tdep.c: Revert.
9535 * cris-linux-tdep.c: Revert.
9536 * cp-valprint.c: Revert.
9537 * cp-support.c: Revert.
9538 * cp-namespace.c: Revert.
9539 * cp-abi.c: Revert.
9540 * corelow.c: Revert.
9541 * corefile.c: Revert.
9542 * continuations.c: Revert.
9543 * completer.h: Revert.
9544 * completer.c: Revert.
9545 * complaints.c: Revert.
9546 * coffread.c: Revert.
9547 * coff-pe-read.c: Revert.
9548 * cli-out.h: Revert.
9549 * cli-out.c: Revert.
9550 * charset.c: Revert.
9551 * c-varobj.c: Revert.
9552 * c-valprint.c: Revert.
9553 * c-typeprint.c: Revert.
9554 * c-lang.c: Revert.
9555 * buildsym.c: Revert.
9556 * buildsym-legacy.c: Revert.
9557 * build-id.h: Revert.
9558 * build-id.c: Revert.
9559 * btrace.c: Revert.
9560 * bsd-uthread.c: Revert.
9561 * breakpoint.h: Revert.
9562 * breakpoint.c: Revert.
9563 * break-catch-throw.c: Revert.
9564 * break-catch-syscall.c: Revert.
9565 * break-catch-sig.c: Revert.
9566 * blockframe.c: Revert.
9567 * block.c: Revert.
9568 * bfin-tdep.c: Revert.
9569 * bfin-linux-tdep.c: Revert.
9570 * bfd-target.c: Revert.
9571 * bcache.c: Revert.
9572 * ax-general.c: Revert.
9573 * ax-gdb.h: Revert.
9574 * ax-gdb.c: Revert.
9575 * avr-tdep.c: Revert.
9576 * auxv.c: Revert.
9577 * auto-load.c: Revert.
9578 * arm-wince-tdep.c: Revert.
9579 * arm-tdep.c: Revert.
9580 * arm-symbian-tdep.c: Revert.
9581 * arm-pikeos-tdep.c: Revert.
9582 * arm-obsd-tdep.c: Revert.
9583 * arm-nbsd-tdep.c: Revert.
9584 * arm-nbsd-nat.c: Revert.
9585 * arm-linux-tdep.c: Revert.
9586 * arm-linux-nat.c: Revert.
9587 * arm-fbsd-tdep.c: Revert.
9588 * arm-fbsd-nat.c: Revert.
9589 * arm-bsd-tdep.c: Revert.
9590 * arch-utils.c: Revert.
9591 * arc-tdep.c: Revert.
9592 * arc-newlib-tdep.c: Revert.
9593 * annotate.h: Revert.
9594 * annotate.c: Revert.
9595 * amd64-windows-tdep.c: Revert.
9596 * amd64-windows-nat.c: Revert.
9597 * amd64-tdep.c: Revert.
9598 * amd64-sol2-tdep.c: Revert.
9599 * amd64-obsd-tdep.c: Revert.
9600 * amd64-obsd-nat.c: Revert.
9601 * amd64-nbsd-tdep.c: Revert.
9602 * amd64-nbsd-nat.c: Revert.
9603 * amd64-nat.c: Revert.
9604 * amd64-linux-tdep.c: Revert.
9605 * amd64-linux-nat.c: Revert.
9606 * amd64-fbsd-tdep.c: Revert.
9607 * amd64-fbsd-nat.c: Revert.
9608 * amd64-dicos-tdep.c: Revert.
9609 * amd64-darwin-tdep.c: Revert.
9610 * amd64-bsd-nat.c: Revert.
9611 * alpha-tdep.c: Revert.
9612 * alpha-obsd-tdep.c: Revert.
9613 * alpha-nbsd-tdep.c: Revert.
9614 * alpha-mdebug-tdep.c: Revert.
9615 * alpha-linux-tdep.c: Revert.
9616 * alpha-linux-nat.c: Revert.
9617 * alpha-bsd-tdep.c: Revert.
9618 * alpha-bsd-nat.c: Revert.
9619 * aix-thread.c: Revert.
9620 * agent.c: Revert.
9621 * addrmap.c: Revert.
9622 * ada-varobj.c: Revert.
9623 * ada-valprint.c: Revert.
9624 * ada-typeprint.c: Revert.
9625 * ada-tasks.c: Revert.
9626 * ada-lang.c: Revert.
9627 * aarch64-tdep.c: Revert.
9628 * aarch64-ravenscar-thread.c: Revert.
9629 * aarch64-newlib-tdep.c: Revert.
9630 * aarch64-linux-tdep.c: Revert.
9631 * aarch64-linux-nat.c: Revert.
9632 * aarch64-fbsd-tdep.c: Revert.
9633 * aarch64-fbsd-nat.c: Revert.
9634 * aarch32-linux-nat.c: Revert.
9635
d55e5aa6
TT
96362019-04-05 Tom Tromey <tom@tromey.com>
9637
9638 * ft32-tdep.c: Sort headers.
9639 * frv-tdep.c: Sort headers.
9640 * frv-linux-tdep.c: Sort headers.
9641 * frame.c: Sort headers.
9642 * frame-unwind.c: Sort headers.
9643 * frame-base.c: Sort headers.
9644 * fork-child.c: Sort headers.
9645 * findvar.c: Sort headers.
9646 * findcmd.c: Sort headers.
9647 * filesystem.c: Sort headers.
9648 * filename-seen-cache.h: Sort headers.
9649 * filename-seen-cache.c: Sort headers.
9650 * fbsd-tdep.c: Sort headers.
9651 * fbsd-nat.h: Sort headers.
9652 * fbsd-nat.c: Sort headers.
9653 * f-valprint.c: Sort headers.
9654 * f-typeprint.c: Sort headers.
9655 * f-lang.c: Sort headers.
9656 * extension.h: Sort headers.
9657 * extension.c: Sort headers.
9658 * extension-priv.h: Sort headers.
9659 * expprint.c: Sort headers.
9660 * exec.h: Sort headers.
9661 * exec.c: Sort headers.
9662 * exceptions.c: Sort headers.
9663 * event-top.c: Sort headers.
9664 * event-loop.c: Sort headers.
9665 * eval.c: Sort headers.
9666 * elfread.c: Sort headers.
9667 * dwarf2read.h: Sort headers.
9668 * dwarf2read.c: Sort headers.
9669 * dwarf2loc.c: Sort headers.
9670 * dwarf2expr.h: Sort headers.
9671 * dwarf2expr.c: Sort headers.
9672 * dwarf2-frame.c: Sort headers.
9673 * dwarf2-frame-tailcall.c: Sort headers.
9674 * dwarf-index-write.h: Sort headers.
9675 * dwarf-index-write.c: Sort headers.
9676 * dwarf-index-common.c: Sort headers.
9677 * dwarf-index-cache.h: Sort headers.
9678 * dwarf-index-cache.c: Sort headers.
9679 * dummy-frame.c: Sort headers.
9680 * dtrace-probe.c: Sort headers.
9681 * disasm.h: Sort headers.
9682 * disasm.c: Sort headers.
9683 * disasm-selftests.c: Sort headers.
9684 * dictionary.c: Sort headers.
9685 * dicos-tdep.c: Sort headers.
9686 * demangle.c: Sort headers.
9687 * dcache.h: Sort headers.
9688 * dcache.c: Sort headers.
9689 * darwin-nat.h: Sort headers.
9690 * darwin-nat.c: Sort headers.
9691 * darwin-nat-info.c: Sort headers.
9692 * d-valprint.c: Sort headers.
9693 * d-namespace.c: Sort headers.
9694 * d-lang.c: Sort headers.
9695 * ctf.c: Sort headers.
9696 * csky-tdep.c: Sort headers.
9697 * csky-linux-tdep.c: Sort headers.
9698 * cris-tdep.c: Sort headers.
9699 * cris-linux-tdep.c: Sort headers.
9700 * cp-valprint.c: Sort headers.
9701 * cp-support.c: Sort headers.
9702 * cp-namespace.c: Sort headers.
9703 * cp-abi.c: Sort headers.
9704 * corelow.c: Sort headers.
9705 * corefile.c: Sort headers.
9706 * continuations.c: Sort headers.
9707 * completer.h: Sort headers.
9708 * completer.c: Sort headers.
9709 * complaints.c: Sort headers.
9710 * coffread.c: Sort headers.
9711 * coff-pe-read.c: Sort headers.
9712 * cli-out.h: Sort headers.
9713 * cli-out.c: Sort headers.
9714 * charset.c: Sort headers.
9715 * c-varobj.c: Sort headers.
9716 * c-valprint.c: Sort headers.
9717 * c-typeprint.c: Sort headers.
9718 * c-lang.c: Sort headers.
9719 * buildsym.c: Sort headers.
9720 * buildsym-legacy.c: Sort headers.
9721 * build-id.h: Sort headers.
9722 * build-id.c: Sort headers.
9723 * btrace.c: Sort headers.
9724 * bsd-uthread.c: Sort headers.
9725 * breakpoint.h: Sort headers.
9726 * breakpoint.c: Sort headers.
9727 * break-catch-throw.c: Sort headers.
9728 * break-catch-syscall.c: Sort headers.
9729 * break-catch-sig.c: Sort headers.
9730 * blockframe.c: Sort headers.
9731 * block.c: Sort headers.
9732 * bfin-tdep.c: Sort headers.
9733 * bfin-linux-tdep.c: Sort headers.
9734 * bfd-target.c: Sort headers.
9735 * bcache.c: Sort headers.
9736 * ax-general.c: Sort headers.
9737 * ax-gdb.h: Sort headers.
9738 * ax-gdb.c: Sort headers.
9739 * avr-tdep.c: Sort headers.
9740 * auxv.c: Sort headers.
9741 * auto-load.c: Sort headers.
9742 * arm-wince-tdep.c: Sort headers.
9743 * arm-tdep.c: Sort headers.
9744 * arm-symbian-tdep.c: Sort headers.
9745 * arm-pikeos-tdep.c: Sort headers.
9746 * arm-obsd-tdep.c: Sort headers.
9747 * arm-nbsd-tdep.c: Sort headers.
9748 * arm-nbsd-nat.c: Sort headers.
9749 * arm-linux-tdep.c: Sort headers.
9750 * arm-linux-nat.c: Sort headers.
9751 * arm-fbsd-tdep.c: Sort headers.
9752 * arm-fbsd-nat.c: Sort headers.
9753 * arm-bsd-tdep.c: Sort headers.
9754 * arch-utils.c: Sort headers.
9755 * arc-tdep.c: Sort headers.
9756 * arc-newlib-tdep.c: Sort headers.
9757 * annotate.h: Sort headers.
9758 * annotate.c: Sort headers.
9759 * amd64-windows-tdep.c: Sort headers.
9760 * amd64-windows-nat.c: Sort headers.
9761 * amd64-tdep.c: Sort headers.
9762 * amd64-sol2-tdep.c: Sort headers.
9763 * amd64-obsd-tdep.c: Sort headers.
9764 * amd64-obsd-nat.c: Sort headers.
9765 * amd64-nbsd-tdep.c: Sort headers.
9766 * amd64-nbsd-nat.c: Sort headers.
9767 * amd64-nat.c: Sort headers.
9768 * amd64-linux-tdep.c: Sort headers.
9769 * amd64-linux-nat.c: Sort headers.
9770 * amd64-fbsd-tdep.c: Sort headers.
9771 * amd64-fbsd-nat.c: Sort headers.
9772 * amd64-dicos-tdep.c: Sort headers.
9773 * amd64-darwin-tdep.c: Sort headers.
9774 * amd64-bsd-nat.c: Sort headers.
9775 * alpha-tdep.c: Sort headers.
9776 * alpha-obsd-tdep.c: Sort headers.
9777 * alpha-nbsd-tdep.c: Sort headers.
9778 * alpha-mdebug-tdep.c: Sort headers.
9779 * alpha-linux-tdep.c: Sort headers.
9780 * alpha-linux-nat.c: Sort headers.
9781 * alpha-bsd-tdep.c: Sort headers.
9782 * alpha-bsd-nat.c: Sort headers.
9783 * aix-thread.c: Sort headers.
9784 * agent.c: Sort headers.
9785 * addrmap.c: Sort headers.
9786 * ada-varobj.c: Sort headers.
9787 * ada-valprint.c: Sort headers.
9788 * ada-typeprint.c: Sort headers.
9789 * ada-tasks.c: Sort headers.
9790 * ada-lang.c: Sort headers.
9791 * aarch64-tdep.c: Sort headers.
9792 * aarch64-ravenscar-thread.c: Sort headers.
9793 * aarch64-newlib-tdep.c: Sort headers.
9794 * aarch64-linux-tdep.c: Sort headers.
9795 * aarch64-linux-nat.c: Sort headers.
9796 * aarch64-fbsd-tdep.c: Sort headers.
9797 * aarch64-fbsd-nat.c: Sort headers.
9798 * aarch32-linux-nat.c: Sort headers.
9799
699bd4cf
TT
98002019-04-04 Tom Tromey <tom@tromey.com>
9801
9802 * varobj.c (varobj_create): Update.
9803 * rust-exp.y (struct rust_parser) <update_innermost_block,
9804 lookup_symbol>: New methods.
9805 (rust_parser::update_innermost_block, rust_parser::lookup_symbol):
9806 Rename.
9807 (rust_parser::rust_lookup_type)
9808 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
9809 * printcmd.c (display_command, do_one_display): Update.
9810 * parser-defs.h (struct parser_state) <parser_state>: Add
9811 "tracker" parameter.
9812 (block_tracker): New member.
9813 (class innermost_block_tracker) <innermost_block_tracker>: Add
9814 "types" parameter.
9815 <reset>: Remove method.
9816 (innermost_block): Don't declare.
9817 (null_post_parser): Update.
9818 * parse.c (innermost_block): Remove global.
9819 (write_dollar_variable): Update.
9820 (parse_exp_1, parse_exp_in_context): Add "tracker" parameter.
9821 Remove "tracker_types" parameter.
9822 (parse_expression): Add "tracker" parameter.
9823 (parse_expression_for_completion): Update.
9824 (null_post_parser): Add "tracker" parameter.
9825 * p-exp.y: Update rules.
9826 * m2-exp.y: Update rules.
9827 * language.h (struct language_defn) <la_post_parser>: Add
9828 "tracker" parameter.
9829 * go-exp.y: Update rules.
9830 * f-exp.y: Update rules.
9831 * expression.h (parse_expression, parse_exp_1): Add "tracker"
9832 parameter.
9833 * d-exp.y: Update rules.
9834 * c-exp.y: Update rules.
9835 * breakpoint.c (set_breakpoint_condition): Create an
9836 innermost_block_tracker.
9837 (watch_command_1): Likewise.
9838 * ada-lang.c (resolve): Add "tracker" parameter.
9839 (resolve_subexp): Likewise.
9840 * ada-exp.y (write_var_from_sym): Update.
9841
dac43e32
TT
98422019-04-04 Tom Tromey <tom@tromey.com>
9843
9844 * type-stack.h: New file.
9845 * type-stack.c: New file.
9846 * parser-defs.h (enum type_pieces, union type_stack_elt): Move to
9847 type-stack.h.
9848 (insert_into_type_stack, insert_type, push_type, push_type_int)
9849 (insert_type_address_space, pop_type, pop_type_int)
9850 (pop_typelist, pop_type_stack, append_type_stack)
9851 (push_type_stack, get_type_stack, push_typelist)
9852 (follow_type_instance_flags, follow_types): Don't declare.
9853 * parse.c (type_stack): Remove global.
9854 (parse_exp_in_context): Update.
9855 (insert_into_type_stack, insert_type, push_type, push_type_int)
9856 (insert_type_address_space, pop_type, pop_type_int)
9857 (pop_typelist, pop_type_stack, append_type_stack)
9858 (push_type_stack, get_type_stack, push_typelist)
9859 (follow_type_instance_flags, follow_types): Remove (moved to
9860 type-stack.c).
9861 * f-exp.y (type_stack): New global.
9862 Update rules.
9863 (push_kind_type, f_parse): Update.
9864 * d-exp.y (type_stack): New global.
9865 Update rules.
9866 (d_parse): Update.
9867 * c-exp.y (struct c_parse_state) <type_stack>: New member.
9868 Update rules.
9869 * Makefile.in (COMMON_SFILES): Add type-stack.c.
9870 (HFILES_NO_SRCDIR): Add type-stack.h.
9871
2a612529
TT
98722019-04-04 Tom Tromey <tom@tromey.com>
9873
9874 * rust-exp.y (rust_parser::lex_identifier, rustyylex)
9875 (rust_parser::convert_ast_to_expression, rust_parse)
9876 (rust_lex_test_completion, rust_lex_tests): Update.
9877 * parser-defs.h (struct expr_completion_state): New.
9878 (struct parser_state) <parser_state>: Add completion parameter.
9879 <mark_struct_expression, mark_completion_tag>: New methods.
9880 <parse_completion, m_completion_state>: New members.
9881 (prefixify_expression, null_post_parser): Update.
9882 (mark_struct_expression, mark_completion_tag): Don't declare.
9883 * parse.c (parse_completion, expout_last_struct)
9884 (expout_tag_completion_type, expout_completion_name): Remove
9885 globals.
9886 (parser_state::mark_struct_expression)
9887 (parser_state::mark_completion_tag): Now methods.
9888 (prefixify_expression): Add last_struct parameter.
9889 (prefixify_subexp): Likewise.
9890 (parse_exp_1): Update.
9891 (parse_exp_in_context): Add cstate parameter. Update.
9892 (parse_expression_for_completion): Create an
9893 expr_completion_state.
9894 (null_post_parser): Add "completion" parameter.
9895 * p-exp.y: Update rules.
9896 (yylex): Update.
9897 * language.h (struct language_defn) <la_post_parser>: Add
9898 "completing" parameter.
9899 * go-exp.y: Update rules.
9900 (lex_one_token): Update.
9901 * expression.h (parse_completion): Don't declare.
9902 * d-exp.y: Update rules.
9903 (lex_one_token): Update rules.
9904 * c-exp.y: Update rules.
9905 (lex_one_token): Update.
9906 * ada-lang.c (resolve): Add "parse_completion" parameter.
9907 (resolve_subexp): Likewise.
9908 (ada_resolve_function): Likewise.
9909
43476f0b
TT
99102019-04-04 Tom Tromey <tom@tromey.com>
9911
9912 * parser-defs.h (struct parser_state) <start_arglist,
9913 end_arglist>: New methods.
9914 <arglist_len, m_funcall_chain>: New members.
9915 (arglist_len, start_arglist, end_arglist): Don't declare.
9916 * parse.c (arglist_len, funcall_chain): Remove global.
9917 (start_arglist, end_arglist): Remove functions.
9918 (parse_exp_in_context): Update.
9919 * p-exp.y: Update rules.
9920 * m2-exp.y: Update rules.
9921 * go-exp.y: Update rules.
9922 * f-exp.y: Update rules.
9923 * d-exp.y: Update rules.
9924 * c-exp.y: Update rules.
9925
5776fca3
TT
99262019-04-04 Tom Tromey <tom@tromey.com>
9927
9928 * rust-exp.y (struct rust_parser) <lex_hex, lex_escape,
9929 lex_operator, push_back>: New methods.
9930 Update all rules.
9931 (rust_parser::lex_hex, lex_escape): Rename and update.
9932 (rust_parser::lex_string, rust_parser::lex_identifier): Update.
9933 (rust_parser::lex_operator): Rename and update.
9934 (rust_parser::lex_number, rustyylex, rustyyerror)
9935 (rust_lex_test_init, rust_lex_test_sequence)
9936 (rust_lex_test_push_back, rust_lex_tests): Update.
9937 * parser-defs.h (struct parser_state) <parser_state>: Add "input"
9938 parameter.
9939 <lexptr, prev_lexptr>: New members.
9940 (lexptr, prev_lexptr): Don't declare.
9941 * parse.c (lexptr, prev_lexptr): Remove globals.
9942 (parse_exp_in_context): Update.
9943 * p-exp.y (yylex, yyerror): Update.
9944 * m2-exp.y (parse_number, yylex, yyerror): Update.
9945 * go-exp.y (lex_one_token, yyerror): Update.
9946 * f-exp.y (match_string_literal, yylex, yyerror): Update.
9947 * d-exp.y (lex_one_token, yyerror): Update.
9948 * c-exp.y (scan_macro_expansion, finished_macro_expansion)
9949 (lex_one_token, yyerror): Update.
9950 * ada-lex.l (YY_INPUT): Update.
9951 (rewind_to_char): Update.
9952 * ada-exp.y (yyerror): Update.
9953
8621b685
TT
99542019-04-04 Tom Tromey <tom@tromey.com>
9955
9956 * rust-exp.y (rustyylex, rust_lex_tests): Update.
9957 * parser-defs.h (struct parser_state) <parser_state>: Add new
9958 parameter.
9959 <comma_terminates>: New member.
9960 (comma_terminates): Don't declare global.
9961 * parse.c (comma_terminates): Remove global.
9962 (parse_exp_in_context): Update.
9963 * p-exp.y (yylex): Update.
9964 * m2-exp.y (yylex): Update.
9965 * go-exp.y (lex_one_token): Update.
9966 * f-exp.y (yylex): Update.
9967 * d-exp.y (lex_one_token): Update.
9968 * c-exp.y (lex_one_token): Update.
9969 * ada-lex.l: Update.
9970
28aaf3fd
TT
99712019-04-04 Tom Tromey <tom@tromey.com>
9972
9973 * rust-exp.y (struct rust_parser) <paren_depth>: New member.
9974 (rustyylex, rust_lex_test_init, rust_lex_test_one)
9975 (rust_lex_test_sequence, rust_lex_test_push_back): Update.
9976 * parser-defs.h (paren_depth): Don't declare.
9977 * parse.c (paren_depth): Remove global.
9978 (parse_exp_in_context): Update.
9979 * p-exp.y (paren_depth): New global.
9980 (pascal_parse): Initialize it.
9981 * m2-exp.y (paren_depth): New global.
9982 (m2_parse): Initialize it.
9983 * go-exp.y (paren_depth): New global.
9984 (go_parse): Initialize it.
9985 * f-exp.y (paren_depth): New global.
9986 (f_parse): Initialize it.
9987 * d-exp.y (paren_depth): New global.
9988 (d_parse): Initialize it.
9989 * c-exp.y (paren_depth): New global.
9990 (c_parse): Initialize it.
9991 * ada-lex.l (paren_depth): New global.
9992 (lexer_init): Initialize it.
9993
1e58a4a4
TT
99942019-04-04 Tom Tromey <tom@tromey.com>
9995
9996 * rust-exp.y (rust_parser::crate_name, rust_parser::super_name)
9997 (rust_parser::convert_ast_to_type)
9998 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
9999 * parser-defs.h (struct parser_state) <parser_state>: Add
10000 parameters. Initialize new members.
10001 <expression_context_block, expression_context_pc>: New members.
10002 * parse.c (expression_context_block, expression_context_pc):
10003 Remove globals.
10004 (parse_exp_in_context): Update.
10005 * p-exp.y: Update all rules.
10006 (yylex): Update.
10007 * m2-exp.y: Update all rules.
10008 (yylex): Update.
10009 * go-exp.y (yylex): Update.
10010 * f-exp.y (yylex): Update.
10011 * d-exp.y: Update all rules.
10012 (yylex): Update.
10013 * c-exp.y: Update all rules.
10014 (lex_one_token, classify_name, yylex, c_parse): Update.
10015 * ada-exp.y (write_var_or_type, write_name_assoc): Update.
10016
37eedb39
TT
100172019-04-04 Tom Tromey <tom@tromey.com>
10018
10019 * gdbarch.h, gdbarch.c: Rebuild.
10020 * gdbarch.sh (dtrace_parse_probe_argument): Change type.
10021 * stap-probe.h:
10022 (struct stap_parse_info): Replace "parser_state" with
10023 "expr_builder".
10024 * parser-defs.h (struct expr_builder): Rename from "parser_state".
10025 (parser_state): New class.
10026 * parse.c (expr_builder): Rename.
10027 (expr_builder::release): Rename.
10028 (write_exp_elt, write_exp_elt_opcode, write_exp_elt_sym)
10029 (write_exp_elt_msym, write_exp_elt_block, write_exp_elt_objfile)
10030 (write_exp_elt_longcst, write_exp_elt_floatcst)
10031 (write_exp_elt_type, write_exp_elt_intern, write_exp_string)
10032 (write_exp_string_vector, write_exp_bitstring)
10033 (write_exp_msymbol, mark_struct_expression)
10034 (write_dollar_variable)
10035 (insert_type_address_space, increase_expout_size): Replace
10036 "parser_state" with "expr_builder".
10037 * dtrace-probe.c: Replace "parser_state" with "expr_builder".
10038 * amd64-linux-tdep.c (amd64_dtrace_parse_probe_argument): Replace
10039 "parser_state" with "expr_builder".
10040
73923d7e
TT
100412019-04-04 Tom Tromey <tom@tromey.com>
10042
10043 * rust-exp.y: Replace "parse_language" with method call.
10044 * p-exp.y:
10045 (yylex): Replace "parse_language" with method call.
10046 * m2-exp.y:
10047 (yylex): Replace "parse_language" with method call.
10048 * go-exp.y (classify_name): Replace "parse_language" with method
10049 call.
10050 * f-exp.y (yylex): Replace "parse_language" with method call.
10051 * d-exp.y (lex_one_token): Replace "parse_language" with method
10052 call.
10053 * c-exp.y:
10054 (lex_one_token, classify_name, yylex): Replace "parse_language"
10055 with method call.
10056 * ada-exp.y (find_primitive_type, type_char)
10057 (type_system_address): Replace "parse_language" with method call.
10058
fa9f5be6
TT
100592019-04-04 Tom Tromey <tom@tromey.com>
10060
10061 * rust-exp.y: Replace "parse_gdbarch" with method call.
10062 * parse.c (write_dollar_variable, insert_type_address_space):
10063 Replace "parse_gdbarch" with method call.
10064 * p-exp.y (parse_type, yylex): Replace "parse_gdbarch" with method
10065 call.
10066 * objc-lang.c (end_msglist): Replace "parse_gdbarch" with method
10067 call.
10068 * m2-exp.y (parse_type, parse_m2_type, yylex): Replace
10069 "parse_gdbarch" with method call.
10070 * go-exp.y (parse_type, classify_name): Replace "parse_gdbarch"
10071 with method call.
10072 * f-exp.y (parse_type, parse_f_type, yylex): Replace
10073 "parse_gdbarch" with method call.
10074 * d-exp.y (parse_type, parse_d_type, lex_one_token): Replace
10075 "parse_gdbarch" with method call.
10076 * c-exp.y (parse_type, parse_number, classify_name): Replace
10077 "parse_gdbarch" with method call.
10078 * ada-lex.l: Replace "parse_gdbarch" with method call.
10079 * ada-exp.y (parse_type, find_primitive_type, type_char)
10080 (type_system_address): Replace "parse_gdbarch" with method call.
10081
1201a264
TT
100822019-04-04 Tom Tromey <tom@tromey.com>
10083
10084 * dtrace-probe.c (dtrace_probe::build_arg_exprs): Update.
10085 * stap-probe.c (stap_parse_argument): Update.
10086 * stap-probe.h (struct stap_parse_info) <stap_parse_info>: Remove
10087 initial_size parameter.
10088 * rust-exp.y (rust_lex_tests): Update.
10089 * parse.c (parser_state): Update.
10090 (parse_exp_in_context): Update.
10091 * parser-defs.h (struct parser_state) <parser_state>: Remove
10092 "initial_size" parameter.
10093
e3980ce2
TT
100942019-04-04 Tom Tromey <tom@tromey.com>
10095
10096 * parser-defs.h (increase_expout_size): Don't declare.
10097 * parse.c (increase_expout_size): Now static.
10098
e9f8e3f1
TS
100992019-04-04 Thomas Schwinge <thomas@codesourcery.com>
10100
10101 * gnu-nat.c (gnu_nat_target::wait): Fix
10102 target_waitstatus_to_string call.
10103
d7df6549
AB
101042019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
10105
10106 * eval.c (evaluate_subexp_standard): Handle internal functions
10107 during Fortran function call handling.
10108
8bdc1658
AB
101092019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
10110
10111 * NEWS: Mention new internal functions.
10112 * dwarf2read.c (dwarf2_init_complex_target_type): New function.
10113 (read_base_type): Use dwarf2_init_complex_target_type.
10114 * value.c (creal_internal_fn): New function.
10115 (cimag_internal_fn): New function.
10116 (_initialize_values): Register new internal functions.
10117
c29705b7
PW
101182019-04-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10119
10120 * infrun.c (stop_all_threads): If debug_infrun, always
10121 trace the wait status after wait_one, using
10122 target_waitstatus_to_string and target_pid_to_str.
10123 (handle_inferior_event): Replace various trace of
10124 wait status kind by a single trace.
10125 * gdb/gnu-nat.c (gnu_nat_target::wait): Replace local
10126 wait status kind image by target_waitstatus_to_string.
10127 * target/waitstatus.c (target_waitstatus_to_string): Fix
10128 obsolete comment.
10129
05caa1d2
TT
101302019-04-01 Tom Tromey <tromey@adacore.com>
10131
10132 PR symtab/23331:
10133 * dwarf2read.c (partial_die_info::read): Handle DW_AT_ranges.
10134
9d1447e0
SDJ
101352019-04-01 Sergio Durigan Junior <sergiodj@redhat.com>
10136 Pedro Alves <palves@redhat.com>
10137
10138 * top.c (quit_force): Call 'finalize_values'.
10139 * value.c (finalize_values): New function.
10140 * value.h (finalize_values): Declare.
10141
7734102d
EZ
101422019-03-30 Eli Zaretskii <eliz@gnu.org>
10143
10144 * NEWS: Announce $_gdb_major and $_gdb_minor.
10145
10146 * top.c (init_gdb_version_vars): New function.
10147 (gdb_init): Call init_gdb_version_vars.
10148
188e1fa9
TT
101492019-03-29 Tom Tromey <tromey@adacore.com>
10150
10151 * printcmd.c (_initialize_printcmd): Add usage lines. Update some
10152 help text. Remove dead code.
10153
2880242d
KS
101542019-03-29 Keith Seitz <keiths@redhat.com>
10155
10156 From Siddhesh Poyarekar:
10157 * f-lang.h (f77_get_upperbound): Return LONGEST.
10158 (f77_get_lowerbound): Likewise.
10159 * f-typeprint.c (f_type_print_varspec_suffix): Expand
10160 UPPER_BOUND and LOWER_BOUND to LONGEST. Use plongest to format
10161 print them.
10162 (f_type_print_base): Expand UPPER_BOUND to LONGEST. Use
10163 plongest to format print it.
10164 * f-valprint.c (f77_get_lowerbound): Return LONGEST.
10165 (f77_get_upperbound): Likewise.
10166 (f77_get_dynamic_length_of_aggregate): Expand UPPER_BOUND,
10167 LOWER_BOUND to LONGEST.
10168 (f77_create_arrayprint_offset_tbl): Likewise.
10169
cc1defb1
KS
101702019-03-29 Keith Seitz <keiths@redhat.com>
10171
10172 * ada-lang.c (ada_template_to_fixed_record_type_1): Use
10173 %s/pulongest for TYPE_LENGTH instead of %d in format
10174 strings.
10175 * ada-typerint.c (ada_print_type): Likewise.
10176 * amd64-windows-tdep.c (amd64_windows_store_arg_in_reg): Likewise.
10177 * compile/compile-c-support.c (generate_register_struct): Likewise.
10178 * gdbtypes.c (recursive_dump_type): Likewise.
10179 * gdbtypes.h (struct type) <length>: Change type to ULONGEST.
10180 * m2-typeprint.c (m2_array): Use %s/pulongest for TYPE_LENGTH
10181 instead of %d in format strings.
10182 * riscv-tdep.c (riscv_type_alignment): Cast second argument
10183 to std::min to ULONGEST.
10184 * symmisc.c (print_symbol): Use %s/pulongest for TYPE_LENGTH
10185 instead of %d in format strings.
10186 * tracepoint.c (info_scope_command): Likewise.
10187 * typeprint.c (print_offset_data::update)
10188 (print_offset_data::finish): Likewise.
10189 * xtensa-tdep.c (xtensa_store_return_value)
10190 (xtensa_push_dummy_call): Likewise.
10191
e432ccf1
JT
101922019-03-28 Jon Turney <jon.turney@dronecode.org.uk>
10193
10194 * windows-nat.c (display_selector): Fixed format specifications
10195 for 64-bit Cygwin.
10196
65d2b333
PW
101972019-03-28 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10198
10199 * infrun.c (follow_exec): Call target_terminal::ours_for_output.
10200
f489207e
SL
102012019-03-28 Sandra Loosemore <sandra@codesourcery.com>
10202
10203 * nios2-tdep.h (struct gdbarch_tdep): Add is_kernel_helper.
10204 * nios2-tdep.c (nios2_get_next_pc): Skip over kernel helpers.
10205 * nios2-linux-tdep.c (nios2_linux_is_kernel_helper): New.
10206 (nios2_linux_init_abi): Install it.
10207
bffa1015
AH
102082019-03-28 Alan Hayward <alan.hayward@arm.com>
10209
10210 * aarch64-tdep.c (aarch64_vnv_type): Use vector types.
10211
fc96163a
AH
102122019-03-28 Alan Hayward <alan.hayward@arm.com>
10213
10214 * features/aarch64-sve.c (create_feature_aarch64_sve): Add q view.
10215
20dc7e9b
PW
102162019-03-24 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10217 Tom Tromey <tromey@adacore.com>
10218
10219 * minsyms.c (minimal_symbol_upper_bound): Fix buffer overflow.
10220
7f5331a8
JB
102212019-03-26 Joel Brobecker <brobecker@adacore.com>
10222
10223 * gdb-gdb.py.in (StructMainTypePrettyPrinter.bound_img): New method.
10224 (StructMainTypePrettyPrinter.bounds_img): Use new "bound_img"
10225 method to compute the bounds of range types. Also print "[evaluated]"
10226 if the bounds' values come from a dynamic evaluation.
10227
18c77628
AB
102282019-03-26 Andrew Burgess <andrew.burgess@embecosm.com>
10229
10230 * cp-valprint.c (cp_print_value_fields): Don't print trailing
10231 whitespace when pretty printing is on.
10232
53c973f2
AH
102332019-03-26 Alan Hayward <alan.hayward@arm.com>
10234
e79be6e5 10235 * ppc-linux-nat.c: Add include.
53c973f2 10236
d851aa71
AH
102372019-03-26 Alan Hayward <alan.hayward@arm.com>
10238
e79be6e5 10239 * NEWS: Mention AArch64 Pointer Authentication.
d851aa71 10240
2fe7bab7
AH
102412019-03-26 Alan Hayward <alan.hayward@arm.com>
10242
e79be6e5 10243 * arm-linux-nat.c: Add include.
2fe7bab7 10244
068ef30e
SM
102452019-03-25 Simon Marchi <simon.marchi@polymtl.ca>
10246
10247 * source-cache.c (source_cache::get_source_lines): Re-read
10248 fullname after calling open_source_file.
10249
81a24d04
JB
102502019-03-25 John Baldwin <jhb@FreeBSD.org>
10251
10252 * NEWS: Mention TLS support for FreeBSD.
10253
79e7ae11
TT
102542019-03-25 Tom Tromey <tromey@adacore.com>
10255
10256 * minsyms.c (BUNCH_SIZE): Update comment.
10257 (~minimal_symbol_reader): Remove old comment.
10258 (compact_minimal_symbols): Update comment.
10259 (minimal_symbol_reader::install): Remove old comment. Update
10260 other comments.
10261
d45963c2
AH
102622019-03-25 Alan Hayward <alan.hayward@arm.com>
10263
10264 * s390-linux-nat.c: Add include.
10265
0f83012e
AH
102662019-03-25 Alan Hayward <alan.hayward@arm.com>
10267
10268 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
10269 Call linux_get_hwcap.
10270 * aarch64-linux-tdep.c (aarch64_linux_core_read_description):
10271 Likewise.
10272 (aarch64_linux_get_hwcap): Remove function.
10273 * aarch64-linux-tdep.h (aarch64_linux_get_hwcap): Remove
10274 declaration.
10275 * arm-linux-nat.c (arm_linux_nat_target::read_description):Call
10276 linux_get_hwcap.
10277 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
10278 * linux-tdep.c (linux_get_hwcap): Add function.
10279 (linux_get_hwcap2): Likewise.
10280 * linux-tdep.h (linux_get_hwcap): Add declaration.
10281 (linux_get_hwcap2): Likewise.
10282 * ppc-linux-nat.c (ppc_linux_get_hwcap): Remove function.
10283 (ppc_linux_get_hwcap2): Likewise.
10284 (ppc_linux_nat_target::region_ok_for_hw_watchpoint): Call
10285 linux_get_hwcap.
10286 (ppc_linux_nat_target::insert_watchpoint): Likewise.
10287 (ppc_linux_nat_target::watchpoint_addr_within_range): Likewise.
10288 (ppc_linux_nat_target::read_description): Likewise.
10289 * ppc-linux-tdep.c (ppc_linux_core_read_description): Likewise.
10290 * s390-linux-nat.c: Likewise.
10291 * s390-linux-tdep.c (s390_core_read_description): Likewise.
10292
6640a367
TT
102932019-03-24 Tom Tromey <tom@tromey.com>
10294
10295 * ada-lang.c (standard_lookup): Simplify initialization.
10296 (ada_lookup_symbol_nonlocal): Simplify return.
10297 * solib-spu.c (spu_lookup_lib_symbol): Simplify return.
10298 * solib-darwin.c (darwin_lookup_lib_symbol): Simplify return.
10299 * solib-svr4.c (elf_lookup_lib_symbol): Simplify return.
10300 * rust-lang.c (rust_lookup_symbol_nonlocal): Simplify
10301 initialization.
10302 * solib.c (solib_global_lookup): Simplify.
10303 * symtab.c (null_block_symbol): Remove.
10304 (symbol_cache_lookup): Simplify returns.
10305 (lookup_language_this): Simplify returns.
10306 (lookup_symbol_aux): Simplify return.
10307 (lookup_local_symbol): Simplify returns.
10308 (lookup_global_symbol_from_objfile): Simplify return.
10309 (lookup_symbol_in_objfile_symtabs)
10310 (lookup_symbol_in_objfile_from_linkage_name): Simplify return.
10311 (lookup_symbol_via_quick_fns, lookup_symbol_in_static_block)
10312 (lookup_static_symbol, lookup_global_symbol): Simplify return.
10313 * cp-namespace.c (cp_lookup_bare_symbol)
10314 (cp_search_static_and_baseclasses, cp_lookup_symbol_via_imports)
10315 (cp_lookup_symbol_via_all_imports, cp_lookup_nested_symbol_1)
10316 (cp_lookup_nested_symbol): Don't use null_block_symbol.
10317 (cp_lookup_symbol_via_imports): Simplify initialization.
10318 (find_symbol_in_baseclass): Likewise.
10319 * symtab.h (null_block_symbol): Remove.
10320 * d-namespace.c (d_lookup_symbol): Don't use null_block_symbol.
10321 (d_lookup_nested_symbol, d_lookup_symbol_imports)
10322 (d_lookup_symbol_module): Likewise.
10323 (find_symbol_in_baseclass): Simplify initialization.
10324
a930ebcd
TT
103252019-03-24 Tom Tromey <tom@tromey.com>
10326
10327 * expression.h: Don't include symtab.h.
10328 (struct block): Forward declare.
10329
582942f4
TT
103302019-03-24 Tom Tromey <tom@tromey.com>
10331
10332 * c-exp.y (typebase): Remove casts.
10333 * gdbtypes.c (lookup_unsigned_typename, )
10334 (lookup_signed_typename): Remove cast.
10335 * eval.c (parse_to_comma_and_eval): Remove cast.
10336 * parse.c (write_dollar_variable): Remove cast.
10337 * block.h (struct block) <superblock>: Now const.
10338 * symfile-debug.c (debug_qf_map_matching_symbols): Update.
10339 * psymtab.c (psym_map_matching_symbols): Make "block" const.
10340 (map_block): Make "block" const.
10341 * symfile.h (struct quick_symbol_functions)
10342 <map_matching_symbols>: Constify block argument to "callback".
10343 * symtab.c (basic_lookup_transparent_type_quick): Make "block"
10344 const.
10345 (find_pc_sect_compunit_symtab): Make "b" const.
10346 (find_symbol_at_address): Likewise.
10347 (search_symbols): Likewise.
10348 * dwarf2read.c (dw2_lookup_symbol): Make "block" const.
10349 (dw2_debug_names_lookup_symbol): Likewise.
10350 (dw2_map_matching_symbols): Update.
10351 * p-valprint.c (pascal_val_print): Remove "block".
10352 * ada-lang.c (ada_add_global_exceptions): Make "b" const.
10353 (aux_add_nonlocal_symbols): Make "block" const.
10354 (resolve_subexp): Remove cast.
10355 * linespec.c (iterate_over_all_matching_symtabs): Make "block"
10356 const.
10357 (iterate_over_file_blocks): Likewise.
10358 * f-exp.y (%union) <bval>: Remove.
10359 * coffread.c (patch_opaque_types): Make "b" const.
10360 * spu-tdep.c (spu_catch_start): Make "block" const.
10361 * c-valprint.c (print_unpacked_pointer): Remove "block".
10362 * symmisc.c (dump_symtab_1): Make "b" const.
10363 (block_depth): Make "block" const.
10364 * d-exp.y (%union) <bval>: Remove.
10365 * cp-support.h (cp_lookup_rtti_type): Update.
10366 * cp-support.c (cp_lookup_rtti_type): Make "block" const.
10367 * psymtab.c (psym_lookup_symbol): Make "block" const.
10368 (maintenance_check_psymtabs): Make "b" const.
10369 * python/py-framefilter.c (extract_sym): Make "sym_block" const.
10370 (enumerate_locals, enumerate_args): Update.
10371 * python/py-symtab.c (stpy_global_block): Make "block" const.
10372 (stpy_static_block): Likewise.
10373 * inline-frame.c (block_starting_point_at): Make "new_block"
10374 const.
10375 * block.c (find_block_in_blockvector): Make return type const.
10376 (blockvector_for_pc_sect): Make "b" const.
10377 (find_block_in_blockvector): Make "b" const.
10378
7ad417dd
TT
103792019-03-23 Tom Tromey <tom@tromey.com>
10380
10381 * varobj.c (varobj_create): Update.
10382 * symfile.c (clear_symtab_users): Don't reset innermost_block.
10383 * printcmd.c (display_command, do_one_display): Don't reset
10384 innermost_block.
10385 * parser-defs.h (enum innermost_block_tracker_type): Move to
10386 expression.h.
10387 (innermost_block): Update comment.
10388 * parse.c (parse_exp_1): Add tracker_types parameter.
10389 (parse_exp_in_context): Rename from parse_exp_in_context_1. Add
10390 tracker_types parameter. Reset innermost_block.
10391 (parse_exp_in_context): Remove.
10392 (parse_expression_for_completion): Update.
10393 * objfiles.c (~objfile): Don't reset expression_context_block or
10394 innermost_block.
10395 * expression.h (enum innermost_block_tracker_type): Move from
10396 parser-defs.h.
10397 (parse_exp_1): Add tracker_types parameter.
10398 * breakpoint.c (set_breakpoint_condition, watch_command_1): Don't
10399 reset innermost_block.
10400
b366c208
TT
104012019-03-23 Tom Tromey <tom@tromey.com>
10402
10403 * objfiles.h: Include bcache.h.
10404
9bb9b2f9
TT
104052019-03-23 Tom Tromey <tom@tromey.com>
10406
10407 * linespec.c (get_current_search_block): Use
10408 scoped_restore_current_language.
10409 * symmisc.c (dump_symtab): Use scoped_restore_current_language.
10410
59c28372
AH
104112019-03-22 Alan Hayward <alan.hayward@arm.com>
10412 Jiong Wang <jiong.wang@arm.com>
10413
10414 * aarch64-linux-tdep.c
10415 (aarch64_linux_iterate_over_regset_sections): Check for pauth
10416 section.
10417 * aarch64-linux-tdep.h (AARCH64_LINUX_SIZEOF_PAUTH): New define.
10418
17e116a7
AH
104192019-03-22 Alan Hayward <alan.hayward@arm.com>
10420 Jiong Wang <jiong.wang@arm.com>
10421
10422 * aarch64-tdep.c (aarch64_analyze_prologue): Check for pauth
10423 instructions.
10424 (aarch64_analyze_prologue_test): Add PACIASP test.
10425 (aarch64_prologue_prev_register): Unmask PC value.
10426
11e1b75f
AH
104272019-03-22 Alan Hayward <alan.hayward@arm.com>
10428 Jiong Wang <jiong.wang@arm.com>
10429
10430 * aarch64-tdep.c (aarch64_frame_unmask_address): New function.
10431 (aarch64_dwarf2_prev_register): Unmask PC value.
10432 (aarch64_dwarf2_frame_init_reg): Init pauth registers.
10433 (aarch64_execute_dwarf_cfa_vendor_op): Check for
10434 DW_CFA_AARCH64_negate_ra_state.
10435 (aarch64_gdbarch_init): Add aarch64_execute_dwarf_cfa_vendor_op.
10436
34dcc7cf
AH
104372019-03-22 Alan Hayward <alan.hayward@arm.com>
10438 Jiong Wang <jiong.wang@arm.com>
10439
10440 * aarch64-tdep.c (aarch64_dwarf_reg_to_regnum): Check for pauth
10441 registers.
10442 (aarch64_pseudo_register_name): Likewise.
10443 (aarch64_pseudo_register_type): Likewise.
10444 (aarch64_pseudo_register_reggroup_p): Likewise.
10445 (aarch64_gdbarch_init): Add pauth registers.
10446 * aarch64-tdep.h (AARCH64_DWARF_PAUTH_RA_STATE): New define.
10447 (AARCH64_DWARF_PAUTH_DMASK): Likewise.
10448 (AARCH64_DWARF_PAUTH_CMASK): Likewise.
10449 (struct gdbarch_tdep): Add regnum for ra_state.
10450
1ef53e6b
AH
104512019-03-22 Alan Hayward <alan.hayward@arm.com>
10452 Jiong Wang <jiong.wang@arm.com>
10453
10454 * arch/aarch64.h (AARCH64_PAUTH_REGS_SIZE): New define.
10455
76bed0fd
AH
104562019-03-22 Alan Hayward <alan.hayward@arm.com>
10457 Jiong Wang <jiong.wang@arm.com>
10458
10459 * aarch64-linux-nat.c (fetch_pauth_masks_from_thread): New
10460 function.
10461 (aarch64_linux_nat_target::fetch_registers): Read pauth registers.
10462 * aarch64-tdep.c (aarch64_cannot_store_register): New function.
10463 (aarch64_gdbarch_init): Add puth registers.
10464 * aarch64-tdep.h (struct gdbarch_tdep): Add pauth features.
10465 * arch/aarch64.h (AARCH64_PAUTH_DMASK_REGNUM): New define.
10466 (AARCH64_PAUTH_CMASK_REGNUM): Likewise.
10467
ee4fbcfa
AH
104682019-03-22 Alan Hayward <alan.hayward@arm.com>
10469 Jiong Wang <jiong.wang@arm.com>
10470
10471 * aarch64-linux-nat.c
10472 (aarch64_linux_nat_target::read_description): Read PACA hwcap.
10473 * aarch64-linux-tdep.c
10474 (aarch64_linux_core_read_description): Likewise.
10475 (aarch64_linux_get_hwcap): New function.
10476 * aarch64-linux-tdep.h (AARCH64_HWCAP_PACA): New define.
10477 (aarch64_linux_get_hwcap): New declaration.
10478
6dc0ebde
AH
104792019-03-22 Alan Hayward <alan.hayward@arm.com>
10480 Jiong Wang <jiong.wang@arm.com>
10481
10482 * aarch64-linux-nat.c
10483 (aarch64_linux_nat_target::read_description): Add pauth param.
10484 * aarch64-linux-tdep.c
10485 (aarch64_linux_core_read_description): Likewise.
10486 * aarch64-tdep.c (struct target_desc): Add in pauth.
10487 (aarch64_read_description): Add pauth param.
10488 (aarch64_gdbarch_init): Likewise.
10489 * aarch64-tdep.h (aarch64_read_description): Likewise.
10490 * arch/aarch64.c (aarch64_create_target_description): Likewise.
10491 * arch/aarch64.h (aarch64_create_target_description): Likewise.
10492 * features/Makefile: Add new files.
10493 * features/aarch64-pauth.c: New file.
10494 * features/aarch64-pauth.xml: New file.
10495
595915c1
TT
104962019-03-20 Tom Tromey <tromey@adacore.com>
10497
10498 * infrun.c (handle_inferior_event): Rename from
10499 handle_inferior_event_1. Create a scoped_value_mark.
10500 (handle_inferior_event): Remove.
10501
4c7d57e7
TT
105022019-03-19 Tom Tromey <tromey@adacore.com>
10503
10504 * mi/mi-interp.c (mi_on_normal_stop_1): Only show displays once.
10505 * infrun.h (print_stop_event): Add "displays" parameter.
10506 * infrun.c (print_stop_event): Add "displays" parameter.
10507
cb246234
PA
105082019-03-19 Pedro Alves <palves@redhat.com>
10509
10510 * tui/tui-out.c (tui_ui_out::do_field_string): Simplify.
10511 (tui_ui_out::do_text): Add comments. Reset M_LINE to 0 instead of
10512 to -1. Fix TABs vs spaces.
10513 (tui_ui_out::tui_ui_out): Don't initialize fields here.
10514 * tui/tui-out.h (tui_ui_out) Add intro comments.
10515 <m_line, m_start_of_line>: In-class initialize, and add describing
10516 comment.
10517
3a0e45b2
AH
105182019-03-18 Alan Hayward <alan.hayward@arm.com>
10519
10520 * arm-linux-nat.c (arm_linux_insert_hw_breakpoint1): Fix
10521 variable names.
10522 (arm_linux_remove_hw_breakpoint1): Use a gdb::function_view.
10523
5371b850
PA
105242019-03-18 Pedro Alves <palves@redhat.com>
10525 Eli Zaretskii <eliz@gnu.org>
10526
10527 * tui/tui-out.c (tui_ui_out::tui_ui_out): Fix initialization of
10528 m_line and m_start_of_line.
10529
b17c4cd0
EZ
105302019-03-18 Eli Zaretskii <eliz@gnu.org>
10531
10532 * tui/tui-io.c (gdb_wgetch): Don't echo CR.
10533 (tui_getc): When gdb_wgetch returns a CR, behave the same as when
10534 it returns a newline. This fixes a regression in TU mode, whereby
10535 the next line is output on the same screen line as the user input.
10536
4bd56d18
TT
105372019-03-18 Tom Tromey <tromey@adacore.com>
10538
10539 * minsyms.c (minimal_symbol_reader::install): Remove call to
10540 obstack_blank.
10541
55c10aca
PA
105422019-03-18 Pedro Alves <palves@redhat.com>
10543
10544 * tui/tui-io.c (reverse_mode_p, reverse_save_bg, reverse_save_fg):
10545 New globals.
10546 (apply_style): New, factored out from ...
10547 (apply_ansi_escape): ... this. Handle reverse video mode.
10548 (tui_set_reverse_mode): New function.
10549 * tui/tui-io.h (tui_set_reverse_mode): New declaration.
10550 * tui/tui-winsource.c (tui_show_source_line): Use
10551 tui_set_reverse_mode instead of setting A_STANDOUT.
10552 * ui-style.h (struct ui_file_style) <set_reverse, set_fg, set_bg>:
10553 New setter methods.
10554
647bb750
HD
105552019-03-18 Hannes Domani <ssbssa@yahoo.de>
10556
10557 * tui/tui-source.c (copy_source_line): Fix handling of 'column'.
10558 Handle tabs.
10559
bff8c71f
TT
105602019-03-18 Tom Tromey <tromey@adacore.com>
10561
10562 * ada-lang.c (empty_array): Add "high" parameter.
10563 (ada_evaluate_subexp): Update.
10564
58785d98
ST
105652019-03-17 Sergei Trofimovich <siarheit@google.com>
10566
10567 * unittests/string_view-selftests.c: Define
10568 _initialize_string_view_selftests unconditionally.
10569
d4cbef22
ВМ
105702019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
10571
10572 PR gdb/24350
10573 * windows-nat.c (windows_make_so): Remove unused text_vma variable.
10574
fce4c071
ВМ
105752019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
10576
10577 PR gdb/24351
10578 * windows-nat.c (display_selector): Fix format specifiers.
10579
f7f0a123
EZ
105802019-03-17 Eli Zaretskii <eliz@gnu.org>
10581
10582 * tui/tui-winsource.c (tui_set_is_exec_point_at): Call
10583 tui_refill_source_window instead of tui_refresh_win, to update the
10584 current execution line. This fixes redisplay of the current line
10585 when stepping through the code with "next" or "step".
10586
ab42892f
EZ
105872019-03-16 Eli Zaretskii <eliz@gnu.org>
10588
10589 * source-cache.c (source_cache::get_source_lines): Call
10590 find_source_lines to initialize s->nlines. This fixes vertical
10591 scrolling of TUI source window when the DOWN arrow is pressed.
10592
8d8c087f
PW
105932019-03-16 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10594
10595 * auto-load.c (_initialize_auto_load): Fix 'This options has'.
10596 linux-thread-db.c (_initialize_thread_db): Likewise.
10597
798e1c30
EZ
105982019-03-16 Eli Zaretskii <eliz@gnu.org>
10599
10600 * tui/tui-winsource.c (tui_show_source_line): Revert "Use
10601 wclrtoeol in tui_show_source_line". This reverts changes made in
10602 commit 4a3045920bbe4e50a0f4920b0fdc4e88ef23015c.
10603
eefba3da
TT
106042019-03-15 Tom Tromey <tom@tromey.com>
10605
10606 * symtab.h (struct minimal_symbol): Derive from
10607 general_symbol_info.
10608 (MSYMBOL_VALUE, MSYMBOL_VALUE_RAW_ADDRESS)
10609 (MSYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_BYTES)
10610 (MSYMBOL_BLOCK_VALUE, MSYMBOL_VALUE_CHAIN, MSYMBOL_LANGUAGE)
10611 (MSYMBOL_SECTION, MSYMBOL_OBJ_SECTION, MSYMBOL_NATURAL_NAME)
10612 (MSYMBOL_LINKAGE_NAME, MSYMBOL_DEMANGLED_NAME)
10613 (MSYMBOL_SEARCH_NAME): Update.
10614 (MSYMBOL_SET_LANGUAGE, MSYMBOL_SET_NAMES): Remove.
10615 * solib.c (gdb_bfd_lookup_symbol_from_symtab): Don't use memset.
10616 * minsyms.c (minimal_symbol_reader::record_full): Update.
10617
0de2420c
TT
106182019-03-15 Tom Tromey <tom@tromey.com>
10619
10620 * minsyms.c (minimal_symbol_reader::install): Use memcpy.
10621
042d75e4
TT
106222019-03-15 Tom Tromey <tom@tromey.com>
10623
10624 * objfiles.h (struct objfile_per_bfd_storage) <msymbols>: Now a
10625 unique_xmalloc_ptr.
10626 (objfile::msymbols_range::begin, objfile::msymbols_range::end):
10627 Update.
10628 * minsyms.c (lookup_minimal_symbol_by_pc_section)
10629 (build_minimal_symbol_hash_tables)
10630 (minimal_symbol_reader::install): Update.
10631
db92718b
TT
106322019-03-15 Tom Tromey <tom@tromey.com>
10633
10634 * symtab.c (create_demangled_names_hash): Update.
10635 (symbol_set_names): Update.
10636 * objfiles.h (struct objfile_per_bfd_storage)
10637 <demangled_names_hash>: Now an htab_up.
10638 * objfiles.c (objfile_per_bfd_storage): Simplify.
10639
d6797f46
TT
106402019-03-15 Tom Tromey <tom@tromey.com>
10641
10642 * objfiles.h (struct objfile_per_bfd_storage): Declare
10643 destructor.
10644 * objfiles.c (objfile_per_bfd_storage::~objfile_per_bfd_storage):
10645 New.
10646 (get_objfile_bfd_data): Use new. Don't initialize
10647 language_of_main.
10648 (free_objfile_per_bfd_storage): Remove.
10649 (objfile_bfd_data_free, objfile::~objfile): Use delete.
10650
741d7538
TT
106512019-03-15 Tom Tromey <tom@tromey.com>
10652
10653 * symfile.c (reread_symbols): Update.
10654 * objfiles.c (objfile::objfile): Update.
10655 * minsyms.h (terminate_minimal_symbol_table): Don't declare.
10656 * minsyms.c (lookup_minimal_symbol_by_pc_section): Update
10657 comment.
10658 (minimal_symbol_reader::install): Update.
10659 (terminate_minimal_symbol_table): Remove.
10660 * jit.c (jit_object_close_impl): Update.
10661
788c80d1
TT
106622019-03-15 Tom Tromey <tom@tromey.com>
10663
10664 * minsyms.c (minimal_symbol_reader::record_full): Remove some
10665 initializations.
10666
1b7a07cb
TT
106672019-03-15 Tom Tromey <tom@tromey.com>
10668
10669 * objfiles.h (struct objfile_per_bfd_storage)
10670 <demangled_hash_languages>: Now a bitset.
10671 * minsyms.c (add_minsym_to_demangled_hash_table): Update.
10672 (lookup_minimal_symbol): Update.
10673
3db066bc
TT
106742019-03-15 Tom Tromey <tom@tromey.com>
10675
10676 * minsyms.h (class minimal_symbol_reader) <record_with_info>:
10677 Don't return the symbol.
10678 * coffread.c (record_minimal_symbol): Use record_full.
10679
3fff2c37
EZ
106802019-03-14 Eli Zaretskii <eliz@gnu.org>
10681
10682 The MS-Windows port of ncurses fails to switch to a color pair if
10683 one or both of the colors are the implicit default colors. This
10684 change records the default colors when TUI is initialized, and
10685 then specifies them explicitly when a color pair uses the default
10686 colors. This allows color styling in TUI mode on MS-Windows.
10687
10688 * tui/tui-io.c [__MINGW32__]: Include windows.h. Declare
10689 ncurses_norm_attr.
10690 (tui_initialize_io) [__MINGW32__]: Record the default terminal
10691 colors in ncurses_norm_attr.
10692 (apply_ansi_escape) [__MINGW32__]: If a color in a color pair is
10693 "none", replace it with the default color recorded in
10694 ncurses_norm_attr.
10695
3b336828
TT
106962019-03-14 Tom Tromey <tromey@adacore.com>
10697
10698 * source-cache.h (class source_cache) <get_source_lines>: Return
10699 std::string.
10700 * source-cache.c (source_cache::extract_lines): Handle case where
10701 first_pos==npos. Return std::string.
10702 (source_cache::get_source_lines): Update.
10703
d085f989
TT
107042019-03-14 Tom Tromey <tromey@adacore.com>
10705
10706 * NEWS: Add item for "style sources" commands.
10707 * source-cache.c (source_cache::get_source_lines): Check
10708 source_styling.
10709 * cli/cli-style.c (source_styling): New global.
10710 (_initialize_cli_style): Add "style sources" commands.
10711 (show_style_sources): New function.
10712 * cli/cli-style.h (source_styling): Declare.
10713
6f11e682
TT
107142019-03-14 Pedro Alves <palves@redhat.com>
10715 Tom Tromey <tromey@adacore.com>
10716
10717 * tui/tui-winsource.h (tui_refill_source_window): Declare.
10718 * tui/tui-winsource.c (tui_refill_source_window): New function,
10719 from...
10720 (tui_horizontal_source_scroll): ... here. Move some logic.
10721 * cli/cli-style.c (set_style_enabled): Notify new observable.
10722 * tui/tui-hooks.c (tui_redisplay_source): New function.
10723 (tui_attach_detach_observers): Attach or detach
10724 tui_redisplay_source.
10725 * observable.h (source_styling_changed): New observable.
10726 * observable.c: Define source_styling_changed observable.
10727
a068643d
TT
107282019-03-13 Tom Tromey <tromey@adacore.com>
10729
10730 * i386-gnu-nat.c (i386_gnu_nat_target::fetch_registers)
10731 (i386_gnu_nat_target::store_registers): Update.
10732 * target-debug.h (target_debug_print_std_string): New macro.
10733 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
10734 * windows-tdep.c (display_one_tib): Update.
10735 * tui/tui-stack.c (tui_make_status_line): Update.
10736 * top.c (print_inferior_quit_action): Update.
10737 * thread.c (thr_try_catch_cmd): Update.
10738 (add_thread_with_info): Update.
10739 (thread_target_id_str): Update.
10740 (thr_try_catch_cmd): Update.
10741 (thread_command): Update.
10742 (thread_find_command): Update.
10743 * record-btrace.c (record_btrace_target::info_record)
10744 (record_btrace_resume_thread, record_btrace_target::resume)
10745 (record_btrace_cancel_resume, record_btrace_step_thread)
10746 (record_btrace_target::wait, record_btrace_target::wait)
10747 (record_btrace_target::wait, record_btrace_target::stop): Update.
10748 * progspace.c (print_program_space): Update.
10749 * process-stratum-target.c
10750 (process_stratum_target::thread_address_space): Update.
10751 * linux-fork.c (linux_fork_mourn_inferior)
10752 (detach_checkpoint_command, info_checkpoints_command)
10753 (linux_fork_context): Update.
10754 (linux_fork_detach): Update.
10755 (class scoped_switch_fork_info): Update.
10756 (delete_checkpoint_command): Update.
10757 * infrun.c (follow_fork_inferior): Update.
10758 (follow_fork_inferior): Update.
10759 (proceed_after_vfork_done): Update.
10760 (handle_vfork_child_exec_or_exit): Update.
10761 (follow_exec): Update.
10762 (displaced_step_prepare_throw): Update.
10763 (displaced_step_restore): Update.
10764 (start_step_over): Update.
10765 (resume_1): Update.
10766 (clear_proceed_status_thread): Update.
10767 (proceed): Update.
10768 (print_target_wait_results): Update.
10769 (do_target_wait): Update.
10770 (context_switch): Update.
10771 (stop_all_threads): Update.
10772 (restart_threads): Update.
10773 (finish_step_over): Update.
10774 (handle_signal_stop): Update.
10775 (switch_back_to_stepped_thread): Update.
10776 (keep_going_pass_signal): Update.
10777 (print_exited_reason): Update.
10778 (normal_stop): Update.
10779 * inferior.c (inferior_pid_to_str): Change return type.
10780 (print_selected_inferior): Update.
10781 (add_inferior): Update.
10782 (detach_inferior): Update.
10783 * dummy-frame.c (fprint_dummy_frames): Update.
10784 * dcache.c (dcache_info_1): Update.
10785 * btrace.c (btrace_enable, btrace_disable, btrace_teardown)
10786 (btrace_fetch, btrace_clear): Update.
10787 * linux-tdep.c (linux_core_pid_to_str): Change return type.
10788 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Change return
10789 type.
10790 * fbsd-tdep.c (fbsd_core_pid_to_str): Change return type.
10791 * sol2-tdep.h (sol2_core_pid_to_str): Change return type.
10792 * sol2-tdep.c (sol2_core_pid_to_str): Change return type.
10793 * gdbarch.c, gdbarch.h: Rebuild.
10794 * gdbarch.sh (core_pid_to_str): Change return type.
10795 * windows-nat.c (struct windows_nat_target) <pid_to_str>: Change
10796 return type.
10797 (windows_nat_target::pid_to_str): Change return type.
10798 (windows_delete_thread): Update.
10799 (windows_nat_target::attach): Update.
10800 (windows_nat_target::files_info): Update.
10801 * target-delegates.c: Rebuild.
10802 * sol-thread.c (class sol_thread_target) <pid_to_str>: Change
10803 return type.
10804 (sol_thread_target::pid_to_str): Change return type.
10805 * remote.c (class remote_target) <pid_to_str>: Change return
10806 type.
10807 (remote_target::pid_to_str): Change return type.
10808 (extended_remote_target::attach, remote_target::remote_stop_ns)
10809 (remote_target::remote_notif_remove_queued_reply)
10810 (remote_target::push_stop_reply, remote_target::disable_btrace):
10811 Update.
10812 (extended_remote_target::attach): Update.
10813 * remote-sim.c (struct gdbsim_target) <pid_to_str>: Change return
10814 type.
10815 (gdbsim_target::pid_to_str): Change return type.
10816 * ravenscar-thread.c (struct ravenscar_thread_target)
10817 <pid_to_str>: Change return type.
10818 (ravenscar_thread_target::pid_to_str): Change return type.
10819 * procfs.c (class procfs_target) <pid_to_str>: Change return
10820 type.
10821 (procfs_target::pid_to_str): Change return type.
10822 (procfs_target::attach): Update.
10823 (procfs_target::detach): Update.
10824 (procfs_target::fetch_registers): Update.
10825 (procfs_target::store_registers): Update.
10826 (procfs_target::wait): Update.
10827 (procfs_target::files_info): Update.
10828 * obsd-nat.c (obsd_nat_target::pid_to_str): Change return type.
10829 * nto-procfs.c (struct nto_procfs_target) <pid_to_str>: Change
10830 return type.
10831 (nto_procfs_target::pid_to_str): Change return type.
10832 (nto_procfs_target::files_info, nto_procfs_target::attach): Update.
10833 * linux-thread-db.c (class thread_db_target) <pid_to_str>: Change
10834 return type.
10835 * linux-nat.c (linux_nat_target::pid_to_str): Change return type.
10836 (exit_lwp): Update.
10837 (attach_proc_task_lwp_callback, get_detach_signal)
10838 (detach_one_lwp, resume_lwp, linux_nat_target::resume)
10839 (linux_nat_target::resume, wait_lwp, stop_callback)
10840 (maybe_clear_ignore_sigint, stop_wait_callback, status_callback)
10841 (save_stop_reason, select_event_lwp, linux_nat_filter_event)
10842 (linux_nat_wait_1, resume_stopped_resumed_lwps)
10843 (linux_nat_target::wait, linux_nat_stop_lwp): Update.
10844 * inf-ptrace.c (inf_ptrace_target::pid_to_str): Change return
10845 type.
10846 (inf_ptrace_target::attach): Update.
10847 (inf_ptrace_target::files_info): Update.
10848 * go32-nat.c (struct go32_nat_target) <pid_to_str>: Change return
10849 type.
10850 (go32_nat_target::pid_to_str): Change return type.
10851 * gnu-nat.c (gnu_nat_target::pid_to_str): Change return type.
10852 (gnu_nat_target::wait): Update.
10853 (gnu_nat_target::wait): Update.
10854 (gnu_nat_target::resume): Update.
10855 * fbsd-nat.c (fbsd_nat_target::pid_to_str): Change return type.
10856 (fbsd_nat_target::wait): Update.
10857 * darwin-nat.c (darwin_nat_target::pid_to_str): Change return
10858 type.
10859 (darwin_nat_target::attach): Update.
10860 * corelow.c (class core_target) <pid_to_str>: Change return type.
10861 (core_target::pid_to_str): Change return type.
10862 * target.c (normal_pid_to_str): Change return type.
10863 (default_pid_to_str): Likewise.
10864 (target_pid_to_str): Change return type.
10865 (target_translate_tls_address): Update.
10866 (target_announce_detach): Update.
10867 * bsd-uthread.c (struct bsd_uthread_target) <pid_to_str>: Change
10868 return type.
10869 (bsd_uthread_target::pid_to_str): Change return type.
10870 * bsd-kvm.c (class bsd_kvm_target) <pid_to_str>: Change return
10871 type.
10872 (bsd_kvm_target::pid_to_str): Change return type.
10873 * aix-thread.c (class aix_thread_target) <pid_to_str>: Change
10874 return type.
10875 (aix_thread_target::pid_to_str): Change return type.
10876 * target.h (struct target_ops) <pid_to_str>: Change return type.
10877 (target_pid_to_str, normal_pid_to_str): Likewise.
10878 * obsd-nat.h (class obsd_nat_target) <pid_to_str>: Change return
10879 type.
10880 * linux-nat.h (class linux_nat_target) <pid_to_str>: Change return
10881 type.
10882 * inf-ptrace.h (struct inf_ptrace_target) <pid_to_str>: Change
10883 return type.
10884 * gnu-nat.h (struct gnu_nat_target) <pid_to_str>: Change return
10885 type.
10886 * fbsd-nat.h (class fbsd_nat_target) <pid_to_str>: Change return
10887 type.
10888 * darwin-nat.h (class darwin_nat_target) <pid_to_str>: Change
10889 return type.
10890
b4be1b06
SM
108912019-03-13 Simon Marchi <simon.marchi@ericsson.com>
10892
10893 * NEWS: Mention that the new default MI version is 3. Mention
10894 changes to the output of commands and events that deal with
10895 multi-location breakpoints.
10896 * breakpoint.c: Include "mi/mi-out.h".
10897 (print_one_breakpoint): Change output syntax if using MI version
10898 >= 3.
10899 * mi/mi-main.h (mi_cmd_fix_multi_location_breakpoint_output):
10900 New.
10901 (mi_multi_location_breakpoint_output_fixed): New.
10902 * mi/mi-main.c (fix_multi_location_breakpoint_output): New.
10903 (mi_cmd_fix_multi_location_breakpoint_output): New.
10904 (mi_multi_location_breakpoint_output_fixed): New.
10905 * mi/mi-cmds.c (mi_cmds): Register command
10906 -fix-multi-location-breakpoint-output.
10907 * mi/mi-out.c (mi_out_new): Instantiate version 3 when using
10908 interpreter "mi".
10909
8e5e5494
SM
109102019-03-13 Simon Marchi <simon.marchi@polymtl.ca>
10911
10912 * mi/mi-out.h (mi_out_new): Change parameter to const char *.
10913 * mi/mi-out.c (mi_out_new): Change parameter to const char *,
10914 instantiate mi_ui_out based on interpreter name.
10915 * mi/mi-interp.c (mi_interp::init): Use the new mi_out_new.
10916 * mi/mi-main.c (mi_load_progress): Likewise.
10917
197df35e
JB
109182019-03-12 John Baldwin <jhb@FreeBSD.org>
10919
10920 * NEWS: Combine separate "New targets" sections for 8.3.
10921
8399425f
JB
109222019-03-12 John Baldwin <jhb@FreeBSD.org>
10923
10924 * ppc-fbsd-tdep.c (ppcfbsd_get_thread_local_address): New.
10925 (ppcfbsd_init_abi): Install gdbarch
10926 "fetch_tls_load_module_address" and "get_thread_local_address"
10927 methods.
10928
b0f87ed0
JB
109292019-03-12 John Baldwin <jhb@FreeBSD.org>
10930
10931 * riscv-fbsd-tdep.c (riscv_fbsd_get_thread_local_address): New.
10932 (riscv_fbsd_init_abi): Install gdbarch
10933 "fetch_tls_load_module_address" and "get_thread_local_address"
10934 methods.
10935
ce25aa57
JB
109362019-03-12 John Baldwin <jhb@FreeBSD.org>
10937
10938 * i386-fbsd-tdep.c (i386fbsd_get_thread_local_address): New.
10939 (i386fbsd_init_abi): Install gdbarch
10940 "fetch_tls_load_module_address" and "get_thread_local_address"
10941 methods.
10942
f5424cfa
JB
109432019-03-12 John Baldwin <jhb@FreeBSD.org>
10944
10945 * amd64-fbsd-tdep.c (amd64fbsd_get_thread_local_address): New.
10946 (amd64fbsd_init_abi): Install gdbarch
10947 "fetch_tls_load_module_address" and "get_thread_local_address"
10948 methods.
10949
945f3901
JB
109502019-03-12 John Baldwin <jhb@FreeBSD.org>
10951
10952 * fbsd-tdep.c (fbsd_pspace_data_handle): New variable.
10953 (struct fbsd_pspace_data): New type.
10954 (get_fbsd_pspace_data, fbsd_pspace_data_cleanup)
10955 (fbsd_read_integer_by_name, fbsd_fetch_rtld_offsets)
10956 (fbsd_get_tls_index, fbsd_get_thread_local_address): New function.
10957 (_initialize_fbsd_tdep): Initialize 'fbsd_pspace_data_handle'.
10958 * fbsd-tdep.c (fbsd_get_thread_local_address): New prototype.
10959
ef0bd204
JB
109602019-03-12 John Baldwin <jhb@FreeBSD.org>
10961
10962 * gdbtypes.c (lookup_struct_elt): New function.
10963 (lookup_struct_elt_type): Reimplement via lookup_struct_elt.
10964 * gdbtypes.h (struct struct_elt): New type.
10965 (lookup_struct_elt): New prototype.
10966
36c53a02
JB
109672019-03-12 John Baldwin <jhb@FreeBSD.org>
10968
10969 * gdbtypes.c (lookup_struct_elt_type): Update comment and
10970 remove disabled code block.
10971
6e056c81
JB
109722019-03-12 John Baldwin <jhb@FreeBSD.org>
10973
10974 * gdbarch.sh (get_thread_local_address): New method.
10975 * gdbarch.h, gdbarch.c: Regenerate.
10976 * target.c (target_translate_tls_address): Use
10977 gdbarch_get_thread_local_address if present instead of
10978 target::get_thread_local_address.
10979
cd250a18
JB
109802019-03-12 John Baldwin <jhb@FreeBSD.org>
10981
10982 * target.h (target::get_thread_local_address): Update comment.
10983
df22c1e5
JB
109842019-03-12 John Baldwin <jhb@FreeBSD.org>
10985
10986 * solib-svr4.c (svr4_fetch_objfile_link_map): Look for
10987 objfile->separate_debug_objfile_backlink if not NULL.
10988
dd6876c9
JB
109892019-03-12 John Baldwin <jhb@FreeBSD.org>
10990
10991 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
10992 tdep->fsbase_regnum instead of constants for fs_base and gs_base.
10993 (amd64bsd_store_inferior_registers): Likewise.
10994 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
10995 Enable segment base registers.
10996 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers): Use
10997 PT_GETFSBASE and PT_GETGSBASE.
10998 (i386bsd_store_inferior_registers): Use PT_SETFSBASE and
10999 PT_SETGSBASE.
11000 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Enable
11001 segment base registers.
11002 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
11003
1163a4b7
JB
110042019-03-12 John Baldwin <jhb@FreeBSD.org>
11005
11006 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
11007 Update calls to i386_target_description to add 'segments'
11008 parameter.
11009 * amd64-tdep.c (amd64_init_abi): Set tdep->fsbase_regnum. Don't
11010 add segment base registers.
11011 * arch/i386.c (i386_create_target_description): Add 'segments'
11012 parameter to enable segment base registers.
11013 * arch/i386.h (i386_create_target_description): Likewise.
11014 * features/i386/32bit-segments.xml: New file.
11015 * features/i386/32bit-segments.c: Generate.
11016 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Update
11017 call to i386_target_description to add 'segments' parameter.
11018 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
11019 * i386-go32-tdep.c (i386_go32_init_abi): Likewise.
11020 * i386-linux-tdep.c (i386_linux_read_description): Likewise.
11021 * i386-tdep.c (i386_validate_tdesc_p): Add segment base registers
11022 if feature is present.
11023 (i386_gdbarch_init): Pass I386_NUM_REGS to set_gdbarch_num_regs.
11024 Add 'segments' parameter to call to i386_target_description.
11025 (i386_target_description): Add 'segments' parameter to enable
11026 segment base registers.
11027 (_initialize_i386_tdep) [GDB_SELF_TEST]: Add 'segments' parameter
11028 to call to i386_target_description.
11029 * i386-tdep.h (struct gdbarch_tdep): Add 'fsbase_regnum'.
11030 (enum i386_regnum): Add I386_FSBASE_REGNUM and I386_GSBASE_REGNUM.
11031 Define I386_NUM_REGS.
11032 (i386_target_description): Add 'segments' parameter to enable
11033 segment base registers.
11034
3a350822
EZ
110352019-03-12 Eli Zaretskii <eliz@gnu.org>
11036
11037 PR/24325
11038 * source-cache.c: #undef open and close, to avoid unresolved
11039 externals during linking.
11040
ffdd69cf
TT
110412019-03-12 Tom Tromey <tromey@adacore.com>
11042
11043 * remote.c (magic_null_ptid, not_sent_ptid, any_thread_ptid): Now
11044 const. Add initializers.
11045 (_initialize_remote): Don't initialize ptid globals.
11046
ec148c57
PA
110472019-03-12 Pedro Alves <palves@redhat.com>
11048
11049 * yy-remap.h [TEST_CPNAMES] (YYFPRINTF): Don't define.
11050
32764270
PA
110512019-03-12 Pedro Alves <palves@redhat.com>
11052
11053 * cp-name-parser.y (main): Remove unused 'len' variable.
11054
17547186
TT
110552019-03-12 Tom Tromey <tromey@adacore.com>
11056
11057 * common/ptid.c (null_ptid, minus_one_ptid): Now const.
11058 * common/ptid.h (null_ptid, minus_one_ptid): Now const.
11059
d3a70e03
TT
110602019-03-12 Tom Tromey <tromey@adacore.com>
11061
11062 * linux-nat.c (iterate_over_lwps): Update.
11063 (stop_callback): Remove parameter.
11064 (stop_wait_callback, detach_callback, resume_set_callback)
11065 (select_singlestep_lwp_callback, set_ignore_sigint)
11066 (status_callback, resumed_callback, resume_clear_callback)
11067 (kill_callback, kill_wait_callback, linux_nat_stop_lwp): Remove
11068 data parameter.
11069 (linux_nat_target::detach, linux_nat_target::resume)
11070 (linux_stop_and_wait_all_lwps, select_event_lwp)
11071 (linux_nat_filter_event, linux_nat_wait_1)
11072 (linux_nat_target::kill, linux_nat_target::stop)
11073 (linux_nat_target::stop): Update.
11074 (linux_nat_resume_callback): Change type.
11075 (resume_stopped_resumed_lwps, count_events_callback)
11076 (select_event_lwp_callback): Likewise.
11077 (linux_stop_lwp, linux_nat_stop_lwp): Update.
11078 * arm-linux-nat.c (struct update_registers_data): Remove.
11079 (update_registers_callback): Change type.
11080 (arm_linux_insert_hw_breakpoint1): Update.
11081 * nat/x86-linux-dregs.c (update_debug_registers_callback): Remove
11082 parameter.
11083 (x86_linux_dr_set_addr): Update.
11084 (x86_linux_dr_set_control): Update.
11085 * nat/linux-nat.h (iterate_over_lwps_ftype): Remove parameter.
11086 (iterate_over_lwps): Use gdb::function_view.
11087 * nat/aarch64-linux-hw-point.c (struct
11088 aarch64_dr_update_callback_param): Remove.
11089 (debug_reg_change_callback): Change type.
11090 (aarch64_notify_debug_reg_change): Update.
11091 * s390-linux-nat.c (s390_refresh_per_info): Update.
11092
82cb27ff
TT
110932019-03-11 Tom Tromey <tromey@adacore.com>
11094
11095 * dwarf2read.c (dwarf2_find_containing_comp_unit): Remove
11096 redundant assignment to "this_cu".
11097
568c0683
SM
110982019-03-08 Simon Marchi <simon.marchi@efficios.com>
11099
11100 * gdbtypes.c (rank_one_type): Remove unnecessary cases from switch.
11101
f09ce22d
SM
111022019-03-08 Simon Marchi <simon.marchi@efficios.com>
11103
11104 * gdbtypes.c (rank_one_type_parm_set): New function extracted
11105 from...
11106 (rank_one_type): ... this.
11107
595f96a9
SM
111082019-03-08 Simon Marchi <simon.marchi@efficios.com>
11109
11110 * gdbtypes.c (rank_one_type_parm_struct): New function extracted
11111 from...
11112 (rank_one_type): ... this.
11113
2598a94b
SM
111142019-03-08 Simon Marchi <simon.marchi@efficios.com>
11115
11116 * gdbtypes.c (rank_one_type_parm_complex): New function extracted
11117 from...
11118 (rank_one_type): ... this.
11119
7f17b20d
SM
111202019-03-08 Simon Marchi <simon.marchi@efficios.com>
11121
11122 * gdbtypes.c (rank_one_type_parm_float): New function extracted
11123 from...
11124 (rank_one_type): ... this.
11125
2c509035
SM
111262019-03-08 Simon Marchi <simon.marchi@efficios.com>
11127
11128 * gdbtypes.c (rank_one_type_parm_bool): New function extracted
11129 from...
11130 (rank_one_type): ... this.
11131
0dd322dc
SM
111322019-03-08 Simon Marchi <simon.marchi@efficios.com>
11133
11134 * gdbtypes.c (rank_one_type_parm_range): New function extracted
11135 from...
11136 (rank_one_type): ... this.
11137
41ea4728
SM
111382019-03-08 Simon Marchi <simon.marchi@efficios.com>
11139
11140 * gdbtypes.c (rank_one_type_parm_char): New function extracted
11141 from...
11142 (rank_one_type): ... this.
11143
793cd1d2
SM
111442019-03-08 Simon Marchi <simon.marchi@efficios.com>
11145
11146 * gdbtypes.c (rank_one_type_parm_enum): New function extracted
11147 from...
11148 (rank_one_type): ... this.
11149
34910087
SM
111502019-03-08 Simon Marchi <simon.marchi@efficios.com>
11151
11152 * gdbtypes.c (rank_one_type_parm_int): New function extracted
11153 from...
11154 (rank_one_type): ... this.
11155
f1f832d6
SM
111562019-03-08 Simon Marchi <simon.marchi@efficios.com>
11157
11158 * gdbtypes.c (rank_one_type_parm_func): New function extracted
11159 from...
11160 (rank_one_type): ... this.
11161
b9f4512f
SM
111622019-03-08 Simon Marchi <simon.marchi@efficios.com>
11163
11164 * gdbtypes.c (rank_one_type_parm_array): New function extracted
11165 from...
11166 (rank_one_type): ... this.
11167
9293fc63
SM
111682019-03-08 Simon Marchi <simon.marchi@efficios.com>
11169
11170 * gdbtypes.c (rank_one_type_parm_ptr): New function extracted
11171 from...
11172 (rank_one_type): ... this.
11173
e3abbe7e
PW
111742019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11175
11176 * inferior.c (initialize_inferiors): Ensure 'help set/show print
11177 inferior-events' shows the example events.
11178
e4adb939
EZ
111792019-03-08 Eli Zaretskii <eliz@gnu.org>
11180
11181 Support styling on native MS-Windows console
11182
11183 PR/24315
11184 * utils.c (can_emit_style_escape) [_WIN32]: Don't disable styling
11185 on MS-Windows if $TERM is not defined.
11186
11187 * cli/cli-style.c: Set cli_styling to 1 in the MinGW build.
11188
11189 * posix-hdep.c (gdb_console_fputs):
11190 * mingw-hdep.c (rgb_to_16colors, gdb_console_fputs): New
11191 functions.
11192 * ui-file.h (gdb_console_fputs): Add prototype.
11193
11194 * ui-file.c (stdio_file::puts): Call gdb_console_fputs, and fall
11195 back to fputs only if the former returns zero.
11196
25629dfd
TT
111972019-03-07 Tom Tromey <tom@tromey.com>
11198
11199 * symmisc.c (print_symbol_bcache_statistics): Update.
11200 (print_objfile_statistics): Update.
11201 * symfile.c (allocate_symtab): Update.
11202 * stabsread.c: Don't include bcache.h.
11203 * psymtab.h (struct psymbol_bcache): Don't declare.
11204 (class psymtab_storage) <psymbol_cache>: Now a bcache.
11205 (psymbol_bcache_init, psymbol_bcache_free)
11206 (psymbol_bcache_get_bcache): Don't declare.
11207 * psymtab.c (struct psymbol_bcache): Remove.
11208 (psymtab_storage::psymtab_storage): Update.
11209 (psymtab_storage::~psymtab_storage): Update.
11210 (psymbol_bcache_init, psymbol_bcache_free)
11211 (psymbol_bcache_get_bcache, psymbol_bcache_full): Remove.
11212 (add_psymbol_to_bcache): Update.
11213 (allocate_psymtab): Update.
11214 * objfiles.h (struct objfile_per_bfd_storage) <filename_cache,
11215 macro_cache>: No longer pointers.
11216 * objfiles.c (get_objfile_bfd_data): Don't call bcache_xmalloc.
11217 (free_objfile_per_bfd_storage): Don't call bcache_xfree.
11218 * macrotab.c (macro_bcache): Update.
11219 * macroexp.c: Don't include bcache.h.
11220 * gdbtypes.c (check_types_worklist): Update.
11221 (types_deeply_equal): Remove TRY/CATCH. Update.
11222 * elfread.c (elf_symtab_read): Update.
11223 * dwarf2read.c: Don't include bcache.h.
11224 * buildsym.c (buildsym_compunit::get_macro_table): Update.
11225 * bcache.h (bcache, bcache_full, bcache_xffree, bcache_xmalloc)
11226 (print_bcache_statistics, bcache_memory_used): Don't declare.
11227 (struct bcache): Move from bcache.c. Add constructor, destructor,
11228 methods. Rename all data members.
11229 * bcache.c (struct bcache): Move to bcache.h.
11230 (bcache::expand_hash_table): Rename from expand_hash_table.
11231 (bcache): Remove.
11232 (bcache::insert): Rename from bcache_full.
11233 (bcache::compare): Rename from bcache_compare.
11234 (bcache_xmalloc): Remove.
11235 (bcache::~bcache): Rename from bcache_xfree.
11236 (bcache::print_statistics): Rename from print_bcache_statistics.
11237 (bcache::memory_used): Rename from bcache_memory_used.
11238
fe726667
PA
112392019-03-07 Pedro Alves <palves@redhat.com>
11240
11241 * infrun.c (normal_stop): Also check for
11242 TARGET_WAITKIND_NO_RESUMED before referring to inferior_thread().
11243
7584bb30
AB
112442019-03-07 Andrew Burgess <andrew.burgess@embecosm.com>
11245
11246 * f-lang.c (value_from_host_double): Moved to...
11247 * value.c (value_from_host_double): ...here.
11248 * value.h (value_from_host_double): Declare.
11249 * guile/scm-math.c (vlscm_convert_typed_number): Use
11250 value_from_host_double.
11251 (vlscm_convert_number): Likewise.
11252 * guile/scm-value.c (gdbscm_value_to_real): Likewise.
11253 * python/py-value.c (convert_value_from_python): Likewise.
11254
a7b1986e
TT
112552019-03-06 Tom Tromey <tom@tromey.com>
11256
11257 * gcore.c (write_gcore_file): Use SCOPE_EXIT.
11258
0ccf4211
TT
112592019-03-06 Tom Tromey <tom@tromey.com>
11260
11261 * utils.h (free_current_contents): Don't declare.
11262 * utils.c (free_current_contents): Remove.
11263
fe7b42e5
TT
112642019-03-06 Tom Tromey <tom@tromey.com>
11265
11266 * top.c (quit_force): Update.
11267 * main.c (captured_command_loop): Update.
11268 * common/new-op.c (operator new): Update.
11269 * common/common-exceptions.c (struct catcher)
11270 <save_cleanup_chain>: Remove member.
11271 (exceptions_state_mc_init): Update.
11272 (exception_try_scope_entry): Return nullptr.
11273 (exception_try_scope_exit, exception_rethrow)
11274 (throw_exception_sjlj, throw_exception_cxx): Update.
11275 * common/cleanups.h (make_cleanup, make_cleanup_dtor)
11276 (all_cleanups, do_cleanups, discard_cleanups)
11277 (discard_final_cleanups, save_cleanups, save_final_cleanups)
11278 (restore_cleanups, restore_final_cleanups): Don't declare.
11279 (do_final_cleanups): Remove parameter.
11280 * common/cleanups.c (cleanup_chain, make_cleanup)
11281 (make_cleanup_dtor, all_cleanups, do_cleanups)
11282 (discard_my_cleanups, discard_cleanups)
11283 (discard_final_cleanups, save_my_cleanups, save_cleanups)
11284 (save_final_cleanups, restore_my_cleanups, restore_cleanups)
11285 (null_cleanup): Remove.
11286 (do_final_cleanups): Remove parameter.
11287
c6321f19
TT
112882019-03-06 Tom Tromey <tom@tromey.com>
11289
11290 * remote.c (remote_target::remote_parse_stop_reply): Use
11291 unique_xmalloc_ptr.
11292
61b30099
TT
112932019-03-06 Tom Tromey <tom@tromey.com>
11294
11295 * stabsread.c (struct stabs_field_info): Rename from field_info.
11296 <list, fnlist>: Add initializers.
11297 <obstack>: New member.
11298 (read_member_functions, read_struct_fields, read_baseclasses):
11299 Allocate on obstack. Don't use cleanups.
11300 (read_one_struct_field, read_member_functions, read_struct_fields)
11301 (read_baseclasses, read_tilde_fields, attach_fn_fields_to_type)
11302 (attach_fields_to_type, read_cpp_abbrev, read_member_functions)
11303 (read_struct_type): Update.
11304
6cceac94
TT
113052019-03-06 Tom Tromey <tom@tromey.com>
11306
11307 * nat/linux-namespaces.c (linux_mntns_access_fs): Use SCOPE_EXIT.
11308 * common/filestuff.h (make_cleanup_close): Don't declare.
11309 * common/filestuff.c (do_close_cleanup, make_cleanup_close):
11310 Remove.
11311
72412762
TT
113122019-03-06 Tom Tromey <tom@tromey.com>
11313
11314 * solib-aix.c: Use make_scope_exit.
11315
2b6ff1c0
TT
113162019-03-06 Tom Tromey <tom@tromey.com>
11317
11318 * solib-svr4.c (svr4_parse_libraries, svr4_current_sos_direct):
11319 Use make_scope_exit.
11320
d01c5877
TT
113212019-03-06 Tom Tromey <tom@tromey.com>
11322
11323 * solib-svr4.c (disable_probes_interface): Remove parameter.
11324 (svr4_handle_solib_event): Use make_scope_exit.
11325
32603266
TT
113262019-03-06 Tom Tromey <tom@tromey.com>
11327
11328 * remote.c (struct stop_reply_deleter): Remove.
11329 (stop_reply_up): Update.
11330 (struct stop_reply): Derive from notif_event. Don't typedef.
11331 <regcache>: Now a std::vector.
11332 (stop_reply_xfree): Remove.
11333 (stop_reply::~stop_reply): Rename from stop_reply_dtr.
11334 (remote_notif_stop_alloc_reply): Return a unique_ptr. Use new.
11335 (remote_target::discard_pending_stop_replies): Use delete.
11336 (remote_target::remote_parse_stop_reply): Update.
11337 (remote_target::process_stop_reply): Update.
11338 * remote-notif.h (struct notif_event): Add virtual destructor.
11339 Remove "dtr" member.
11340 (struct notif_client) <alloc_event>: Return a unique_ptr.
11341 (notif_event_xfree): Don't declare.
11342 (notif_event_up): New typedef.
11343 * remote-notif.c (remote_notif_ack, remote_notif_parse): Update.
11344 (notif_event_xfree, do_notif_event_xfree): Remove.
11345 (remote_notif_state_xfree): Update.
11346
9799571e
TT
113472019-03-06 Tom Tromey <tom@tromey.com>
11348
11349 * infrun.c (displaced_step_clear_cleanup): Now a
11350 forward_scope_exit type.
11351 (displaced_step_prepare_throw): Update.
11352 (displaced_step_fixup): Update.
11353
09e3c4ca
TT
113542019-03-06 Tom Tromey <tom@tromey.com>
11355
11356 * inferior.h (class inferior): Update comment.
11357 * gdbthread.h (class thread_info): Update comment.
11358
e2a03548
TT
113592019-03-06 Joel Brobecker <brobecker@adacore.com>
11360 Tom Tromey <tom@tromey.com>
11361
11362 * stabsread.h (struct stab_section_list): Remove.
11363 (coffstab_build_psymtabs): Update.
11364 * dbxread.c (symbuf_sections): Now a std::vector.
11365 (sect_idx): New global.
11366 (fill_symbuf): Update.
11367 (coffstab_build_psymtabs): Change type of stabsects parameter.
11368 Update.
11369 * coffread.c (struct coff_symfile_info) <stabsects>: Now a
11370 std::vector.
11371 (linetab, linetab_offset, linetab_size, stringtab): Move earlier.
11372 (coff_locate_sections): Update.
11373 (coff_symfile_read): Remove cleanups. Update.
11374 (init_stringtab): Add storage parameter.
11375 (free_stringtab, free_stringtab_cleanup): Remove.
11376 (init_lineno): Add storage parameter.
11377 (free_linetab, free_linetab_cleanup): Remove.
11378
b7e60d85
PA
113792019-03-06 Pedro Alves <palves@redhat.com>
11380
11381 * linux-fork.c (fork_info::clobber_regs): Delete.
11382 (fork_load_infrun_state): Remove reference to 'clobber_regs'.
11383 (fork_save_infrun_state): Remove 'clobber_regs' parameter. Update
11384 comment. Adjust.
11385 (scoped_switch_fork_info::scoped_switch_fork_info)
11386 (checkpoint_command, linux_fork_context): Adjust
11387 fork_save_infrun_state calls.
11388
e52c971f
PA
113892019-03-06 Pedro Alves <palves@redhat.com>
11390
11391 * linux-fork.c (inf_has_multiple_thread_cb): Delete.
11392 (inf_has_multiple_threads): Return 'bool' and rewrite using
11393 inferior_info::threads().
11394
06974e6c
PA
113952019-03-06 Pedro Alves <palves@redhat.com>
11396
11397 * linux-fork.c: Include <list>.
11398 (fork_list): Now a std::list instance.
11399 (fork_info): Add ctor, dtor, and in-class initialize all fields.
11400 (forks_exist_p, find_last_fork): Adjust.
11401 (new_fork): Delete.
11402 (one_fork_p): New.
11403 (add_fork): Adjust.
11404 (free_fork): Delete, folded into fork_info::~fork_info().
11405 (delete_fork, find_fork_ptid, find_fork_id, find_fork_pid):
11406 Adjust.
11407 (init_fork_list): Delete.
11408 (linux_fork_killall, linux_fork_mourn_inferior)
11409 (linux_fork_detach, info_checkpoints_command): Adjust.
11410 (_initialize_linux_fork): No longer call init_fork_list.
11411
72f31aea
PA
114122019-03-06 Pedro Alves <palves@redhat.com>
11413
11414 * linux-fork.c (new_fork): New, split out of ...
11415 (add_fork): ... this. Return void. Move "first fork" special
11416 case from here, to ...
11417 (checkpoint_command): ... here.
11418 * linux-linux.h (add_fork): Return void.
11419
efbecbc1
AB
114202019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11421
11422 * f-exp.y (direct_abs_decl): Handle TYPE*SIZE type names.
11423
0841c79a
AB
114242019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11425 Chris January <chris.january@arm.com>
11426 David Lecomber <david.lecomber@arm.com>
11427
11428 * f-exp.y: New token, UNOP_INTRINSIC.
11429 (exp): New pattern using UNOP_INTRINSIC token.
11430 (f77_keywords): Add 'abs' keyword.
11431 * f-lang.c: Add 'target-float.h' and 'math.h' includes.
11432 (value_from_host_double): New function.
11433 (evaluate_subexp_f): Support UNOP_ABS.
11434
4a270568
AB
114352019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11436
11437 * f-lang.c (build_fortran_types): Use TYPE_CODE_CHAR for character
11438 types.
11439
067630bd
AB
114402019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11441
11442 * f-exp.y (convert_to_kind_type): Handle integer (kind=8).
11443 * f-lang.c (build_fortran_types): Setup builtin_integer_s8.
11444 * f-lang.h (struct builtin_f_type): Add builtin_integer_s8 field.
11445
3be47f7a
AB
114462019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11447
11448 * f-exp.y (convert_to_kind_type): Handle more type kinds.
11449
4d00f5d8
AB
114502019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11451 Chris January <chris.january@arm.com>
11452
11453 * expprint.c (dump_subexp_body_standard): Support UNOP_KIND.
11454 * f-exp.y: Define 'KIND' token.
11455 (exp): New pattern for KIND expressions.
11456 (ptype): Handle types with a kind extension.
11457 (direct_abs_decl): Extend to spot kind extensions.
11458 (f77_keywords): Add 'kind' to the list.
11459 (push_kind_type): New function.
11460 (convert_to_kind_type): New function.
11461 * f-lang.c (evaluate_subexp_f): Support UNOP_KIND.
11462 * parse.c (operator_length_standard): Likewise.
11463 * parser-defs.h (enum type_pieces): Add tp_kind.
11464 * std-operator.def: Add UNOP_KIND.
11465
e454224f
AB
114662019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11467
11468 * f-exp.y (f_parse): Set yydebug.
11469
9dad4a58
AB
114702019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11471
11472 * f-lang.c (evaluate_subexp_f): New function.
11473 (exp_descriptor_f): New global.
11474 (f_language_defn): Use exp_descriptor_f instead of
11475 exp_descriptor_standard.
11476
c8f91604
AB
114772019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11478
11479 * f-exp.y (struct token): Add comments.
11480 (dot_ops): Remove uppercase versions and the end marker.
11481 (f77_keywords): Likewise.
11482 (yylex): Use ARRAY_SIZE to iterate over dot_ops, assert all
11483 entries in the dot_ops array are case insensitive, and use
11484 strncasecmp to compare strings. Also some whitespace cleanup in
11485 this area. Similar for the f77_keywords array, except entries in
11486 this list might be case sensitive.
11487
dd9f2c76
AB
114882019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11489
11490 * f-exp.y (struct f77_boolean_val): Add comments.
11491 (boolean_values): Remove uppercase versions, and end marker.
11492 (yylex): Use ARRAY_SIZE for iterating over boolean_values array,
11493 and use strncasecmp to achieve case insensitivity. Additionally,
11494 perform whitespace cleanup around this code.
11495
67a3048c
TT
114962019-03-06 Tom Tromey <tromey@adacore.com>
11497
11498 * remote-sim.c (gdbsim_target_open): Use result of
11499 gdb_argv::release.
11500
aa3cfbda
RB
115012019-03-06 Richard Bunt <richard.bunt@arm.com>
11502 Dirk Schubert <dirk.schubert@arm.com>
11503 Chris January <chris.january@arm.com>
11504
11505 * eval.c (evaluate_subexp_standard): Call Fortran argument
11506 wrapping logic.
11507 * f-lang.c (struct value): A value which can be passed into a
11508 Fortran function call.
11509 (fortran_argument_convert): Wrap Fortran arguments in a pointer
11510 where appropriate.
11511 (struct type): Value ready for a Fortran function call.
11512 (fortran_preserve_arg_pointer): Undo check_typedef, the pointer
11513 is needed.
11514 * f-lang.h (fortran_argument_convert): Declaration.
11515 (fortran_preserve_arg_pointer): Declaration.
11516 * infcall.c (value_arg_coerce): Call Fortran argument logic.
11517
ea38e5df
TT
115182019-03-05 Tom Tromey <tromey@adacore.com>
11519
11520 * python/py-prettyprint.c (print_string_repr): Remove #if.
11521 * python/py-utils.c (unicode_to_encoded_string): Remove #if.
11522
06b5b831
TT
115232019-03-05 Tom Tromey <tromey@adacore.com>
11524
11525 * target.c (the_dummy_target): Move later. Change type to
11526 "dummy_target".
11527 (initialize_targets): Don't initialize the_dummy_target.
11528
edbd9e45
TT
115292019-03-05 Tom Tromey <tromey@adacore.com>
11530
11531 * gdb_bfd.c (gdb_bfd_fdopenr): Remove.
11532 * gdb_bfd.h (gdb_bfd_fdopenr): Don't declare.
11533
c119e040
TT
115342019-03-05 Tom Tromey <tromey@adacore.com>
11535
11536 * windows-nat.c (windows_nat_target::attach)
11537 (windows_nat_target::detach): Don't call gdb_flush.
11538 * valprint.c (generic_val_print, val_print, val_print_string):
11539 Don't call gdb_flush.
11540 * utils.c (defaulted_query): Don't call gdb_flush.
11541 * typeprint.c (print_type_scalar): Don't call gdb_flush.
11542 * target.c (target_announce_detach): Don't call gdb_flush.
11543 * sparc64-tdep.c (adi_print_versions): Don't call gdb_flush.
11544 * remote.c (extended_remote_target::attach): Don't call
11545 gdb_flush.
11546 * procfs.c (procfs_target::detach): Don't call gdb_flush.
11547 * printcmd.c (do_examine): Don't call gdb_flush.
11548 (info_display_command): Don't call gdb_flush.
11549 * p-valprint.c (pascal_val_print): Don't call gdb_flush.
11550 * nto-procfs.c (nto_procfs_target::attach): Don't call gdb_flush.
11551 * memattr.c (info_mem_command): Don't call gdb_flush.
11552 * mdebugread.c (mdebug_build_psymtabs): Don't call gdb_flush.
11553 * m2-valprint.c (m2_val_print): Don't call gdb_flush.
11554 * infrun.c (follow_exec, handle_command): Don't call gdb_flush.
11555 * inf-ptrace.c (inf_ptrace_target::attach): Don't call gdb_flush.
11556 * hppa-tdep.c (unwind_command): Don't call gdb_flush.
11557 * gnu-nat.c (gnu_nat_target::attach): Don't call gdb_flush.
11558 (gnu_nat_target::detach): Don't call gdb_flush.
11559 * f-valprint.c (f_val_print): Don't call gdb_flush.
11560 * darwin-nat.c (darwin_nat_target::attach): Don't call gdb_flush.
11561 * cli/cli-script.c (read_command_lines): Don't call gdb_flush.
11562 * cli/cli-cmds.c (shell_escape, print_disassembly): Don't call
11563 gdb_flush.
11564 * c-valprint.c (c_val_print): Don't call gdb_flush.
11565 * ada-valprint.c (ada_print_scalar): Don't call gdb_flush.
11566
895dafa6
TT
115672019-03-05 Tom Tromey <tromey@adacore.com>
11568
11569 * varobj.c (update_dynamic_varobj_children): Update.
11570 (install_default_visualizer): Use reset, not release.
11571 * value.c (set_internalvar): Update.
11572 * dwarf2loc.c (value_of_dwarf_reg_entry): Update.
11573 * common/gdb_ref_ptr.h (class ref_ptr) <release>: Add
11574 ATTRIBUTE_UNUSED_RESULT.
11575
88a774b9
TT
115762019-03-05 Tom Tromey <tromey@adacore.com>
11577
11578 * remote.c (class scoped_remote_fd) <release>: Add
11579 ATTRIBUTE_UNUSED_RESULT.
11580
4e4a8b93
TT
115812019-03-05 Tom Tromey <tromey@adacore.com>
11582
11583 * macroexp.c (struct macro_buffer) <release>: Add
11584 ATTRIBUTE_UNUSED_RESULT.
11585
083eef1f
TT
115862019-03-05 Tom Tromey <tromey@adacore.com>
11587
11588 * nat/linux-btrace.c (linux_enable_bts, linux_enable_pt): Update.
11589 * common/scoped_mmap.h (class scoped_mmap) <release>: Add
11590 ATTRIBUTE_UNUSED_RESULT.
11591
3cabd438
TT
115922019-03-05 Tom Tromey <tromey@adacore.com>
11593
11594 * common/scoped_fd.h (class scoped_fd) <release>: Add
11595 ATTRIBUTE_UNUSED_RESULT.
11596
41e3300a
TT
115972019-03-05 Tom Tromey <tromey@adacore.com>
11598
11599 * parser-defs.h (struct parser_state) <release>: Add
11600 ATTRIBUTE_UNUSED_RESULT.
11601
18cb7c9f
TT
116022019-03-05 Tom Tromey <tromey@adacore.com>
11603
11604 * utils.h (class gdb_argv) <release>: Add
11605 ATTRIBUTE_UNUSED_RESULT.
11606 * common/common-defs.h (ATTRIBUTE_UNUSED_RESULT): Define.
11607
41fa577f
EZ
116082019-03-02 Eli Zaretskii <eliz@gnu.org>
11609
a6a4b2c6
EZ
11610 * xml-syscall.c (xml_list_syscalls_by_group): Drop 'struct' from
11611 for-loop range, to avoid compiler warnings.
11612
11613 * tui/tui.c (tui_enable) [__MINGW32__]: Don't declare 'cap', to
11614 avoid compiler warnings about unused variables.
11615
742a7df5
EZ
11616 * NEWS: Mention end of support for native debugging on MS-Windows
11617 before XP.
11618
41fa577f
EZ
11619 PR gdb/24292
11620 * common/netstuff.c:
11621 * gdbserver/gdbreplay.c
11622 * gdbserver/remote-utils.c:
11623 * ser-tcp.c:
11624 * unittests/parse-connection-spec-selftests.c [USE_WIN32API]:
11625 Include ws2tcpip.h instead of wsiapi.h and winsock2.h. Redefine
11626 _WIN32_WINNT to 0x0501 if defined to a smaller value, as
11627 'getaddrinfo' and 'freeaddrinfo' were not available before
11628 Windows XP, and mingw.org's MinGW headers by default define
11629 _WIN32_WINNT to 0x500.
11630
827f438f
GB
116312019-03-01 Gary Benson <gbenson@redhat.com>
11632
11633 * coffread.c (coff_start_symtab): Remove unnecessary xstrdup.
11634
92137da0
RO
116352019-02-28 Brian Vandenberg <phantall@gmail.com>
11636 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11637
11638 PR gdb/8527
11639 * procfs.c (proc_wait_for_stop): Wrap write of PCWSTOP in
11640 set_sigint_trap, clear_sigint_trap.
11641
799efbe8
PW
116422019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11643
11644 * target.c (target_detach): Clear the regcache and the
11645 frame cache.
11646
8ed25214
PA
116472019-02-27 Pedro Alves <palves@redhat.com>
11648
11649 * utils.c (set_screen_size): When we cap the height/width sizes,
11650 tweak the corresponding command variable to show "unlimited":
11651
23031e31
SJ
116522019-02-27 Saagar Jha <saagar@saagarjha.com>
11653 Pedro Alves <palves@redhat.com>
11654
11655 * utils.c (set_screen_size): Reduce "infinite" rows and columns
11656 before calling rl_set_screen_size.
11657
6c28e44a
TT
116582019-02-27 Tom Tromey <tromey@adacore.com>
11659
11660 * configure.ac (HAVE_LIBPYTHON2_4, HAVE_LIBPYTHON2_5): Never
11661 define.
11662 * python/py-value.c: Remove Python 2.4 workaround.
11663 * python/py-utils.c (gdb_pymodule_addobject): Remove Python 2.4
11664 workaround.
11665 * python/py-type.c (convert_field, gdbpy_initialize_types): Remove
11666 Python 2.4 workaround.
11667 * python/python-internal.h: Remove Python 2.4 comment.
11668 (Py_ssize_t): Don't define.
11669 (PyVarObject_HEAD_INIT, Py_TYPE): Don't define.
11670 (gdb_Py_DECREF): Remove Python 2.4 workaround.
11671 (gdb_PyObject_GetAttrString, PyObject_GetAttrString): Remove.
11672 (gdb_PyObject_HasAttrString, PyObject_HasAttrString): Remove.
11673 * python/python.c (do_start_initialization): Remove Python 2.4
11674 workaround.
11675 * python/py-prettyprint.c (class dummy_python_frame): Remove.
11676 (print_children): Remove Python 2.4 workaround.
11677 * python/py-inferior.c (buffer_procs): Remove Python 2.4
11678 workaround.
11679 (CHARBUFFERPROC_NAME): Remove.
11680 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Remove
11681 Python 2.4 workaround.
11682
2c3fc25d 116832019-02-27 Kevin Buettner <kevinb@redhat.com>
799efbe8 11684
2c3fc25d
KB
11685 * NEWS: Note minimum Python version.
11686
6ca62222
KB
116872019-02-27 Kevin Buettner <kevinb@redhat.com>
11688
11689 * python/py-inferior.c (infpy_write_memory): Remove non-IS_PY3K
11690 code from these functions. Remove corresponding ifdefs. Use
11691 Py_buffer_up instead of explicit calls to PyBuffer_Release.
11692 Remove gotos and target of gotos.
11693 (infpy_search_memory): Likewise.
11694
f4bc7d2c
AB
116952019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11696
11697 * gdb/hppa-tdep.c (hppa_dummy_id): Delete.
11698 (hppa_gdbarch_init): Don't register deleted functions with
11699 gdbarch.
11700
9734a586
AB
117012019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11702
11703 * gdb/h8300-tdep.c (h8300_unwind_pc): Delete.
11704 (h8300_unwind_sp): Delete.
11705 (h8300_dummy_id): Delete.
11706 (h8300_gdbarch_init): Don't register deleted functions with
11707 gdbarch.
11708
68b867f3
AB
117092019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11710
11711 * gdb/ft32-tdep.c (ft32_dummy_id): Delete.
11712 (ft32_unwind_pc): Delete.
11713 (ft32_unwind_sp): Delete.
11714 (ft32_gdbarch_init): Don't register deleted functions with
11715 gdbarch.
11716
2fbe7ad0
AB
117172019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11718
11719 * gdb/frv-tdep.c (frv_dummy_id): Delete.
11720 (frv_unwind_pc): Delete.
11721 (frv_unwind_sp): Delete.
11722 (frv_gdbarch_init): Don't register deleted functions with
11723 gdbarch.
11724
76055cbe
AB
117252019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11726
11727 * gdb/riscv-tdep.c (riscv_dummy_id): Delete.
11728 (riscv_unwind_pc): Delete.
11729 (riscv_unwind_sp): Delete.
11730 (riscv_gdbarch_init): Don't register deleted functions with
11731 gdbarch.
11732
4133e5a1
AB
117332019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11734
11735 * gdb/csky-tdep.c (csky_dummy_id): Delete.
11736 (csky_unwind_pc): Delete.
11737 (csky_unwind_sp): Delete.
11738 (csky_gdbarch_init): Don't register deleted functions with
11739 gdbarch.
11740
8010f576
AB
117412019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11742
11743 * gdb/cris-tdep.c (cris_dummy_id): Delete.
11744 (cris_unwind_pc): Delete.
11745 (cris_unwind_sp): Delete.
11746 (cris_gdbarch_init): Don't register deleted functions with
11747 gdbarch.
11748
b56bf084
AB
117492019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11750
11751 * gdb/bfin-tdep.c (bfin_dummy_id): Delete.
11752 (bfin_unwind_pc): Delete.
11753 (bfin_gdbarch_init): Don't register deleted functions with gdbarch.
11754
a19a650f
AB
117552019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11756
11757 * gdb/arm-tdep.c (arm_dummy_id): Delete.
11758 (arm_unwind_pc): Delete.
11759 (arm_unwind_sp): Delete.
11760 (arm_gdbarch_init): Don't register deleted functions with gdbarch.
11761
f8278c3c
AB
117622019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11763
11764 * gdb/arc-tdep.c (arc_dummy_id): Delete.
11765 (arc_unwind_pc): Delete.
11766 (arc_unwind_sp): Delete.
11767 (arc_gdbarch_init): Don't register deleted functions with gdbarch.
11768
480e46cf
AB
117692019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11770
11771 * gdb/alpha-tdep.c (alpha_dummy_id): Delete.
11772 (alpha_unwind_pc): Delete.
11773 (alpha_gdbarch_init): Don't register deleted functions with
11774 gdbarch.
11775
7a995095
AB
117762019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11777
11778 * gdb/aarch64-tdep.c (aarch64_dummy_id): Delete.
11779 (aarch64_unwind_pc): Delete.
11780 (aarch64_unwind_sp): Delete.
11781 (aarch64_gdbarch_init): Don't register deleted functions with
11782 gdbarch.
11783
bf9a735e
AB
117842019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11785
11786 * gdbtypes.c (type_align): Don't consider static members when
11787 computing structure alignment.
11788
5561fc30
AB
117892019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11790
11791 * arc-tdep.c (arc_type_align): Provide alignment for basic types,
11792 return 0 for other types.
11793 * arch-utils.c (default_type_align): Always return 0.
11794 * gdbarch.h: Regenerate.
11795 * gdbarch.sh (type_align): Extend comment.
11796 * gdbtypes.c (type_align): Add additional comments, always call
11797 gdbarch_type_align before applying the default rules.
11798 * i386-tdep.c (i386_type_align): Return 0 as the default rule,
11799 generic code will then apply a suitable default.
11800 * nios2-tdep.c (nios2_type_align): Provide alignment for basic
11801 types, return 0 for other types.
11802
9335e75a
JB
118032019-02-27 Joel Brobecker <brobecker@adacore.com>
11804
11805 * NEWS: Create a new section for the next release branch.
11806 Rename the section of the current branch, now that it has
11807 been cut.
11808
3d34d8de
JB
118092019-02-27 Joel Brobecker <brobecker@adacore.com>
11810
11811 GDB 8.3 branch created (143420fb0d5ae54323ba9953f0818c194635228d):
11812 * version.in: Bump version to 8.3.50.DATE-git.
11813
143420fb
SM
118142019-02-26 Simon Marchi <simon.marchi@efficios.com>
11815
11816 * aix-thread.c (ptid_cmp): Remove unused variable.
11817 (get_signaled_thread): Likewise.
11818 (store_regs_user_thread): Likewise.
11819 (store_regs_kernel_thread): Likewise.
11820 (fetch_regs_kernel_thread): Remove shadowed variable.
11821
172fb711
AB
118222019-02-26 Andrew Burgess <andrew.burgess@embecosm.com>
11823
11824 * features/riscv/32bit-cpu.xml: Add register numbers.
11825 * features/riscv/32bit-fpu.c: Regenerate.
11826 * features/riscv/32bit-fpu.xml: Add register numbers.
11827 * features/riscv/64bit-cpu.xml: Add register numbers.
11828 * features/riscv/64bit-fpu.c: Regenerate.
11829 * features/riscv/64bit-fpu.xml: Add register numbers.
11830
26c89782
KB
118312019-02-26 Kevin Buettner <kevinb@redhat.com>
11832
af54ade9 11833 * NEWS: Mention two argument form of gdb.Value constructor.
fe07eca5
KB
11834 * python/py-value.c (convert_buffer_and_type_to_value): New
11835 function.
11836 (valpy_new): Parse arguments via gdb_PyArg_ParseTupleAndKeywords.
11837 Add support for handling an optional second argument. Call
11838 convert_buffer_and_type_to_value as appropriate.
26c89782
KB
11839 * python/python-internal.h (Py_buffer_deleter): New struct.
11840 (Py_buffer_up): New typedef.
11841
0f58c9e8
JB
118422019-02-25 John Baldwin <jhb@FreeBSD.org>
11843
11844 * dwarf2read.c (dwarf2_get_dwz_file): Reset dwz_bfd to nullptr
11845 instead of releasing ownership.
11846
0a0f4c01
JR
118472019-02-25 Jordan Rupprecht <rupprecht@google.com>
11848
11849 * dwarf2read.c (open_and_init_dwp_file): Call
11850 elf_numsections instead of bfd_count_sections to initialize
11851 dwp_file->num_sections.
11852
cd5a152c
TT
118532019-02-25 Tom Tromey <tromey@adacore.com>
11854
11855 * solib-darwin.c (darwin_get_dyld_bfd): Don't release dyld_bfd.
11856
8a6a8513
SDJ
118572019-02-23 Sergio Durigan Junior <sergiodj@redhat.com>
11858
11859 * gcore.in: Add '--readnever' option when invoking GDB.
11860
04dcda9c
SM
118612019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
11862
11863 * MAINTAINERS: Update my email address.
11864
07bc701d
SM
118652019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
11866
11867 * build-id.c (build_id_to_debug_bfd_1): New function.
11868 (build_id_to_debug_bfd): Look for separate debug file in
11869 sysroot.
11870
c6f4a5d0
AB
118712019-02-22 Andrew Burgess <andrew.burgess@embecosm.com>
11872
11873 * gdbarch.sh: Update the copyright year range that is placed into
11874 generated files.
11875
9600246d
KS
118762019-02-22 Keith Seitz <keiths@redhat.com>
11877
11878 PR symtab/23853
11879 * linespec.c (create_sals_line_offset): Search for the default
11880 symtab's filename instead of its fullname.
11881
7557a514
AH
118822019-02-21 Alan Hayward <alan.hayward@arm.com>
11883
11884 * NEWS: Update style defaults.
11885
ee2bcb0c
AH
118862019-02-21 Alan Hayward <alan.hayward@arm.com>
11887
11888 * main.c (captured_main_1): Disable styling in batch mode.
11889
0c95f9ed
TT
118902019-02-20 Tom Tromey <tom@tromey.com>
11891
11892 * symtab.c (symtab_symbol_info): Fix typos.
11893
c763b894
TT
118942019-02-20 Tom Tromey <tromey@adacore.com>
11895
11896 * findcmd.c (_initialize_mem_search): Use upper case for
11897 metasyntactic variables.
11898
0ef8a082
AH
118992019-02-20 Alan Hayward <alan.hayward@arm.com>
11900
11901 * aarch64-tdep.c (aarch64_add_reggroups): New function.
11902 (aarch64_gdbarch_init): Call aarch64_add_reggroups.
11903
6caa91b6
SM
119042019-02-19 Simon Marchi <simon.marchi@polymtl.ca>
11905
11906 * top.h (source_file_name): Change to std::string.
11907 * top.c (source_file_name): Likewise.
11908 (command_line_input): Adjust.
11909 * cli/cli-script.c (script_from_file): Adjust.
11910
98814c6c
TT
119112019-02-19 Tom Tromey <tromey@adacore.com>
11912
11913 * ravenscar-thread.c
11914 (ravenscar_thread_target::update_thread_list): Don't call
11915 ada_build_task_list.
11916 * ada-lang.h (ada_build_task_list): Don't declare.
11917 * ada-tasks.c (struct ada_tasks_inferior_data)
11918 <task_list_valid_p>: Now bool.
11919 (read_known_tasks, ada_task_list_changed)
11920 (ada_tasks_invalidate_inferior_data): Update.
11921 (read_known_tasks_array): Return bool.
11922 (read_known_tasks_list): Likewise.
11923 (read_known_tasks): Return void.
11924 (ada_build_task_list): Now static.
11925
70cd633e
AB
119262019-02-18 Andrew Burgess <andrew.burgess@embecosm.com>
11927
11928 * gdbtypes.c (type_align): Allow alignment of TYPE_CODE_METHODPTR
11929 and TYPE_CODE_MEMBERPTR to be overridden by the gdbarch.
11930
040b3e95
PW
119312019-02-18 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11932
11933 * ada-task.c (_initialize_tasks): Use 'with_cleanup' register
11934 variant for ada_tasks_pspace_data_handle and
11935 ada_tasks_inferior_data_handle.
11936 (ada_tasks_pspace_data_cleanup): New function.
11937 (ada_tasks_inferior_data_cleanup): New function.
11938
9409233b
TT
119392019-02-17 Tom Tromey <tom@tromey.com>
11940
11941 * macrotab.h (macro_source_fullname): Return a std::string.
11942 * macrotab.c (macro_include, check_for_redefinition)
11943 (macro_undef, macro_lookup_definition, foreach_macro)
11944 (foreach_macro_in_scope): Update.
11945 (macro_source_fullname): Return a std::string.
11946 * macrocmd.c (show_pp_source_pos): Update.
11947
6506371f
TT
119482019-02-17 Tom Tromey <tom@tromey.com>
11949
11950 * macrocmd.c (show_pp_source_pos): Style the file names.
11951
0c820d67
TT
119522019-02-17 Tom Tromey <tom@tromey.com>
11953
11954 PR tui/24197:
11955 * tui/tui-source.c (tui_set_source_content_nil): Rewrite.
11956
a0087920
TT
119572019-02-17 Tom Tromey <tom@tromey.com>
11958
11959 * ada-lang.c (user_select_syms): Use filtered printing.
11960 * utils.c (wrap_style): New global.
11961 (desired_style): Remove.
11962 (emit_style_escape): Add stream parameter.
11963 (set_output_style, reset_terminal_style, prompt_for_continue):
11964 Update.
11965 (flush_wrap_buffer): Only flush gdb_stdout.
11966 (wrap_here): Set wrap_style.
11967 (fputs_maybe_filtered): Clear the wrap buffer on exception. Don't
11968 treat escape sequences as a character. Change when wrap buffer is
11969 flushed.
11970 (fputs_styled): Do not set the output style when the default is
11971 requested.
11972 * ui-style.h (struct ui_file_style) <is_default>: New method.
11973 * source.c (print_source_lines_base): Emit escape sequences in one
11974 piece.
11975
75ba10dc
JB
119762019-02-17 Joel Brobecker <brobecker@adacore.com>
11977
11978 * gdbtypes.c (type_align): Handle TYPE_CODE_RANGE the same as
11979 integers and enumeration types.
11980
a2cd4f14
JB
119812019-02-17 Joel Brobecker <brobecker@adacore.com>
11982
11983 * ada-lang.c (standard_lookup): Use ada_lookup_encoded_symbol
11984 instead of lookup_symbol_in_language
11985 (do_exact_match): New function.
11986 (ada_get_symbol_name_matcher): Return do_exact_match when
11987 doing a verbatim match.
11988
485b851b
TT
119892019-02-15 Tom Tromey <tromey@adacore.com>
11990
11991 * ravenscar-thread.c (ravenscar_thread_target::resume)
11992 (ravenscar_thread_target::wait): Special case wildcard requests.
11993
0b790b1e
TT
119942019-02-15 Tom Tromey <tromey@adacore.com>
11995
11996 * ravenscar-thread.c (base_ptid): Remove.
11997 (struct ravenscar_thread_target) <close>: New method.
11998 <m_base_ptid>: New member.
11999 <update_inferior_ptid, active_task, task_is_currently_active,
12000 runtime_initialized>: Declare methods.
12001 <ravenscar_thread_target>: Add constructor.
12002 (ravenscar_thread_target::task_is_currently_active)
12003 (ravenscar_thread_target::update_inferior_ptid)
12004 (ravenscar_runtime_initialized): Rename. Now methods.
12005 (ravenscar_thread_target::resume, ravenscar_thread_target::wait)
12006 (ravenscar_thread_target::update_thread_list): Update.
12007 (ravenscar_thread_target::active_task): Now method.
12008 (ravenscar_thread_target::store_registers)
12009 (ravenscar_thread_target::prepare_to_store)
12010 (ravenscar_thread_target::prepare_to_store)
12011 (ravenscar_thread_target::mourn_inferior): Update.
12012 (ravenscar_inferior_created): Use "new" to create target.
12013 (ravenscar_thread_target::get_ada_task_ptid): Update.
12014 (_initialize_ravenscar): Don't initialize base_ptid.
12015 (ravenscar_ops): Remove global.
12016
dea57a62
TT
120172019-02-15 Tom Tromey <tromey@adacore.com>
12018
12019 * target.h (push_target): Declare new overload.
12020 * target.c (push_target): New overload, taking an rvalue reference.
12021 * remote.c (remote_target::open_1): Use push_target overload.
12022 * corelow.c (core_target_open): Use push_target overload.
12023
989f3c58
TT
120242019-02-15 Tom Tromey <tromey@adacore.com>
12025
12026 * ravenscar-thread.c (is_ravenscar_task)
12027 (ravenscar_task_is_currently_active): Return bool.
12028 (ravenscar_update_inferior_ptid, get_running_thread_msymbol)
12029 (_initialize_ravenscar): Remove "(void)".
12030 (has_ravenscar_runtime, ravenscar_runtime_initialized): Likewise.
12031 Return bool.
12032
6cbcc006
TT
120332019-02-15 Tom Tromey <tromey@adacore.com>
12034
12035 * ravenscar-thread.c (ravenscar_runtime_initializer)
12036 (has_ravenscar_runtime, get_running_thread_id)
12037 (ravenscar_thread_target::resume): Fix indentation.
12038
7657f14d
TT
120392019-02-15 Tom Tromey <tromey@adacore.com>
12040
12041 * sparc-ravenscar-thread.c (struct sparc_ravenscar_ops): Derive
12042 from ravenscar_arch_ops.
12043 (sparc_ravenscar_ops::fetch_registers)
12044 (sparc_ravenscar_ops::store_registers): Now methods.
12045 (sparc_ravenscar_prepare_to_store): Remove.
12046 (sparc_ravenscar_ops): Redefine.
12047 * ravenscar-thread.h (struct ravenscar_arch_ops): Add virtual
12048 methods and destructor. Remove members.
12049 * ravenscar-thread.c (ravenscar_thread_target::fetch_registers)
12050 (ravenscar_thread_target::store_registers)
12051 (ravenscar_thread_target::prepare_to_store): Update.
12052 * ppc-ravenscar-thread.c (ppc_ravenscar_generic_prepare_to_store):
12053 Remove.
12054 (struct ppc_ravenscar_powerpc_ops): Derive from
12055 ravenscar_arch_ops.
12056 (ppc_ravenscar_powerpc_ops::fetch_registers)
12057 (ppc_ravenscar_powerpc_ops::store_registers): Now methods.
12058 (ppc_ravenscar_powerpc_ops): Redefine.
12059 (struct ppc_ravenscar_e500_ops): Derive from ravenscar_arch_ops.
12060 (ppc_ravenscar_e500_ops::fetch_registers)
12061 (ppc_ravenscar_e500_ops::store_registers): Now methods.
12062 (ppc_ravenscar_e500_ops): Redefine.
12063 * aarch64-ravenscar-thread.c
12064 (aarch64_ravenscar_generic_prepare_to_store): Remove.
12065 (struct aarch64_ravenscar_ops): Derive from ravenscar_arch_ops.
12066 (aarch64_ravenscar_fetch_registers)
12067 (aarch64_ravenscar_store_registers): Now methods.
12068 (aarch64_ravenscar_ops): Redefine.
12069
5b6ea500
TT
120702019-02-15 Tom Tromey <tromey@adacore.com>
12071
12072 * ravenscar-thread.c (ravenscar_thread_target::stopped_by_sw_breakpoint)
12073 (ravenscar_thread_target::stopped_by_hw_breakpoint)
12074 (ravenscar_thread_target::stopped_by_watchpoint)
12075 (ravenscar_thread_target::stopped_data_address)
12076 (ravenscar_thread_target::core_of_thread): Use scoped_restore.
12077
e397fd39
TT
120782019-02-15 Tom Tromey <tromey@adacore.com>
12079
12080 * ravenscar-thread.c: Fix some typos.
12081
cc12f4a8
TT
120822019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12083 Tom Tromey <tromey@adacore.com>
12084
12085 * ada-lang.c (ada_exception_sal): Change addr_string to a
12086 std::string.
12087 (create_ada_exception_catchpoint): Update.
12088
5f486660
TT
120892019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12090 Tom Tromey <tromey@adacore.com>
12091
12092 * breakpoint.c (~bp_location): Rename from bp_location_dtor.
12093 (bp_location_ops): Remove.
12094 (base_breakpoint_allocate_location): Update.
12095 (free_bp_location): Update.
12096 * ada-lang.c (class ada_catchpoint_location)
12097 <ada_catchpoint_location>: Remove ops parameter.
12098 (ada_catchpoint_location_dtor): Remove.
12099 (ada_catchpoint_location_ops): Remove.
12100 (allocate_location_exception): Update.
12101 * breakpoint.h (struct bp_location_ops): Remove.
12102 (class bp_location) <bp_location>: Remove bp_location_ops
12103 parameter.
12104 <~bp_location>: Add destructor.
12105 <ops>: Remove.
12106
b671c7fb
TS
121072019-02-14 Thomas Schwinge <thomas@codesourcery.com>
12108 Pedro Alves <palves@redhat.com>
12109
12110 * remote.c (remote_target::remote_parse_stop_reply): Avoid using
12111 'PATH_MAX'.
12112
8071c5ce
DM
121132019-02-14 David Michael <fedora.dm0@gmail.com>
12114 Samuel Thibault <samuel.thibault@gnu.org>
12115 Thomas Schwinge <thomas@codesourcery.com>
12116
12117 * gnu-nat.c (S_proc_getmsgport_reply, S_proc_task2proc_reply)
12118 (S_proc_pid2proc_reply): Adjust to Hurd "proc" interface changes.
12119
b1041ae0
TS
121202019-02-14 Thomas Schwinge <thomas@codesourcery.com>
12121
924514e1
TS
12122 * gnu-nat.c (gnu_write_inferior, parse_int_arg, _parse_bool_arg)
12123 (check_empty): Use "const char *".
12124
c29ee8d4
TS
12125 * gnu-nat.c (gnu_nat_target::detach): Instead of
12126 'detach_inferior (pid)' call
12127 'detach_inferior (find_inferior_pid (pid))'.
12128
6c6ef69f
TS
12129 * configure.nat [gdb_host == i386gnu] (NATDEPFILES): Add
12130 'nat/fork-inferior.o'.
12131 * gnu-nat.c: #include "nat/fork-inferior.h".
12132
2d0a338c
TS
12133 * gnu-nat.c (gnu_nat_target::detach): Instead of
12134 'inf_child_maybe_unpush_target (ops)' call 'maybe_unpush_target'.
12135 * gnu-nat.h: #include "inf-child.h".
12136 * i386-gnu-nat.c (gnu_fetch_registers): Rename/move to
12137 'i386_gnu_nat_target::fetch_registers'.
12138 (gnu_store_registers): Rename/move to
12139 'i386_gnu_nat_target::store_registers'.
12140
cabb5f06
TS
12141 * config/i386/nm-i386gnu.h: Don't "#include" any files.
12142 * gnu-nat.h (mach_thread_info): New function.
12143 * gnu-nat.c (thread_takeover_sc_cmd): Use it.
12144
b1041ae0
TS
12145 * config/i386/nm-i386gnu.h (gnu_target_pid_to_str): Remove.
12146
2988d01e
KF
121472019-02-14 Frederic Konrad <konrad@adacore.com>
12148
12149 * riscv-rdep.c (riscv_type_alignment): Handle TYPE_CODE_RANGE.
12150
c559d709
JB
121512019-02-14 Joel Brobecker <brobecker@adacore.com>
12152
12153 * windows-nat.c (windows_add_thread): Add new parameter
12154 "main_thread_p" with default value set to false. Update
12155 function documentation as well as all callers.
12156 (windows_delete_thread): Likewise.
12157 (fake_create_process): Update call to windows_add_thread.
12158 (get_windows_debug_event) <CREATE_THREAD_DEBUG_EVENT>
12159 <CREATE_PROCESS_DEBUG_EVENT>: Likewise.
12160 <EXIT_THREAD_DEBUG_EVENT, EXIT_PROCESS_DEBUG_EVENT>: Update
12161 call to windows_delete_thread.
12162
007024cc
SM
121632019-02-13 Simon Marchi <simon.marchi@ericsson.com>
12164
12165 * MAINTAINERS: Add Andrew Burgess as global maintainer.
12166
f62318e9
JB
121672019-02-12 John Baldwin <jhb@FreeBSD.org>
12168
12169 * symfile.c (find_separate_debug_file): Use canonical path of
12170 sysroot with child_path instead of gdb_sysroot if it is valid.
12171
cd4b7848
JB
121722019-02-12 John Baldwin <jhb@FreeBSD.org>
12173
12174 * symfile.c (find_separate_debug_file): Use child_path to
12175 determine if an object file is under a sysroot.
12176
efac4bfe
JB
121772019-02-12 John Baldwin <jhb@FreeBSD.org>
12178
12179 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
12180 unittests/child-path-selftests.c.
12181 * common/pathstuff.c (child_path): New function.
12182 * common/pathstuff.h (child_path): New prototype.
12183 * unittests/child-path-selftests.c: New file.
12184
402d2bfe
JB
121852019-02-12 John Baldwin <jhb@FreeBSD.org>
12186
12187 * symfile.c (find_separate_debug_file): Look for separate debug
12188 files in debug directories under the sysroot.
12189
1ed9f74e
PW
121902019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12191
12192 * symtab.h (struct minimal_symbol data_p): New const method.
12193 (struct minimal_symbol text_p): Likewise.
12194 * symtab.c (output_source_filename): Use file name style
12195 to print file name.
12196 (print_symbol_info): Likewise.
12197 (print_msymbol_info): Use address style to print addresses.
12198 Use function name style to print executable text symbols.
12199 (expand_symtab_containing_pc): Use data_p.
12200 (find_pc_sect_compunit_symtab): Likewise.
12201
2636d81d
PW
122022019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12203
12204 * breakpoint.c (describe_other_breakpoints): Use address style
12205 to print addresses.
12206 (say_where): Likewise.
12207
ac8c53cc
PW
122082019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12209
12210 * ada-typeprint.c (print_func_type): Print function name
12211 style to print function name.
12212 * c-typeprint.c (c_print_type_1): Likewise.
12213
ea638c43
AH
122142019-02-11 Alan Hayward <alan.hayward@arm.com>
12215
12216 * aarch64-linux-tdep.c (aarch64_linux_get_syscall_number): Check
12217 for execve.
12218
ab759ca8
PW
122192019-02-10 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12220
12221 * c-exp.y (direct_abs_decl): Use emplace_back to record the
12222 type_stack.
12223
aff29d1c
JB
122242019-02-10 Joel Brobecker <brobecker@adacore.com>
12225
12226 * ada-varobj.c (ada_value_is_changeable_p): Add handling of
12227 TYPE_CODE_REF types.
12228
617126bc
JW
122292019-02-08 Jim Wilson <jimw@sifive.com>
12230
12231 * riscv-linux-tdep.c (riscv_linux_fregmap): New.
12232 (riscv_linux_fregset): New.
12233 (riscv_linux_iterate_over_regset_sections): Call cb for .reg2 section.
12234
46e3ed7f
TT
122352019-02-07 Tom Tromey <tom@tromey.com>
12236
12237 * thread.c (thread_cancel_execution_command): Update.
12238 * thread-fsm.h (struct thread_fsm): Add constructor, destructor,
12239 methods.
12240 (struct thread_fsm_ops): Remove.
12241 (thread_fsm_ctor, thread_fsm_delete, thread_fsm_clean_up)
12242 (thread_fsm_should_stop, thread_fsm_return_value)
12243 (thread_fsm_set_finished, thread_fsm_finished_p)
12244 (thread_fsm_async_reply_reason, thread_fsm_should_notify_stop):
12245 Don't declare.
12246 * mi/mi-interp.c (mi_on_normal_stop_1): Update.
12247 * infrun.c (clear_proceed_status_thread)
12248 (clean_up_just_stopped_threads_fsms, fetch_inferior_event)
12249 (print_stop_event): Update.
12250 * infcmd.c (struct step_command_fsm): Inherit from thread_fsm.
12251 Add constructor.
12252 (step_command_fsm_ops): Remove.
12253 (new_step_command_fsm): Remove.
12254 (step_1): Update.
12255 (step_command_fsm::should_stop): Rename from
12256 step_command_fsm_should_stop.
12257 (step_command_fsm::clean_up): Rename from
12258 step_command_fsm_clean_up.
12259 (step_command_fsm::do_async_reply_reason): Rename from
12260 step_command_fsm_async_reply_reason.
12261 (struct until_next_fsm): Inherit from thread_fsm. Add
12262 constructor.
12263 (until_next_fsm_ops): Remove.
12264 (new_until_next_fsm): Remove.
12265 (until_next_fsm::should_stop): Rename from
12266 until_next_fsm_should_stop.
12267 (until_next_fsm::clean_up): Rename from until_next_fsm_clean_up.
12268 (until_next_fsm::do_async_reply_reason): Rename from
12269 until_next_fsm_async_reply_reason.
12270 (struct finish_command_fsm): Inherit from thread_fsm. Add
12271 constructor. Change type of breakpoint.
12272 (finish_command_fsm_ops): Remove.
12273 (new_finish_command_fsm): Remove.
12274 (finish_command_fsm::should_stop): Rename from
12275 finish_command_fsm_should_stop.
12276 (finish_command_fsm::clean_up): Rename from
12277 finish_command_fsm_clean_up.
12278 (finish_command_fsm::return_value): Rename from
12279 finish_command_fsm_return_value.
12280 (finish_command_fsm::do_async_reply_reason): Rename from
12281 finish_command_fsm_async_reply_reason.
12282 (finish_command): Update.
12283 * infcall.c (struct call_thread_fsm): Inherit from thread_fsm.
12284 Add constructor.
12285 (call_thread_fsm_ops): Remove.
12286 (call_thread_fsm::call_thread_fsm): Rename from
12287 new_call_thread_fsm.
12288 (call_thread_fsm::should_stop): Rename from
12289 call_thread_fsm_should_stop.
12290 (call_thread_fsm::should_notify_stop): Rename from
12291 call_thread_fsm_should_notify_stop.
12292 (run_inferior_call, call_function_by_hand_dummy): Update.
12293 * cli/cli-interp.c (should_print_stop_to_console): Update.
12294 * breakpoint.c (struct until_break_fsm): Inherit from thread_fsm.
12295 Add constructor. Change type of location_breakpoint,
12296 caller_breakpoint.
12297 (until_break_fsm_ops): Remove.
12298 (new_until_break_fsm): Remove.
12299 (until_break_fsm::should_stop): Rename from
12300 until_break_fsm_should_stop.
12301 (until_break_fsm::clean_up): Rename from
12302 until_break_fsm_clean_up.
12303 (until_break_fsm::do_async_reply_reason): Rename from
12304 until_break_fsm_async_reply_reason.
12305 (until_break_command): Update.
12306 * thread-fsm.c: Remove.
12307 * Makefile.in (COMMON_SFILES): Remove thread-fsm.c.
12308
1a5c2598
TT
123092019-02-07 Tom Tromey <tom@tromey.com>
12310
12311 * yy-remap.h: Add include guard.
12312 * xtensa-tdep.h: Add include guard.
12313 * xcoffread.h: Rename include guard.
12314 * varobj-iter.h: Add include guard.
12315 * tui/tui.h: Rename include guard.
12316 * tui/tui-winsource.h: Rename include guard.
12317 * tui/tui-wingeneral.h: Rename include guard.
12318 * tui/tui-windata.h: Rename include guard.
12319 * tui/tui-win.h: Rename include guard.
12320 * tui/tui-stack.h: Rename include guard.
12321 * tui/tui-source.h: Rename include guard.
12322 * tui/tui-regs.h: Rename include guard.
12323 * tui/tui-out.h: Rename include guard.
12324 * tui/tui-layout.h: Rename include guard.
12325 * tui/tui-io.h: Rename include guard.
12326 * tui/tui-hooks.h: Rename include guard.
12327 * tui/tui-file.h: Rename include guard.
12328 * tui/tui-disasm.h: Rename include guard.
12329 * tui/tui-data.h: Rename include guard.
12330 * tui/tui-command.h: Rename include guard.
12331 * tic6x-tdep.h: Add include guard.
12332 * target/waitstatus.h: Rename include guard.
12333 * target/wait.h: Rename include guard.
12334 * target/target.h: Rename include guard.
12335 * target/resume.h: Rename include guard.
12336 * target-float.h: Rename include guard.
12337 * stabsread.h: Add include guard.
12338 * rs6000-tdep.h: Add include guard.
12339 * riscv-fbsd-tdep.h: Add include guard.
12340 * regformats/regdef.h: Rename include guard.
12341 * record.h: Rename include guard.
12342 * python/python.h: Rename include guard.
12343 * python/python-internal.h: Rename include guard.
12344 * python/py-stopevent.h: Rename include guard.
12345 * python/py-ref.h: Rename include guard.
12346 * python/py-record.h: Rename include guard.
12347 * python/py-record-full.h: Rename include guard.
12348 * python/py-record-btrace.h: Rename include guard.
12349 * python/py-instruction.h: Rename include guard.
12350 * python/py-events.h: Rename include guard.
12351 * python/py-event.h: Rename include guard.
12352 * procfs.h: Add include guard.
12353 * proc-utils.h: Add include guard.
12354 * p-lang.h: Add include guard.
12355 * or1k-tdep.h: Rename include guard.
12356 * observable.h: Rename include guard.
12357 * nto-tdep.h: Rename include guard.
12358 * nat/x86-linux.h: Rename include guard.
12359 * nat/x86-linux-dregs.h: Rename include guard.
12360 * nat/x86-gcc-cpuid.h: Add include guard.
12361 * nat/x86-dregs.h: Rename include guard.
12362 * nat/x86-cpuid.h: Rename include guard.
12363 * nat/ppc-linux.h: Rename include guard.
12364 * nat/mips-linux-watch.h: Rename include guard.
12365 * nat/linux-waitpid.h: Rename include guard.
12366 * nat/linux-ptrace.h: Rename include guard.
12367 * nat/linux-procfs.h: Rename include guard.
12368 * nat/linux-osdata.h: Rename include guard.
12369 * nat/linux-nat.h: Rename include guard.
12370 * nat/linux-namespaces.h: Rename include guard.
12371 * nat/linux-btrace.h: Rename include guard.
12372 * nat/glibc_thread_db.h: Rename include guard.
12373 * nat/gdb_thread_db.h: Rename include guard.
12374 * nat/gdb_ptrace.h: Rename include guard.
12375 * nat/fork-inferior.h: Rename include guard.
12376 * nat/amd64-linux-siginfo.h: Rename include guard.
12377 * nat/aarch64-sve-linux-sigcontext.h: Rename include guard.
12378 * nat/aarch64-sve-linux-ptrace.h: Rename include guard.
12379 * nat/aarch64-linux.h: Rename include guard.
12380 * nat/aarch64-linux-hw-point.h: Rename include guard.
12381 * mn10300-tdep.h: Add include guard.
12382 * mips-linux-tdep.h: Add include guard.
12383 * mi/mi-parse.h: Rename include guard.
12384 * mi/mi-out.h: Rename include guard.
12385 * mi/mi-main.h: Rename include guard.
12386 * mi/mi-interp.h: Rename include guard.
12387 * mi/mi-getopt.h: Rename include guard.
12388 * mi/mi-console.h: Rename include guard.
12389 * mi/mi-common.h: Rename include guard.
12390 * mi/mi-cmds.h: Rename include guard.
12391 * mi/mi-cmd-break.h: Rename include guard.
12392 * m2-lang.h: Add include guard.
12393 * location.h: Rename include guard.
12394 * linux-record.h: Rename include guard.
12395 * linux-nat.h: Add include guard.
12396 * linux-fork.h: Add include guard.
12397 * i386-darwin-tdep.h: Rename include guard.
12398 * hppa-linux-offsets.h: Add include guard.
12399 * guile/guile.h: Rename include guard.
12400 * guile/guile-internal.h: Rename include guard.
12401 * gnu-nat.h: Rename include guard.
12402 * gdb-stabs.h: Rename include guard.
12403 * frv-tdep.h: Add include guard.
12404 * f-lang.h: Add include guard.
12405 * event-loop.h: Add include guard.
12406 * darwin-nat.h: Rename include guard.
12407 * cp-abi.h: Rename include guard.
12408 * config/sparc/nm-sol2.h: Rename include guard.
12409 * config/nm-nto.h: Rename include guard.
12410 * config/nm-linux.h: Add include guard.
12411 * config/i386/nm-i386gnu.h: Rename include guard.
12412 * config/djgpp/nl_types.h: Rename include guard.
12413 * config/djgpp/langinfo.h: Rename include guard.
12414 * compile/gcc-cp-plugin.h: Add include guard.
12415 * compile/gcc-c-plugin.h: Add include guard.
12416 * compile/compile.h: Rename include guard.
12417 * compile/compile-object-run.h: Rename include guard.
12418 * compile/compile-object-load.h: Rename include guard.
12419 * compile/compile-internal.h: Rename include guard.
12420 * compile/compile-cplus.h: Rename include guard.
12421 * compile/compile-c.h: Rename include guard.
12422 * common/xml-utils.h: Rename include guard.
12423 * common/x86-xstate.h: Rename include guard.
12424 * common/version.h: Rename include guard.
12425 * common/vec.h: Rename include guard.
12426 * common/tdesc.h: Rename include guard.
12427 * common/selftest.h: Rename include guard.
12428 * common/scoped_restore.h: Rename include guard.
12429 * common/scoped_mmap.h: Rename include guard.
12430 * common/scoped_fd.h: Rename include guard.
12431 * common/safe-iterator.h: Rename include guard.
12432 * common/run-time-clock.h: Rename include guard.
12433 * common/refcounted-object.h: Rename include guard.
12434 * common/queue.h: Rename include guard.
12435 * common/ptid.h: Rename include guard.
12436 * common/print-utils.h: Rename include guard.
12437 * common/preprocessor.h: Rename include guard.
12438 * common/pathstuff.h: Rename include guard.
12439 * common/observable.h: Rename include guard.
12440 * common/netstuff.h: Rename include guard.
12441 * common/job-control.h: Rename include guard.
12442 * common/host-defs.h: Rename include guard.
12443 * common/gdb_wait.h: Rename include guard.
12444 * common/gdb_vecs.h: Rename include guard.
12445 * common/gdb_unlinker.h: Rename include guard.
12446 * common/gdb_unique_ptr.h: Rename include guard.
12447 * common/gdb_tilde_expand.h: Rename include guard.
12448 * common/gdb_sys_time.h: Rename include guard.
12449 * common/gdb_string_view.h: Rename include guard.
12450 * common/gdb_splay_tree.h: Rename include guard.
12451 * common/gdb_setjmp.h: Rename include guard.
12452 * common/gdb_ref_ptr.h: Rename include guard.
12453 * common/gdb_optional.h: Rename include guard.
12454 * common/gdb_locale.h: Rename include guard.
12455 * common/gdb_assert.h: Rename include guard.
12456 * common/filtered-iterator.h: Rename include guard.
12457 * common/filestuff.h: Rename include guard.
12458 * common/fileio.h: Rename include guard.
12459 * common/environ.h: Rename include guard.
12460 * common/common-utils.h: Rename include guard.
12461 * common/common-types.h: Rename include guard.
12462 * common/common-regcache.h: Rename include guard.
12463 * common/common-inferior.h: Rename include guard.
12464 * common/common-gdbthread.h: Rename include guard.
12465 * common/common-exceptions.h: Rename include guard.
12466 * common/common-defs.h: Rename include guard.
12467 * common/common-debug.h: Rename include guard.
12468 * common/cleanups.h: Rename include guard.
12469 * common/buffer.h: Rename include guard.
12470 * common/btrace-common.h: Rename include guard.
12471 * common/break-common.h: Rename include guard.
12472 * cli/cli-utils.h: Rename include guard.
12473 * cli/cli-style.h: Rename include guard.
12474 * cli/cli-setshow.h: Rename include guard.
12475 * cli/cli-script.h: Rename include guard.
12476 * cli/cli-interp.h: Rename include guard.
12477 * cli/cli-decode.h: Rename include guard.
12478 * cli/cli-cmds.h: Rename include guard.
12479 * charset-list.h: Add include guard.
12480 * buildsym-legacy.h: Rename include guard.
12481 * bfin-tdep.h: Add include guard.
12482 * ax.h: Rename include guard.
12483 * arm-linux-tdep.h: Add include guard.
12484 * arm-fbsd-tdep.h: Add include guard.
12485 * arch/xtensa.h: Rename include guard.
12486 * arch/tic6x.h: Add include guard.
12487 * arch/i386.h: Add include guard.
12488 * arch/arm.h: Rename include guard.
12489 * arch/arm-linux.h: Rename include guard.
12490 * arch/arm-get-next-pcs.h: Rename include guard.
12491 * arch/amd64.h: Add include guard.
12492 * arch/aarch64-insn.h: Rename include guard.
12493 * arch-utils.h: Rename include guard.
12494 * annotate.h: Add include guard.
12495 * amd64-darwin-tdep.h: Rename include guard.
12496 * aarch64-linux-tdep.h: Add include guard.
12497 * aarch64-fbsd-tdep.h: Add include guard.
12498 * aarch32-linux-nat.h: Add include guard.
12499
ab9268d2
PW
125002019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12501
12502 * macrotab.c (macro_define_internal): New function that
12503 factorizes macro_define_object_internal and macro_define_function
12504 code.
12505 (macro_define_object_internal): Use macro_define_internal.
12506 (macro_define_function): Likewise.
12507
bb0da2b4
PW
125082019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12509
12510 * macrocmd.c (extract_identifier): Return
12511 a gdb::unique_xmalloc_ptr<char> instead of a char *, and update
12512 callers.
12513
424eb552
JB
125142019-02-06 John Baldwin <jhb@FreeBSD.org>
12515
12516 * fbsd-nat.c (fbsd_fetch_cmdline): Join arguments with spaces.
12517
1688cb29
TT
125182019-02-05 Tom Tromey <tom@tromey.com>
12519
12520 * target.c (target_stack::unpush): Move assertion earlier.
12521
b5eba2d8
TT
125222019-01-30 Tom Tromey <tom@tromey.com>
12523
12524 PR python/23615:
12525 * python/python.c (execute_gdb_command): Use gdbpy_allow_threads.
12526 (gdbpy_parse_and_eval): Likewise.
12527 * python/python-internal.h (gdbpy_allow_threads): New class.
12528
7054e2ff
JB
125292019-01-28 John Baldwin <jhb@FreeBSD.org>
12530
12531 * aarch64-fbsd-tdep.c (aarch64_fbsd_gregmap)
12532 (aarch64_fbsd_fpregmap): Move earlier.
12533 (AARCH64_MCONTEXT_REG_SIZE, AARCH64_MCONTEXT_FPREG_SIZE): Delete.
12534 (aarch64_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
12535 instead of individual calls to trad_frame_set_reg_addr.
12536 * arm-fbsd-tdep.c (arm_fbsd_gregmap, arm_fbsd_vfpregmap): Move
12537 earlier.
12538 (ARM_MCONTEXT_REG_SIZE, ARM_MCONTEXT_VFP_REG_SIZE): Delete.
12539 (arm_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
12540 instead of individual calls to trad_frame_set_reg_addr.
12541
36c25ffa
AH
125422019-01-28 Alan Hayward <alan.hayward@arm.com>
12543
12544 * CONTRIBUTE: Replace contribution list with wiki link.
12545
a0707f3c
TT
125462019-01-25 Tom Tromey <tom@tromey.com>
12547
12548 * Makefile.in (GDB_CFLAGS): Don't add -I for common.
12549
0747795c
TT
125502019-01-25 Tom Tromey <tom@tromey.com>
12551
12552 * xtensa-linux-nat.c: Fix common/ includes.
12553 * xml-support.h: Fix common/ includes.
12554 * xml-support.c: Fix common/ includes.
12555 * x86-linux-nat.c: Fix common/ includes.
12556 * windows-nat.c: Fix common/ includes.
12557 * varobj.h: Fix common/ includes.
12558 * varobj.c: Fix common/ includes.
12559 * value.c: Fix common/ includes.
12560 * valops.c: Fix common/ includes.
12561 * utils.c: Fix common/ includes.
12562 * unittests/xml-utils-selftests.c: Fix common/ includes.
12563 * unittests/utils-selftests.c: Fix common/ includes.
12564 * unittests/unpack-selftests.c: Fix common/ includes.
12565 * unittests/tracepoint-selftests.c: Fix common/ includes.
12566 * unittests/style-selftests.c: Fix common/ includes.
12567 * unittests/string_view-selftests.c: Fix common/ includes.
12568 * unittests/scoped_restore-selftests.c: Fix common/ includes.
12569 * unittests/scoped_mmap-selftests.c: Fix common/ includes.
12570 * unittests/scoped_fd-selftests.c: Fix common/ includes.
12571 * unittests/rsp-low-selftests.c: Fix common/ includes.
12572 * unittests/parse-connection-spec-selftests.c: Fix common/
12573 includes.
12574 * unittests/optional-selftests.c: Fix common/ includes.
12575 * unittests/offset-type-selftests.c: Fix common/ includes.
12576 * unittests/observable-selftests.c: Fix common/ includes.
12577 * unittests/mkdir-recursive-selftests.c: Fix common/ includes.
12578 * unittests/memrange-selftests.c: Fix common/ includes.
12579 * unittests/memory-map-selftests.c: Fix common/ includes.
12580 * unittests/lookup_name_info-selftests.c: Fix common/ includes.
12581 * unittests/function-view-selftests.c: Fix common/ includes.
12582 * unittests/environ-selftests.c: Fix common/ includes.
12583 * unittests/copy_bitwise-selftests.c: Fix common/ includes.
12584 * unittests/common-utils-selftests.c: Fix common/ includes.
12585 * unittests/cli-utils-selftests.c: Fix common/ includes.
12586 * unittests/array-view-selftests.c: Fix common/ includes.
12587 * ui-file.c: Fix common/ includes.
12588 * tui/tui-io.c: Fix common/ includes.
12589 * tracepoint.h: Fix common/ includes.
12590 * tracepoint.c: Fix common/ includes.
12591 * tracefile-tfile.c: Fix common/ includes.
12592 * top.h: Fix common/ includes.
12593 * top.c: Fix common/ includes.
12594 * thread.c: Fix common/ includes.
12595 * target/waitstatus.h: Fix common/ includes.
12596 * target/waitstatus.c: Fix common/ includes.
12597 * target.h: Fix common/ includes.
12598 * target.c: Fix common/ includes.
12599 * target-memory.c: Fix common/ includes.
12600 * target-descriptions.c: Fix common/ includes.
12601 * symtab.h: Fix common/ includes.
12602 * symfile.c: Fix common/ includes.
12603 * stap-probe.c: Fix common/ includes.
12604 * spu-linux-nat.c: Fix common/ includes.
12605 * sparc-nat.c: Fix common/ includes.
12606 * source.c: Fix common/ includes.
12607 * solib.c: Fix common/ includes.
12608 * solib-target.c: Fix common/ includes.
12609 * ser-unix.c: Fix common/ includes.
12610 * ser-tcp.c: Fix common/ includes.
12611 * ser-pipe.c: Fix common/ includes.
12612 * ser-base.c: Fix common/ includes.
12613 * selftest-arch.c: Fix common/ includes.
12614 * s12z-tdep.c: Fix common/ includes.
12615 * rust-exp.y: Fix common/ includes.
12616 * rs6000-aix-tdep.c: Fix common/ includes.
12617 * riscv-tdep.c: Fix common/ includes.
12618 * remote.c: Fix common/ includes.
12619 * remote-notif.h: Fix common/ includes.
12620 * remote-fileio.h: Fix common/ includes.
12621 * remote-fileio.c: Fix common/ includes.
12622 * regcache.h: Fix common/ includes.
12623 * regcache.c: Fix common/ includes.
12624 * record-btrace.c: Fix common/ includes.
12625 * python/python.c: Fix common/ includes.
12626 * python/py-type.c: Fix common/ includes.
12627 * python/py-inferior.c: Fix common/ includes.
12628 * progspace.h: Fix common/ includes.
12629 * producer.c: Fix common/ includes.
12630 * procfs.c: Fix common/ includes.
12631 * proc-api.c: Fix common/ includes.
12632 * printcmd.c: Fix common/ includes.
12633 * ppc-linux-nat.c: Fix common/ includes.
12634 * parser-defs.h: Fix common/ includes.
12635 * osdata.c: Fix common/ includes.
12636 * obsd-nat.c: Fix common/ includes.
12637 * nat/x86-linux.c: Fix common/ includes.
12638 * nat/x86-linux-dregs.c: Fix common/ includes.
12639 * nat/x86-dregs.h: Fix common/ includes.
12640 * nat/x86-dregs.c: Fix common/ includes.
12641 * nat/ppc-linux.c: Fix common/ includes.
12642 * nat/mips-linux-watch.h: Fix common/ includes.
12643 * nat/mips-linux-watch.c: Fix common/ includes.
12644 * nat/linux-waitpid.c: Fix common/ includes.
12645 * nat/linux-ptrace.h: Fix common/ includes.
12646 * nat/linux-ptrace.c: Fix common/ includes.
12647 * nat/linux-procfs.c: Fix common/ includes.
12648 * nat/linux-personality.c: Fix common/ includes.
12649 * nat/linux-osdata.c: Fix common/ includes.
12650 * nat/linux-namespaces.c: Fix common/ includes.
12651 * nat/linux-btrace.h: Fix common/ includes.
12652 * nat/linux-btrace.c: Fix common/ includes.
12653 * nat/fork-inferior.c: Fix common/ includes.
12654 * nat/amd64-linux-siginfo.c: Fix common/ includes.
12655 * nat/aarch64-sve-linux-ptrace.c: Fix common/ includes.
12656 * nat/aarch64-linux.c: Fix common/ includes.
12657 * nat/aarch64-linux-hw-point.h: Fix common/ includes.
12658 * nat/aarch64-linux-hw-point.c: Fix common/ includes.
12659 * namespace.h: Fix common/ includes.
12660 * mips-linux-tdep.c: Fix common/ includes.
12661 * minsyms.c: Fix common/ includes.
12662 * mi/mi-parse.h: Fix common/ includes.
12663 * mi/mi-main.c: Fix common/ includes.
12664 * mi/mi-cmd-env.c: Fix common/ includes.
12665 * memrange.h: Fix common/ includes.
12666 * memattr.c: Fix common/ includes.
12667 * maint.h: Fix common/ includes.
12668 * maint.c: Fix common/ includes.
12669 * main.c: Fix common/ includes.
12670 * machoread.c: Fix common/ includes.
12671 * location.c: Fix common/ includes.
12672 * linux-thread-db.c: Fix common/ includes.
12673 * linux-nat.c: Fix common/ includes.
12674 * linux-fork.c: Fix common/ includes.
12675 * inline-frame.c: Fix common/ includes.
12676 * infrun.c: Fix common/ includes.
12677 * inflow.c: Fix common/ includes.
12678 * inferior.h: Fix common/ includes.
12679 * inferior.c: Fix common/ includes.
12680 * infcmd.c: Fix common/ includes.
12681 * inf-ptrace.c: Fix common/ includes.
12682 * inf-child.c: Fix common/ includes.
12683 * ia64-linux-nat.c: Fix common/ includes.
12684 * i387-tdep.c: Fix common/ includes.
12685 * i386-tdep.c: Fix common/ includes.
12686 * i386-linux-tdep.c: Fix common/ includes.
12687 * i386-linux-nat.c: Fix common/ includes.
12688 * i386-go32-tdep.c: Fix common/ includes.
12689 * i386-fbsd-tdep.c: Fix common/ includes.
12690 * i386-fbsd-nat.c: Fix common/ includes.
12691 * guile/scm-type.c: Fix common/ includes.
12692 * guile/guile.c: Fix common/ includes.
12693 * go32-nat.c: Fix common/ includes.
12694 * gnu-nat.c: Fix common/ includes.
12695 * gdbthread.h: Fix common/ includes.
12696 * gdbarch-selftests.c: Fix common/ includes.
12697 * gdb_usleep.c: Fix common/ includes.
12698 * gdb_select.h: Fix common/ includes.
12699 * gdb_bfd.c: Fix common/ includes.
12700 * gcore.c: Fix common/ includes.
12701 * fork-child.c: Fix common/ includes.
12702 * findvar.c: Fix common/ includes.
12703 * fbsd-nat.c: Fix common/ includes.
12704 * event-top.c: Fix common/ includes.
12705 * event-loop.c: Fix common/ includes.
12706 * dwarf2read.c: Fix common/ includes.
12707 * dwarf2loc.c: Fix common/ includes.
12708 * dwarf2-frame.c: Fix common/ includes.
12709 * dwarf-index-cache.c: Fix common/ includes.
12710 * dtrace-probe.c: Fix common/ includes.
12711 * disasm-selftests.c: Fix common/ includes.
12712 * defs.h: Fix common/ includes.
12713 * csky-tdep.c: Fix common/ includes.
12714 * cp-valprint.c: Fix common/ includes.
12715 * cp-support.h: Fix common/ includes.
12716 * cp-support.c: Fix common/ includes.
12717 * corelow.c: Fix common/ includes.
12718 * completer.h: Fix common/ includes.
12719 * completer.c: Fix common/ includes.
12720 * compile/compile.c: Fix common/ includes.
12721 * compile/compile-loc2c.c: Fix common/ includes.
12722 * compile/compile-cplus-types.c: Fix common/ includes.
12723 * compile/compile-cplus-symbols.c: Fix common/ includes.
12724 * command.h: Fix common/ includes.
12725 * cli/cli-dump.c: Fix common/ includes.
12726 * cli/cli-cmds.c: Fix common/ includes.
12727 * charset.c: Fix common/ includes.
12728 * build-id.c: Fix common/ includes.
12729 * btrace.h: Fix common/ includes.
12730 * btrace.c: Fix common/ includes.
12731 * breakpoint.h: Fix common/ includes.
12732 * breakpoint.c: Fix common/ includes.
12733 * ax.h:
12734 (enum agent_op): Fix common/ includes.
12735 * ax-general.c (struct aop_map): Fix common/ includes.
12736 * ax-gdb.c: Fix common/ includes.
12737 * auxv.c: Fix common/ includes.
12738 * auto-load.c: Fix common/ includes.
12739 * arm-tdep.c: Fix common/ includes.
12740 * arch/riscv.c: Fix common/ includes.
12741 * arch/ppc-linux-common.c: Fix common/ includes.
12742 * arch/i386.c: Fix common/ includes.
12743 * arch/arm.c: Fix common/ includes.
12744 * arch/arm-linux.c: Fix common/ includes.
12745 * arch/arm-get-next-pcs.c: Fix common/ includes.
12746 * arch/amd64.c: Fix common/ includes.
12747 * arch/aarch64.c: Fix common/ includes.
12748 * arch/aarch64-insn.c: Fix common/ includes.
12749 * arch-utils.c: Fix common/ includes.
12750 * amd64-windows-tdep.c: Fix common/ includes.
12751 * amd64-tdep.c: Fix common/ includes.
12752 * amd64-sol2-tdep.c: Fix common/ includes.
12753 * amd64-obsd-tdep.c: Fix common/ includes.
12754 * amd64-nbsd-tdep.c: Fix common/ includes.
12755 * amd64-linux-tdep.c: Fix common/ includes.
12756 * amd64-linux-nat.c: Fix common/ includes.
12757 * amd64-fbsd-tdep.c: Fix common/ includes.
12758 * amd64-fbsd-nat.c: Fix common/ includes.
12759 * amd64-dicos-tdep.c: Fix common/ includes.
12760 * amd64-darwin-tdep.c: Fix common/ includes.
12761 * agent.c: Fix common/ includes.
12762 * ada-lang.h: Fix common/ includes.
12763 * ada-lang.c: Fix common/ includes.
12764 * aarch64-tdep.c: Fix common/ includes.
12765
2f5c153e
TT
127662019-01-25 Tom Tromey <tom@tromey.com>
12767
12768 * common/create-version.sh: Use common/version.h.
12769
adc6a863
PA
127702019-01-24 Pedro Alves <palves@redhat.com>
12771
12772 * infrun.c (signal_stop, signal_print, signal_program)
12773 (signal_catch, signal_pass): Now arrays instead of pointers.
12774 (update_signals_program_target, do_target_resume)
12775 (signal_catch_update, handle_command, _initialize_infrun): Adjust.
12776 * linux-nat.c (linux_nat_target::pass_signals)
12777 (linux_nat_target::create_inferior, linux_nat_target::attach):
12778 Adjust.
12779 * linux-nat.h (linux_nat_target::pass_signals): Adjust.
12780 * nto-procfs.c (nto_procfs_target::pass_signals): Adjust.
12781 * procfs.c (procfs_target::pass_signals): Adjust.
12782 * record-full.c (record_full_target::resume): Adjust.
12783 * remote.c (remote_target::pass_signals)
12784 (remote_target::program_signals): Adjust.
12785 * target-debug.h (target_debug_print_signals): Now takes a
12786 gdb::array_view as parameter. Adjust.
12787 * target.h (target_ops) <pass_signals, program_signals>: Replace
12788 pointer and length parameters with gdb::array_view.
12789 (target_pass_signals, target_program_signals): Likewise.
12790 * target-delegates.c: Regenerate.
12791
3046d67a
PA
127922019-01-24 Pedro Alves <palves@redhat.com>
12793
12794 * common/forward-scope-exit.h
12795 (forward_scope_exit::forward_scope_exit): Pass arguments to
12796 m_bind_function directly, instead of creating a std::bind and
12797 copying that.
12798
353229bf
AH
127992019-01-24 Alan Hayward <alan.hayward@arm.com>
12800
12801 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
12802 for static members.
12803 (pass_in_v_vfp_candidate): Likewise.
12804
311dc83a
TT
128052019-01-23 Tom Tromey <tom@tromey.com>
12806 Pedro Alves <palves@redhat.com>
12807
12808 * regcache.c (class regcache_invalidator): Remove.
12809 (regcache::raw_write): Use make_scope_exit.
12810
296bd123
TT
128112019-01-23 Tom Tromey <tom@tromey.com>
12812
12813 * ui-out.h (class ui_out_emit_type): Update comment.
12814
979a0d13
TT
128152019-01-23 Tom Tromey <tom@tromey.com>
12816
12817 * infrun.c (fetch_inferior_event): Update comment.
12818
d238133d
TT
128192019-01-23 Tom Tromey <tom@tromey.com>
12820 Pedro Alves <palves@redhat.com>
12821
12822 * infrun.c (reinstall_readline_callback_handler_cleanup): Remove
12823 parameter.
12824 (fetch_inferior_event): Use SCOPE_EXIT.
12825
12826
9885e6bb
TT
128272019-01-23 Tom Tromey <tom@tromey.com>
12828 Pedro Alves <palves@redhat.com>
12829
12830 * infrun.c (disable_thread_events): Delete.
12831 (stop_all_threads): Use SCOPE_EXIT.
12832
286526c1
TT
128332019-01-23 Tom Tromey <tom@tromey.com>
12834 Pedro Alves <palves@redhat.com>
12835
12836 * symfile.c: Include forward-scope-exit.h.
12837 (clear_symtab_users_cleanup): Replace forward declaration with
12838 a FORWARD_SCOPE_EXIT.
12839 (syms_from_objfile_1): Use the forward_scope_exit and
12840 gdb::optional instead of cleanup_function.
12841 (reread_symbols): Use the forward_scope_exit instead of
12842 cleanup_function.
12843 (clear_symtab_users_cleanup): Remove function.
12844
1db93f14
TT
128452019-01-23 Tom Tromey <tom@tromey.com>
12846 Pedro Alves <palves@redhat.com>
12847
12848 * linux-nat.c: Include scope-exit.h.
12849 (cleanup_target_stop): Remove.
12850 (linux_nat_target::static_tracepoint_markers_by_strid): Use
12851 SCOPE_EXIT.
12852
2cc83d1e
TT
128532019-01-23 Tom Tromey <tom@tromey.com>
12854 Pedro Alves <palves@redhat.com>
12855
12856 * infcall.c (cleanup_delete_std_terminate_breakpoint): Remove.
12857 (call_function_by_hand_dummy): Use SCOPE_EXIT.
12858
694c6bf5
TT
128592019-01-23 Tom Tromey <tom@tromey.com>
12860 Andrew Burgess <andrew.burgess@embecosm.com>
12861 Pedro Alves <palves@redhat.com>
12862
12863 * infrun.c (fetch_inferior_event): Use scope_exit.
12864 * utils.h (make_bpstat_clear_actions_cleanup): Don't declare.
12865 * top.c (execute_command): Use scope_exit.
12866 * breakpoint.c (bpstat_do_actions): Use scope_exit.
12867 * utils.c (do_bpstat_clear_actions_cleanup)
12868 (make_bpstat_clear_actions_cleanup): Remove.
12869
4c41382a
TT
128702019-01-23 Tom Tromey <tom@tromey.com>
12871 Pedro Alves <palves@redhat.com>
12872
12873 * infrun.c: Include "common/scope-exit.h"
12874 (delete_just_stopped_threads_infrun_breakpoints_cleanup): Remove.
12875 (wait_for_inferior): Use SCOPE_EXIT.
12876 (fetch_inferior_event): Use scope_exit.
12877
89f8fb50
TT
128782019-01-23 Tom Tromey <tom@tromey.com>
12879 Pedro Alves <palves@redhat.com>
12880
12881 * breakpoint.c (create_breakpoint): Remove cleanup.
12882
5419bdae
TT
128832019-01-23 Tom Tromey <tom@tromey.com>
12884 Andrew Burgess <andrew.burgess@embecosm.com>
12885 Pedro Alves <palves@redhat.com>
12886
e587ef42
PA
128872019-01-23 Pedro Alves <palves@redhat.com>
12888
12889 * gdbarch-selftests.c (struct on_exit): Use SCOPE_EXIT.
12890
77f0e74c
PA
128912019-01-23 Pedro Alves <palves@redhat.com>
12892 Andrew Burgess <andrew.burgess@embecosm.com>
12893
12894 * gdbthread.h: Include "common/forward-scope-exit.h".
12895 (scoped_finish_thread_state): Redefine custom class in terms of
12896 forward_scope_exit.
12897
5b9b3e53
PA
128982019-01-23 Pedro Alves <palves@redhat.com>
12899 Andrew Burgess <andrew.burgess@embecosm.com>
12900
12901 * common/forward-scope-exit.h: New file.
12902
54b65c9b
PA
129032019-01-23 Pedro Alves <palves@redhat.com>
12904 Andrew Burgess <andrew.burgess@embecosm.com>
12905 Tom Tromey <tom@tromey.com>
12906
12907 * common/scope-exit.h: New file.
12908
cf08fb29
PA
129092019-01-23 Pedro Alves <palves@redhat.com>
12910
12911 * common/preprocessor.h (ESC): Rename to ...
12912 (ESC_PARENS): ... this.
12913 * common/valid-expr.h (CHECK_VALID_EXPR_1, CHECK_VALID_EXPR_2)
12914 (CHECK_VALID_EXPR_3, CHECK_VALID_EXPR_4): Adjust.
12915
ae73e2e2
TT
129162019-01-23 Tom Tromey <tom@tromey.com>
12917
12918 * language.h (class scoped_switch_to_sym_language_if_auto):
12919 Initialize m_lang in both cases.
12920
6594e122
AH
129212019-01-23 Alan Hayward <alan.hayward@arm.com>
12922
12923 * nat/aarch64-linux.c (aarch64_linux_new_thread): Replace XNEW
12924 with XCNEW.
12925
a7c9855d
TT
129262019-01-22 Tom Tromey <tom@tromey.com>
12927
12928 * corelow.c: Do not include sys/file.h.
12929
93cc1d53
TT
129302019-01-22 Tom Tromey <tom@tromey.com>
12931
12932 * tui/tui-wingeneral.h: Include gdb_curses.h.
12933
38561778
TT
129342019-01-22 Tom Tromey <tom@tromey.com>
12935
12936 * source-cache.h (class source_cache) <get_source_lines,
12937 get_plain_source_lines, extract_lines>: Rename "lines" parameter.
12938
37b3ab5b
TT
129392019-01-22 Tom Tromey <tom@tromey.com>
12940
12941 * remote-fileio.h (struct remote_target): Declare.
12942
3fabc016
TT
129432019-01-22 Tom Tromey <tom@tromey.com>
12944
12945 * python/py-arch.c: Do not include py-ref.h.
12946 * python/py-bpevent.c: Do not include py-ref.h.
12947 * python/py-cmd.c: Do not include py-ref.h.
12948 * python/py-continueevent.c: Do not include py-ref.h.
12949 * python/py-event.h: Do not include py-ref.h.
12950 * python/py-evtregistry.c: Do not include py-ref.h.
12951 * python/py-finishbreakpoint.c: Do not include py-ref.h.
12952 * python/py-frame.c: Do not include py-ref.h.
12953 * python/py-framefilter.c: Do not include py-ref.h.
12954 * python/py-function.c: Do not include py-ref.h.
12955 * python/py-infevents.c: Do not include py-ref.h.
12956 * python/py-linetable.c: Do not include py-ref.h.
12957 * python/py-objfile.c: Do not include py-ref.h.
12958 * python/py-param.c: Do not include py-ref.h.
12959 * python/py-prettyprint.c: Do not include py-ref.h.
12960 * python/py-progspace.c: Do not include py-ref.h.
12961 * python/py-symbol.c: Do not include py-ref.h.
12962 * python/py-symtab.c: Do not include py-ref.h.
12963 * python/py-type.c: Do not include py-ref.h.
12964 * python/py-unwind.c: Do not include py-ref.h.
12965 * python/py-utils.c: Do not include py-ref.h.
12966 * python/py-value.c: Do not include py-ref.h.
12967 * python/py-varobj.c: Do not include py-ref.h.
12968 * python/py-xmethods.c: Do not include py-ref.h.
12969 * python/python.c: Do not include py-ref.h.
12970 * varobj.c: Do not include py-ref.h.
12971
6b4d7774
TT
129722019-01-22 Tom Tromey <tom@tromey.com>
12973
12974 * objfiles.h (struct objfile_per_bfd_storage): Use "struct"
12975 keyword for bcache.
12976
7af7e9b5
TT
129772019-01-22 Tom Tromey <tom@tromey.com>
12978
12979 * compile/compile-cplus-types.c: Remove a comment by #include.
12980
951d1049
TT
129812019-01-22 Tom Tromey <tom@tromey.com>
12982
12983 * compile/gcc-c-plugin.h: Include compile-internal.h.
12984
d65d5705
TT
129852019-01-22 Tom Tromey <tom@tromey.com>
12986
12987 * stabsread.c (EXTERN): Do not define.
12988 (symnum, next_symbol_text_func, processing_gcc_compilation)
12989 (within_function, global_sym_chain, global_stabs)
12990 (previous_stab_code, this_object_header_files)
12991 (n_this_object_header_files)
12992 (n_allocated_this_object_header_files): Define.
12993 * stabsread.h (EXTERN): Never define. Use "extern".
12994
b6fb1ee5
PW
129952019-01-22 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12996
12997 * event-top.c (handle_line_of_input): use unique_xmalloc_ptr for
12998 history_value.
12999
be6d4f74
TT
130002019-01-21 Tom Tromey <tom@tromey.com>
13001
13002 * ui-out.c: Fix includes.
13003 * tui/tui-source.c: Fix includes.
13004 * target.c: Fix includes.
13005 * remote.c: Fix includes.
13006 * regcache.c: Fix includes.
13007 * python/py-block.c: Fix includes.
13008 * printcmd.c: Fix includes.
13009 * or1k-tdep.c: Fix includes.
13010 * mi/mi-main.c: Fix includes.
13011 * m32r-tdep.c: Fix includes.
13012 * csky-tdep.c: Fix includes.
13013 * compile/compile-cplus-types.c: Fix includes.
13014 * cli/cli-interp.c: Fix includes.
13015
73021deb
AH
130162019-01-21 Alan Hayward <alan.hayward@arm.com>
13017
13018 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
13019 for padding.
13020
7932255d
TT
130212019-01-16 Tom Tromey <tom@tromey.com>
13022
13023 * objfiles.h (struct minimal_symbol_iterator): Rename. Move
13024 earlier.
13025 (struct objfile) <msymbols_range>: Move from top level.
13026 <msymbols>: New method.
13027 (class objfile_msymbols): Remove.
13028 * symtab.c (default_collect_symbol_completion_matches_break_on):
13029 Update.
13030 * symmisc.c (dump_msymbols): Update.
13031 * stabsread.c (scan_file_globals): Update.
13032 * objc-lang.c (info_selectors_command, info_classes_command)
13033 (find_methods): Update.
13034 * minsyms.c (find_solib_trampoline_target): Update.
13035 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Update.
13036 * coffread.c (coff_symfile_read): Update.
13037 * ada-lang.c (ada_lookup_simple_minsym)
13038 (ada_collect_symbol_completion_matches): Update.
13039
604b1bfb
TT
130402019-01-16 Tom Tromey <tom@tromey.com>
13041
13042 * objfiles.h (class objfile_msymbols) <iterator>: Change argument
13043 type. Remove no-argument constructor.
13044 <iterator::operator++>: Simplify.
13045 <begin>: Update.
13046 <end>: Use minimal_symbol_count.
13047
f252c6d5
TT
130482019-01-16 Tom Tromey <tom@tromey.com>
13049
13050 * objfiles.h (struct objfile) <psymtabs>: New method.
13051 (class objfile_psymtabs): Remove.
13052 * psymtab.h (class psymtab_storage) <partial_symtab_range>: New
13053 typedef.
13054 <range>: New method.
13055 (require_partial_symbols): Change return type.
13056 * psymtab.c (require_partial_symbols)
13057 (psym_expand_symtabs_matching): Update.
13058 * mdebugread.c (parse_partial_symbols): Update.
13059 * dbxread.c (dbx_end_psymtab): Update.
13060
b669c953
TT
130612019-01-15 Tom Tromey <tom@tromey.com>
13062
13063 * symtab.c (lookup_objfile_from_block)
13064 (lookup_symbol_in_objfile_symtabs)
13065 (basic_lookup_transparent_type_1, find_pc_sect_compunit_symtab)
13066 (find_line_symtab, info_sources_command)
13067 (default_collect_symbol_completion_matches_break_on)
13068 (make_source_files_completion_list): Update.
13069 * symmisc.c (print_objfile_statistics, dump_objfile)
13070 (maintenance_print_symbols, maintenance_info_symtabs)
13071 (maintenance_check_symtabs, maintenance_info_line_tables):
13072 Update.
13073 * source.c (select_source_symtab)
13074 (forget_cached_source_info_for_objfile): Update.
13075 * objfiles.h (class objfile_compunits): Remove.
13076 (struct objfile) <compunits_range>: New typedef.
13077 (compunits): New method.
13078 * objfiles.c (objfile_relocate1): Update.
13079 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
13080 * maint.c (count_symtabs_and_blocks): Update.
13081 * linespec.c (iterate_over_all_matching_symtabs): Update.
13082 * cp-support.c (add_symbol_overload_list_qualified): Update.
13083 * coffread.c (coff_symtab_read): Update.
13084 * ada-lang.c (add_nonlocal_symbols)
13085 (ada_collect_symbol_completion_matches)
13086 (ada_add_global_exceptions): Update.
13087
7e955d83
TT
130882019-01-15 Tom Tromey <tom@tromey.com>
13089
13090 * progspace.h (program_space) <objfiles_safe_range>: New
13091 typedef.
13092 <objfiles_safe>: New method.
13093 * objfiles.h (class all_objfiles_safe): Remove.
13094 * objfiles.c (free_all_objfiles, objfile_purge_solibs): Update.
13095 * jit.c (jit_inferior_exit_hook): Update.
13096
2030c079
TT
130972019-01-17 Tom Tromey <tom@tromey.com>
13098
13099 * progspace.h (program_space) <objfiles_range>: New typedef.
13100 <objfiles>: New method.
13101 <objfiles_head>: Rename from objfiles.
13102 (object_files): Update.
13103 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Update.
13104 * guile/scm-pretty-print.c
13105 (ppscm_find_pretty_printer_from_objfiles): Update.
13106 * guile/scm-objfile.c (gdbscm_objfiles): Update.
13107 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers):
13108 Update.
13109 * python/py-progspace.c (pspy_get_objfiles): Update.
13110 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
13111 Update.
13112 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
13113 (objfpy_lookup_objfile_by_build_id): Update.
13114 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
13115 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
13116 Update.
13117 * symtab.c (iterate_over_symtabs, matching_obj_sections)
13118 (expand_symtab_containing_pc, lookup_objfile_from_block)
13119 (lookup_static_symbol, basic_lookup_transparent_type)
13120 (find_pc_sect_compunit_symtab, find_symbol_at_address)
13121 (find_line_symtab, info_sources_command)
13122 (default_collect_symbol_completion_matches_break_on)
13123 (make_source_files_completion_list, find_main_name): Update.
13124 * symmisc.c (print_symbol_bcache_statistics)
13125 (print_objfile_statistics, maintenance_print_symbols)
13126 (maintenance_print_msymbols, maintenance_print_objfiles)
13127 (maintenance_info_symtabs, maintenance_check_symtabs)
13128 (maintenance_expand_symtabs, maintenance_info_line_tables):
13129 Update.
13130 * symfile.c (remove_symbol_file_command, overlay_invalidate_all)
13131 (find_pc_overlay, find_pc_mapped_section, list_overlays_command)
13132 (map_overlay_command, unmap_overlay_command)
13133 (simple_overlay_update, expand_symtabs_matching)
13134 (map_symbol_filenames): Update.
13135 * symfile-debug.c (set_debug_symfile): Update.
13136 * spu-tdep.c (spu_overlay_update, spu_objfile_from_frame):
13137 Update.
13138 * source.c (select_source_symtab, forget_cached_source_info):
13139 Update.
13140 * solib.c (solib_read_symbols): Update.
13141 * solib-spu.c (append_ocl_sos): Update.
13142 * psymtab.c (maintenance_print_psymbols)
13143 (maintenance_info_psymtabs, maintenance_check_psymtabs): Update.
13144 * probe.c (parse_probes_in_pspace, find_probe_by_pc): Update.
13145 * printcmd.c (info_symbol_command): Update.
13146 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created):
13147 Update.
13148 * objfiles.h (class all_objfiles): Remove.
13149 * objfiles.c (have_partial_symbols, have_full_symbols)
13150 (have_minimal_symbols, qsort_cmp, update_section_map)
13151 (shared_objfile_contains_address_p)
13152 (default_iterate_over_objfiles_in_search_order): Update.
13153 * objc-lang.c (info_selectors_command, info_classes_command)
13154 (find_methods): Update.
13155 * minsyms.c (find_solib_trampoline_target): Update.
13156 * maint.c (maintenance_info_sections)
13157 (maintenance_translate_address, count_symtabs_and_blocks):
13158 Update.
13159 * main.c (captured_main_1): Update.
13160 * linux-thread-db.c (try_thread_db_load_from_pdir)
13161 (has_libpthread): Update.
13162 * linespec.c (iterate_over_all_matching_symtabs)
13163 (search_minsyms_for_name): Update.
13164 * jit.c (jit_find_objf_with_entry_addr): Update.
13165 * hppa-tdep.c (find_unwind_entry)
13166 (hppa_lookup_stub_minimal_symbol): Update.
13167 * gcore.c (gcore_create_callback, objfile_find_memory_regions):
13168 Update.
13169 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
13170 (elf_gnu_ifunc_resolve_by_got): Update.
13171 * dwarf2-frame.c (dwarf2_frame_find_fde): Update.
13172 * dwarf-index-write.c (save_gdb_index_command): Update.
13173 * cp-support.c (add_symbol_overload_list_qualified): Update.
13174 * breakpoint.c (create_overlay_event_breakpoint)
13175 (create_longjmp_master_breakpoint)
13176 (create_std_terminate_master_breakpoint)
13177 (create_exception_master_breakpoint): Update.
13178 * blockframe.c (find_pc_partial_function): Update.
13179 * ada-lang.c (ada_lookup_simple_minsym, add_nonlocal_symbols)
13180 (ada_collect_symbol_completion_matches)
13181 (ada_add_global_exceptions): Update.
13182
776489e0
TT
131832019-01-17 Tom Tromey <tom@tromey.com>
13184
13185 * solib-target.c (lm_info_target_p): Remove typedef. Don't
13186 declare VEC.
13187 (solib_target_parse_libraries): Change return type.
13188 (library_list_start_segment, library_list_start_section)
13189 (library_list_end_library, library_list_start_library); Update.
13190 (solib_target_free_library_list): Remove.
13191 (solib_target_parse_libraries): Remove cleanup. Change return
13192 type.
13193 (solib_target_current_sos): Update.
13194
6471e7d2
TT
131952019-01-17 Tom Tromey <tromey@bapiya>
13196
13197 * valprint.c: Replace "the the" with "the".
13198 * symtab.c: Replace "the the" with "the".
13199 * solib.c: Replace "the the" with "the".
13200 * solib-dsbt.c: Replace "the the" with "the".
13201 * linespec.c: Replace "the the" with "the".
13202 * dwarf2loc.h: Replace "the the" with "the".
13203 * amd64-windows-tdep.c: Replace "the the" with "the".
13204 * aarch64-tdep.c: Replace "the the" with "the".
13205
c24bdb02
KS
132062019-01-16 Keith Seitz <keiths@redhat.com>
13207
13208 PR gdb/23773
13209 * dwarf2read.c (dwarf2_cu) <ancestor>: New field.
13210 <builder>: Rename to ..
13211 <m_builder>: ... this and make private.
13212 (dwarf2_cu::get_builder): New method. Change all users of
13213 `builder' to use this method.
13214 (dwarf2_start_symtab): Move to ...
13215 (dwarf2_cu::start_symtab): ... here. Update all callers
13216 (setup_type_unit_groups): Move to ...
13217 (dwarf2_cu::setup_type_unit_groups): ... here. Update all
13218 callers.
13219 (dwarf2_cu::reset_builder): New method.
13220 (process_full_compunit, process_full_type_unit): Use
13221 dwarf2_cu::reset_builder.
13222 (follow_die_offset): Record the ancestor CU if it is different
13223 from the followed DIE's CU.
13224 (follow_die_sig_1): Likewise.
13225
8d64371b
TT
132262019-01-15 Tom Tromey <tom@tromey.com>
13227
13228 * remote.c (class remote_state) <buf>: Now a char_vector.
13229 <buf_size>: Remove.
13230 (remote_target::getpkt): Change type of buf. Remove sizeof_buf
13231 parameter.
13232 (remote_target::getpkt_or_notif_sane_1)
13233 (remote_target::getpkt_sane)
13234 (remote_target::getpkt_or_notif_sane): Likewise.
13235 (class remote_target) <putpkt>: New overload.
13236 (remote_target::read_frame): Change type of "buf_p". Remove
13237 sizeof_p parameter.
13238 (packet_ok): New overload.
13239 (packet_check_result): New overload.
13240 Update all uses.
13241
bb277751
TT
132422019-01-14 Tom Tromey <tom@tromey.com>
13243
13244 * remote-notif.c (handle_notification, remote_notif_ack)
13245 (remote_notif_parse): Make "buf" const.
13246 * remote-notif.h (struct notif_client) <parse, ack>: Make "buf"
13247 const.
13248 (remote_notif_parse, remote_notif_ack, handle_notification):
13249 Likewise.
13250 * remote.c (remote_notif_stop_parse): Make "buf" const.
13251 (remote_target::remote_parse_stop_reply): Make "buf" const.
13252 (remote_notif_stop_ack): Make "buf" const.
13253
05be00a8
TT
132542019-01-14 Tom Tromey <tom@tromey.com>
13255
13256 * remote.c (remote_console_output): Make parameter const.
13257
491adeca
TT
132582019-01-14 Tom Tromey <tom@tromey.com>
13259
13260 * target-debug.h (target_debug_print_signals): Constify.
13261 * nto-procfs.c (nto_procfs_target::pass_signals): Update.
13262 * procfs.c (procfs_target::pass_signals): Update.
13263 * linux-nat.c (linux_nat_target::pass_signals): Update.
13264 * linux-nat.h (class linux_nat_target) <pass_signals>: Update.
13265 * target-delegates.c: Rebuild.
13266 * remote.c (remote_target::program_signals): Update.
13267 (remote_target::pass_signals): Update.
13268 * target.c (target_pass_signals): Constify argument.
13269 (target_program_signals): Likewise.
13270 * target.h (struct target_ops) <pass_signals, program_signals>:
13271 Constify argument.
13272 (target_pass_signals, target_program_signals): Constify argument.
13273
bbd94648
TT
132742019-01-14 Tom Tromey <tom@tromey.com>
13275
13276 PR tui/28819:
13277 * tui/tui-io.c (gdb_wgetch): Print \r when needed.
13278
6f072a10
PFC
132792019-01-14 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
13280
13281 * ppc-tdep.h (struct gdbarch_tdep) <ppc_v0_alias_regnum>: New
13282 field.
13283 * rs6000-tdep.c: Include reggroups.h.
13284 (IS_V_ALIAS_PSEUDOREG): Define.
13285 (rs6000_register_name): Return names for the "vX" aliases.
13286 (rs6000_pseudo_register_type): Return type for the "vX" aliases.
13287 (rs6000_pseudo_register_reggroup_p): Restore. Handle "vX"
13288 aliases. Call default_register_reggroup_p for all other
13289 pseudo-registers.
13290 (v_alias_pseudo_register_read, v_alias_pseudo_register_write):
13291 New functions.
13292 (rs6000_pseudo_register_read, rs6000_pseudo_register_write):
13293 Handle "vX" aliases.
13294 (v_alias_pseudo_register_collect): New function.
13295 (rs6000_ax_pseudo_register_collect): Handle "vX" aliases.
13296 (rs6000_gdbarch_init): Initialize "vX" aliases as
13297 pseudo-registers. Restore registration of
13298 rs6000_pseudo_register_reggroup_p with
13299 set_tdesc_pseudo_register_reggroup_p.
13300
1a782351
MF
133012019-01-13 Max Filippov <jcmvbkbc@gmail.com>
13302
13303 * xtensa-linux-tdep.c (xtensa_linux_init_abi): Update
13304 tdep->num_pseudo_regs. Add calls to set_gdbarch_num_regs and
13305 set_gdbarch_num_pseudo_regs.
13306
d73cff18
PW
133072019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13308
13309 * cli/cli-style.h (class cli_style_option): <add_setshow_commands>
13310 Remove arg prefixname, add do_set and do_show.
13311 Add member functions set_list and show_list.
13312 * cli/cli-style.c (class cli_style_option): Update accordingly.
13313 (style_set_list): Move to file scope.
13314 (style_show_list): Likewise.
13315 (set_style): Call help_list.
13316 (show_style): Call cmd_show_list.
13317 (_initialize_cli_style): New macro STYLE_ADD_SETSHOW_COMMANDS.
13318 Update to use the new macro.
13319
60a90376
JB
133202019-10-12 Joel Brobecker <brobecker@adacore.com>
13321
13322 * ada-lang.c (_initialize_ada_language): Expand the help text
13323 for the "catch exception" command.
13324
9d7c67bf
PW
133252019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13326
13327 * symtab.c (matching_obj_sections): Initialize obj,
13328 declare it closer to its usage.
13329
7cf47dc4
TT
133302019-01-10 Tom Tromey <tom@tromey.com>
13331
13332 * thread-iter.h (inf_threads_iterator): Use next_iterator.
13333 (basic_inf_threads_range): Remove.
13334 (inf_threads_range, inf_non_exited_threads_range)
13335 (safe_inf_threads_range): Use next_adapter.
13336
d3cb6808
KS
133372019-01-10 Keith Seitz <keiths@redhat.com>
13338
13339 PR gdb/23712
13340 PR symtab/23010
13341 * dwarf2read.c (dw2_add_symbol_to_list): Remove.
13342 (fixup_go_packaging, new_symbol): Use add_symbol_to_list.
13343
63a20375
KS
133442019-01-10 Keith Seitz <keiths@redhat.com>
13345
13346 PR gdb/23712
13347 PR symtab/23010
13348 * dictionary.c (pending_to_vector): Remove.
13349 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
13350 Remove _1 suffix, replacing functions of the same name. Update
13351 all callers.
13352 (dict_create_hashed, dict_create_hashed_expandable)
13353 (dict_create_linear, dict_create_linear_expandable, dict_free)
13354 (dict_add_symbol, dict_add_pending, dict_size, dict_empty):
13355 Make functions static.
13356
b026f593
KS
133572019-01-10 Keith Seitz <keiths@redhat.com>
13358
13359 PR gdb/23712
13360 PR symtab/23010
13361 * dictionary.h (struct dictionary): Replace declaration with
13362 multidictionary.
13363 (dict_create_hashed, dict_create_hashed_expandable)
13364 (dict_create_linear, dict_create_linear_expandable)
13365 (dict_free, dict_add_symbol, dict_add_pending, dict_empty)
13366 (dict_iterator_first, dict_iterator_next, dict_iter_match_first)
13367 (dict_iter_match_next, dict_size): Rename to "mdict_" versions
13368 taking multidictionary argument.
13369 [ALL_DICT_SYMBOLS]: Update for multidictionary.
13370 * block.h (struct block) <dict>: Change to multidictionary
13371 and rename `multidict'.
13372 * block.c, buildsym.c, jit.c, mdebugread.c, objfiles.c,
13373 symmisc.c: Update all dictionary references to multidictionary.
13374
c7748ee9
KS
133752019-01-10 Keith Seitz <keiths@redhat.com>
13376
13377 PR gdb/23712
13378 PR symtab/23010
13379 * dictionary.c: Include unordered_map.
13380 (pending_to_vector): New function.
13381 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
13382 Rewrite the non-"_1" functions to take vector instead
13383 of linked list.
13384 (dict_create_hashed, dict_create_linear, dict_add_pending): Use the
13385 "new" _1 versions of the same name.
13386 (multidictionary): Define.
13387 (std::hash<enum language): New definition.
13388 (collate_pending_symbols_by_language, mdict_create_hashed)
13389 (mdict_create_hashed_expandable, mdict_create_linear)
13390 (mdict_create_linear_expandable, mdict_free)
13391 (find_language_dictionary, create_new_language_dictionary)
13392 (mdict_add_symbol, mdict_add_pending, mdict_iterator_first)
13393 (mdict_iterator_next, mdict_iter_match_first, mdict_iter_match_next)
13394 (mdict_size, mdict_empty): New functions.
13395 * dictionary.h (mdict_iterator): Define.
13396
67aa1f3c
PA
133972019-01-10 Pedro Alves <palves@redhat.com>
13398
13399 * breakpoint.c (read_uploaded_action)
13400 (create_tracepoint_from_upload): Adjust to use
13401 gdb::unique_xmalloc_ptr.
13402 * ctf.c (ctf_write_uploaded_tp):
13403 (SET_ARRAY_FIELD): Use emplace_back.
13404 (SET_STRING_FIELD): Adjust to use gdb::unique_xmalloc_ptr.
13405 * tracefile-tfile.c (tfile_write_uploaded_tp):
13406 * tracepoint.c (parse_tracepoint_definition): Adjust to use
13407 gdb::unique_xmalloc_ptr.
13408 * tracepoint.h (struct uploaded_tp) <cond, actions, step_actions,
13409 at_string, cond_string, cmd_strings>: Replace char pointers
13410 with gdb::unique_xmalloc_ptr.
13411
2f667667
PA
134122019-01-10 Pedro Alves <palves@redhat.com>
13413
13414 * solib-target.c (library_list_start_library): Don't xstrdup name.
13415
36cb7237
PA
134162019-01-10 Pedro Alves <palves@redhat.com>
13417
13418 * mdebugread.c (parse_partial_symbols): Use
13419 gdb::unique_xmalloc_ptr to manage heap-allocated 'stabsstring'.
13420
da584958
AB
134212019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
13422
13423 * linux-fork.c (scoped_switch_fork_info)
13424 <~scoped_switch_fork_info>: Fix incorrect variable name.
13425
1ef8573c
AB
134262019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
13427
13428 * linux-fork.c (scoped_switch_fork_info)
13429 <scoped_switch_fork_info>: Make explicit.
13430 <~scoped_switch_fork_info>: Wrap core in TRY/CATCH.
13431
8d7bcccb
TT
134322019-01-10 Tom Tromey <tom@tromey.com>
13433
13434 * objfiles.h (objfile::reset_psymtabs): Update.
13435 * objfiles.c (objfile::objfile): Update.
13436 * psymtab.h (psymtab_storage::obstack): Update.
13437 (psymtab_storage::m_obstack): Use gdb::optional.
13438 (class psymtab_storage): Update comment. Remove objfile
13439 parameter.
13440 * psymtab.c (psymtab_storage::psymtab_storage): Update.
13441
b596a3c7
TT
134422019-01-10 Tom Tromey <tom@tromey.com>
13443
13444 * psymtab.h (psymtab_storage::allocate_psymtab): New method.
13445 <free_psymtabs>: Now private.
13446 * psymtab.c (psymtab_storage::allocate_psymtab): Implement.
13447 (allocate_psymtab): Use new method.
13448
a9342b62
TT
134492019-01-10 Tom Tromey <tom@tromey.com>
13450
13451 * xcoffread.c (xcoff_end_psymtab): Use allocate_dependencies.
13452 * psymtab.h (psymtab_storage::allocate_dependencies): New method.
13453 * mdebugread.c (parse_partial_symbols): Use
13454 allocate_dependencies.
13455 * dwarf2read.c (dwarf2_create_include_psymtab): Use
13456 allocate_dependencies.
13457 (process_psymtab_comp_unit_reader)
13458 (build_type_psymtab_dependencies): Likewise.
13459 * dbxread.c (dbx_end_psymtab): Use allocate_dependencies.
13460
5af70966
TT
134612019-01-10 Tom Tromey <tom@tromey.com>
13462
13463 * psymtab.c (add_psymbol_to_bcache): Pass psymtab obstack to
13464 PSYMBOL_SET_LANGUAGE.
13465 (allocate_psymtab): Allocate psymtab on the psymtab obstack.
13466
5923a04c
TT
134672019-01-10 Tom Tromey <tom@tromey.com>
13468
13469 * psymtab.h (psymtab_storage::obstack): New method.
13470 <m_obstack>: Rename from obstack; now private.
13471 * psymtab.c (psymtab_storage): Update.
13472 * dwarf2read.c (create_addrmap_from_index)
13473 (create_addrmap_from_aranges, dwarf2_build_psymtabs_hard):
13474 Update.
13475
6d6a12bf
TT
134762019-01-10 Tom Tromey <tom@tromey.com>
13477
13478 * symfile.c (reread_symbols): Call objfile->reset_psymtabs.
13479 * objfiles.h (objfile::reset_psymtabs): New method.
13480
d320c2b5
TT
134812019-01-10 Tom Tromey <tom@tromey.com>
13482
13483 * symmisc.c (print_symbol_bcache_statistics): Update.
13484 (print_objfile_statistics): Update.
13485 * symfile.c (reread_symbols): Update.
13486 * psymtab.h (class psymtab_storage): New.
13487 * psymtab.c (psymtab_storage): New constructor.
13488 (~psymtab_storage): New destructor.
13489 (require_partial_symbols): Update.
13490 (ALL_OBJFILE_PSYMTABS_REQUIRED): Rewrite.
13491 (find_pc_sect_psymtab, find_pc_sect_psymbol)
13492 (match_partial_symbol, lookup_partial_symbol, dump_psymtab)
13493 (psym_dump, recursively_search_psymtabs, psym_has_symbols)
13494 (psym_find_compunit_symtab_by_address, sort_pst_symbols)
13495 (start_psymtab_common, end_psymtab_common)
13496 (add_psymbol_to_bcache, add_psymbol_to_list, init_psymbol_list)
13497 (allocate_psymtab): Update.
13498 (psymtab_storage::discard_psymtab): Rename from discard_psymtab.
13499 Update.
13500 (dump_psymtab_addrmap, maintenance_print_psymbols)
13501 (maintenance_check_psymtabs): Update.
13502 (class objfile_psymtabs): Move to objfiles.h.
13503 * psympriv.h (discard_psymtab): Now inline.
13504 (psymtab_discarder::psymtab_discarder): Update.
13505 (psymtab_discarder::~psymtab_discarder): Update.
13506 (ALL_OBJFILE_PSYMTABS): Rewrite.
13507 * objfiles.h (struct objfile) <psymtabs, psymtabs_addrmap,
13508 free_psymtabs, psymbol_cache, global_psymbols, static_psymbols>:
13509 Remove fields.
13510 <partial_symtabs>: New field.
13511 (class objfile_psymtabs): Move from psymtab.h. Update.
13512 * objfiles.c (objfile::objfile): Initialize partial_symtabs, not
13513 psymbol_cache.
13514 (objfile::~objfile): Don't destroy psymbol_cache.
13515 * mdebugread.c (parse_partial_symbols): Update.
13516 * dwarf2read.c (create_addrmap_from_index)
13517 (create_addrmap_from_aranges, dw2_find_pc_sect_compunit_symtab)
13518 (process_psymtab_comp_unit_reader, dwarf2_build_psymtabs_hard)
13519 (add_partial_subprogram, dwarf2_ranges_read): Update.
13520 * dwarf-index-write.c (write_address_map)
13521 (write_one_signatured_type, recursively_write_psymbols)
13522 (class debug_names, class debug_names, write_psymtabs_to_index):
13523 Update.
13524
1d94a5a3
TT
135252019-01-10 Tom Tromey <tom@tromey.com>
13526
13527 * symtab.h (SYMBOL_SET_NAMES): Update.
13528 (symbol_set_names): Update.
13529 (MSYMBOL_SET_NAMES): Update.
13530 * symtab.c (symbol_set_names): Change argument to be an
13531 objfile_per_bfd_storage.
13532 * psymtab.c (add_psymbol_to_bcache): Update.
13533 * psympriv.h (PSYMBOL_SET_NAMES): Take per_bfd argument.
13534
0f14768a
TT
135352019-01-10 Tom Tromey <tom@tromey.com>
13536
13537 * symtab.c (create_demangled_names_hash): Change argument to be an
13538 objfile_per_bfd_storage.
13539 (symbol_set_names): Update.
13540
6eee24ce
TT
135412019-01-10 Tom Tromey <tom@tromey.com>
13542
13543 * xcoffread.c (xcoff_initial_scan): Unconditionally call
13544 init_psymbol_list.
13545 * psymtab.c (init_psymbol_list): Do nothing if already called.
13546 * psympriv.h (init_psymbol_list): Add comment.
13547 * dwarf2read.c (dwarf2_build_psymtabs): Unconditionally call
13548 init_psymbol_list.
13549 * dbxread.c (dbx_symfile_read): Unconditionally call
13550 init_psymbol_list.
13551
75aedd27
TT
135522019-01-10 Tom Tromey <tom@tromey.com>
13553
13554 * xcoffread.c (scan_xcoff_symtab): Update.
13555 * psymtab.c (add_psymbol_to_list): Replace "list" parameter with
13556 "where".
13557 * mdebugread.c (parse_partial_symbols)
13558 (handle_psymbol_enumerators): Update.
13559 * dwarf2read.c (add_partial_symbol, load_partial_dies): Update.
13560 * dbxread.c (read_dbx_symtab): Update.
13561 * psympriv.h (psymbol_placement): New enum.
13562 (add_psymbol_to_list): Update.
13563
939652a5
TT
135642019-01-10 Tom Tromey <tom@tromey.com>
13565
13566 * xcoffread.c (xcoff_start_psymtab): Remove global_psymbols and
13567 static_psymbols parameters.
13568 (scan_xcoff_symtab): Update.
13569 * psymtab.c (start_psymtab_common): Remove global_psymbols and
13570 static_psymbols parameters.
13571 * psympriv.h (start_psymtab_common): Update.
13572 * mdebugread.c (parse_partial_symbols): Update.
13573 * dwarf2read.c (create_partial_symtab): Update.
13574 * dbxread.c (read_dbx_symtab): Update.
13575 (start_psymtab): Remove global_psymbols and static_psymbols
13576 parameters.
13577
baa62830
TT
135782019-01-10 Tom Tromey <tom@tromey.com>
13579
13580 * xcoffread.c (xcoff_end_psymtab): Remove some initializations.
13581 * psymtab.c (allocate_psymtab): Add comment.
13582 * psympriv.h (allocate_psymtab): Add comment.
13583 * dwarf2read.c (dwarf2_create_include_psymtab): Remove some
13584 initializations.
13585 * dbxread.c (dbx_end_psymtab): Remove some initializations.
13586
0e8f53ba
TT
135872019-01-10 Tom Tromey <tom@tromey.com>
13588
13589 * symfile.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
13590 Don't declare.
13591 * mipsread.c: Include mdebugread.h.
13592 * mdebugread.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
13593 Declare.
13594 * elfread.c: Include mdebugread.h.
13595
b22a7c6a
TT
135962019-01-09 Tom Tromey <tom@tromey.com>
13597
13598 * dbxread.c (dbx_end_psymtab): Use objfile_psymtabs.
13599 * mdebugread.c (parse_partial_symbols): Use objfile_psymtabs.
13600 * psymtab.c (ALL_OBJFILE_PSYMTABS_REQUIRED): Remove.
13601 (psym_map_symtabs_matching_filename, find_pc_sect_psymtab)
13602 (psym_lookup_symbol, psym_find_last_source_symtab)
13603 (psym_forget_cached_source_info, psym_print_stats)
13604 (psym_expand_symtabs_for_function, psym_expand_all_symtabs)
13605 (psym_expand_symtabs_with_fullname, psym_map_symbol_filenames)
13606 (psym_map_matching_symbols, psym_expand_symtabs_matching)
13607 (psym_find_compunit_symtab_by_address)
13608 (maintenance_print_psymbols, maintenance_info_psymtabs)
13609 (maintenance_check_psymtabs): Use ranged for.
13610 * psymtab.h (class objfile_psymtabs): New.
13611 (require_partial_symbols): Return objfile_psymtabs.
13612 * psympriv.h (ALL_OBJFILE_PSYMTABS): Remove.
13613
3b9d3ac2
TT
136142019-01-09 Tom Tromey <tom@tromey.com>
13615
13616 * symfile.c (overlay_invalidate_all, find_pc_overlay)
13617 (find_pc_mapped_section, list_overlays_command)
13618 (map_overlay_command, unmap_overlay_command)
13619 (simple_overlay_update): Use all_objfiles.
13620 * spu-tdep.c (spu_overlay_update): Use all_objfiles.
13621 * printcmd.c (info_symbol_command): Use all_objfiles.
13622 * objfiles.h (ALL_OBJSECTIONS): Remove.
13623 * maint.c (maintenance_translate_address): Use all_objfiles.
13624 * gcore.c (gcore_create_callback): Use all_objfiles.
13625 (objfile_find_memory_regions): Likewise.
13626
8b31193a
TT
136272019-01-09 Tom Tromey <tom@tromey.com>
13628
13629 * symtab.c (find_line_symtab, info_sources_command)
13630 (make_source_files_completion_list): Use objfile_compunits.
13631 * source.c (select_source_symtab): Use objfile_compunits.
13632 * objfiles.h (struct objfile): Update comment.
13633 (ALL_OBJFILES): Remove.
13634 (ALL_FILETABS): Remove.
13635 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Use
13636 objfile_compunits.
13637
d5da8b3c
TT
136382019-01-09 Tom Tromey <tom@tromey.com>
13639
13640 * symmisc.c (print_objfile_statistics, dump_objfile)
13641 (maintenance_print_symbols): Use compunit_filetabs.
13642 * source.c (forget_cached_source_info_for_objfile): Use
13643 compunit_filetabs.
13644 * objfiles.h (ALL_OBJFILE_FILETABS): Remove.
13645 (ALL_FILETABS): Use compunit_filetabs.
13646 * objfiles.c (objfile_relocate1): Use compunit_filetabs.
13647 * coffread.c (coff_symtab_read): Use compunit_filetabs.
13648
5accd1a0
TT
136492019-01-09 Tom Tromey <tom@tromey.com>
13650
13651 * symtab.h (ALL_COMPUNIT_FILETABS): Remove.
13652 (compunit_filetabs): New.
13653 * symtab.c (iterate_over_some_symtabs, find_pc_sect_line): Use
13654 compunit_filetabs.
13655 (info_sources_command, make_source_files_completion_list): Remove
13656 declaration.
13657 * symmisc.c (print_objfile_statistics, dump_objfile)
13658 (maintenance_print_symbols): Remove declaration.
13659 (maintenance_info_symtabs): Use compunit_filetabs.
13660 (maintenance_info_line_tables): Likewise.
13661 * source.c (select_source_symtab): Change local variable name.
13662 (forget_cached_source_info_for_objfile): Remove declaration.
13663 * objfiles.h (ALL_OBJFILE_FILETABS): Use compunit_filetabs.
13664 * objfiles.c (objfile_relocate1): Remove declaration.
13665 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
13666 declaration.
13667 * maint.c (count_symtabs_and_blocks): Use compunit_filetabs.
13668 * coffread.c (coff_symtab_read): Remove declaration.
13669 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
13670 compunit_filetabs.
13671
d8aeb77f
TT
136722019-01-09 Tom Tromey <tom@tromey.com>
13673
13674 * symtab.c (lookup_objfile_from_block)
13675 (find_pc_sect_compunit_symtab, search_symbols)
13676 (default_collect_symbol_completion_matches_break_on): Use
13677 objfile_compunits.
13678 * objfiles.h (ALL_COMPUNITS): Remove.
13679 * maint.c (count_symtabs_and_blocks): Use objfile_compunits.
13680 * cp-support.c (add_symbol_overload_list_qualified): Use
13681 objfile_compunits.
13682 * ada-lang.c (ada_collect_symbol_completion_matches)
13683 (ada_add_global_exceptions): Use objfile_compunits.
13684
592553c4
TT
136852019-01-09 Tom Tromey <tom@tromey.com>
13686
13687 * source.c (select_source_symtab)
13688 (forget_cached_source_info_for_objfile): Remove declaration.
13689 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
13690 declaration.
13691 * maint.c (count_symtabs_and_blocks): Remove declaration.
13692 * cp-support.c (add_symbol_overload_list_qualified): Remove
13693 declaration.
13694 * coffread.c (coff_symtab_read): Remove declaration.
13695 * symtab.c (lookup_symbol_in_objfile_symtabs)
13696 (basic_lookup_transparent_type_1): Use objfile_compunits.
13697 (lookup_objfile_from_block, find_pc_sect_compunit_symtab)
13698 (info_sources_command, search_symbols)
13699 (default_collect_symbol_completion_matches_break_on)
13700 (make_source_files_completion_list): Remove declaration.
13701 * ada-lang.c (add_nonlocal_symbols): Use objfile_compunits.
13702 (ada_collect_symbol_completion_matches)
13703 (ada_add_global_exceptions): Remove declaration.
13704 * linespec.c (iterate_over_all_matching_symtabs): Use
13705 objfile_compunits.
13706 * objfiles.h (ALL_OBJFILE_COMPUNITS): Remove.
13707 (class objfile_compunits): New.
13708 (ALL_COMPUNITS): Use objfile_compunits.
13709 * symmisc.c (print_objfile_statistics, maintenance_info_symtabs)
13710 (maintenance_check_symtabs, maintenance_info_line_tables): Use
13711 objfile_compunits.
13712 * objfiles.c (objfile_relocate1): Use objfile_compunits.
13713
5325b9bf
TT
137142019-01-09 Tom Tromey <tom@tromey.com>
13715
13716 * symtab.c (search_symbols)
13717 (default_collect_symbol_completion_matches_break_on): Use
13718 objfile_msymbols.
13719 * ada-lang.c (ada_lookup_simple_minsym)
13720 (ada_collect_symbol_completion_matches): Use objfile_msymbols.
13721 * minsyms.c (find_solib_trampoline_target): Use objfile_msymbols.
13722 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Use
13723 objfile_msymbols.
13724 * coffread.c (coff_symfile_read): Use objfile_msymbols.
13725 * symmisc.c (dump_msymbols): Use objfile_msymbols.
13726 * objc-lang.c (find_methods): Use objfile_msymbols.
13727 (info_selectors_command, info_classes_command): Likewise.
13728 * stabsread.c (scan_file_globals): Use objfile_msymbols.
13729 * objfiles.h (class objfile_msymbols): New.
13730 (ALL_OBJFILE_MSYMBOLS): Remove.
13731 (ALL_MSYMBOLS): Remove.
13732
cac85af2
TT
137332019-01-09 Tom Tromey <tom@tromey.com>
13734
13735 * common/next-iterator.h (next_adapter): Add Iterator template
13736 parameter.
13737 * objfiles.h (ALL_OBJFILES_SAFE): Remove.
13738 (class all_objfiles_safe): New.
13739 * jit.c (jit_inferior_exit_hook): Use all_objfiles_safe.
13740 * objfiles.c (put_objfile_before): Update comment.
13741 (add_separate_debug_objfile): Likewise.
13742 (free_all_objfiles): Use all_objfiles_safe.
13743 (objfile_purge_solibs): Likewise.
13744
aed57c53
TT
137452019-01-09 Tom Tromey <tom@tromey.com>
13746
13747 * symtab.c (iterate_over_symtabs, matching_obj_sections)
13748 (expand_symtab_containing_pc, lookup_static_symbol)
13749 (basic_lookup_transparent_type, find_pc_sect_compunit_symtab)
13750 (find_symbol_at_address, find_line_symtab, find_main_name): Use
13751 all_objfiles.
13752 * probe.c (find_probe_by_pc, collect_probes): Use all_objfiles.
13753 * breakpoint.c (create_overlay_event_breakpoint)
13754 (create_longjmp_master_breakpoint)
13755 (create_std_terminate_master_breakpoint)
13756 (create_exception_master_breakpoint): Use all_objfiles.
13757 * linux-thread-db.c (try_thread_db_load_from_pdir)
13758 (has_libpthread): Use all_objfiles.
13759 * ada-lang.c (add_nonlocal_symbols): Use all_objfiles.
13760 * linespec.c (iterate_over_all_matching_symtabs)
13761 (search_minsyms_for_name): Use all_objfiles.
13762 * maint.c (maintenance_info_sections): Use all_objfiles.
13763 * main.c (captured_main_1): Use all_objfiles.
13764 * spu-tdep.c (spu_objfile_from_frame): Use all_objfiles.
13765 * guile/scm-objfile.c (gdbscm_objfiles): Use all_objfiles.
13766 * guile/scm-pretty-print.c
13767 (ppscm_find_pretty_printer_from_objfiles): Use all_objfiles.
13768 * solib-spu.c (append_ocl_sos): Use all_objfiles.
13769 * symmisc.c (maintenance_print_symbols): Use all_objfiles.
13770 (maintenance_print_msymbols): Use all_objfiles.
13771 * source.c (select_source_symtab): Use all_objfiles.
13772 * jit.c (jit_find_objf_with_entry_addr): Use all_objfiles.
13773 * symfile.c (remove_symbol_file_command)
13774 (expand_symtabs_matching, map_symbol_filenames): Use
13775 all_objfiles.
13776 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created): Use
13777 all_objfiles.
13778 * dwarf2-frame.c (dwarf2_frame_find_fde): Use all_objfiles.
13779 * objc-lang.c (find_methods): Use all_objfiles.
13780 * objfiles.c (have_partial_symbols, have_full_symbols)
13781 (have_minimal_symbols, qsort_cmp)
13782 (default_iterate_over_objfiles_in_search_order): Use
13783 all_objfiles.
13784 * hppa-tdep.c (find_unwind_entry): Use all_objfiles.
13785 * psymtab.c (maintenance_print_psymbols): Use all_objfiles.
13786 (maintenance_check_psymtabs): Use all_objfiles.
13787 (ALL_PSYMTABS): Remove.
13788 * compile/compile-object-run.c (do_module_cleanup): Use
13789 all_objfiles.
13790 * blockframe.c (find_pc_partial_function): Use all_objfiles.
13791 * cp-support.c (add_symbol_overload_list_qualified): Use
13792 all_objfiles.
13793 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
13794 Use all_objfiles.
13795 * dwarf-index-write.c (save_gdb_index_command): Use all_objfiles.
13796 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): Use
13797 all_objfiles.
13798 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
13799 (objfpy_lookup_objfile_by_build_id): Use all_objfiles.
13800 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
13801 Uses all_objfiles.
13802 * solib.c (solib_read_symbols): Use all_objfiles
13803
99d89cde
TT
138042019-01-09 Tom Tromey <tom@tromey.com>
13805
13806 * probe.c (parse_probes_in_pspace): Use all_objfiles.
13807 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Use
13808 all_objfiles.
13809 * objfiles.h (ALL_PSPACE_OBJFILES): Remove.
13810 * symmisc.c (print_symbol_bcache_statistics)
13811 (print_objfile_statistics, maintenance_print_objfiles)
13812 (maintenance_info_symtabs, maintenance_check_symtabs)
13813 (maintenance_expand_symtabs, maintenance_info_line_tables): Use
13814 all_objfiles.
13815 * source.c (forget_cached_source_info): Use all_objfiles.
13816 * symfile-debug.c (set_debug_symfile): Use all_objfiles.
13817 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
13818 (elf_gnu_ifunc_resolve_by_got): Use all_objfiles.
13819 * objfiles.c (update_section_map): Use all_objfiles.
13820 (shared_objfile_contains_address_p): Likewise.
13821 * psymtab.c (maintenance_info_psymtabs): Use all_objfiles.
13822 * python/py-progspace.c (pspy_get_objfiles): Use all_objfiles.
13823
21708325
TT
138242019-01-09 Tom Tromey <tom@tromey.com>
13825
13826 * common/next-iterator.h: New file.
13827 * objfiles.h (class all_objfiles): New.
13828 (struct objfile_iterator): New.
13829
669e09f6
PW
138302019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13831
13832 * NEWS: Move the description of the changed "frame", "select-frame",
13833 and "info frame" commands to the Changed commands section.
13834
041be526
SM
138352019-01-09 Simon Marchi <simon.marchi@ericsson.com>
13836
13837 * gdbtypes.c (check_stub_method_group): Remove handling of old
13838 mangling schemes.
13839 * linespec.c (find_methods): Likewise.
13840 * stabsread.c (read_member_functions): Likewise.
13841 * valops.c (search_struct_method): Likewise.
13842 (value_struct_elt_for_reference): Likewise.
13843 * NEWS: Mention this change.
13844
0e2a2133
AB
138452019-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
13846
13847 * cli/cli-cmds.c (list_command): Pass a source_lines_range to
13848 print_source_lines.
13849 * source.c (print_source_lines_base): Update line number check.
13850 (print_source_lines): New function.
13851 (source_lines_range::source_lines_range): New function.
13852 * source.h (class source_lines_range): New class.
13853 (print_source_lines): New declaration.
13854
1055a3b4
PW
138552019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13856
13857 * linespec.c (linespec_state_destructor): Free self->canonical_names.
13858
cfeadda5
TT
138592019-01-08 Tom Tromey <tom@tromey.com>
13860 Simon Marchi <simon.marchi@ericsson.com>
13861
13862 PR gdb/24060
13863 * ada-exp.y (DOLLAR_VARIABLE): Rename from SPECIAL_VARIABLE.
13864 * ada-lex.l (DOLLAR_VARIABLE): Likewise.
13865 * c-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
13866 * f-exp.y (DOLLAR_VARIABLE): Likewise.
13867 * m2-exp.y (DOLLAR_VARIABLE): Rename from INTERNAL_VAR.
13868 * p-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
13869
583068ca
AB
138702019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
13871
13872 * source.c (select_source_symtab): Move header comment to
13873 declaration in source.h.
13874 (forget_cached_source_info_for_objfile): Likewise.
13875 (forget_cached_source_info): Likewise.
13876 (identify_source_line): Likewise.
13877 * source.h (identify_source_line): Move declaration from symtab.h
13878 and add comment from source.c
13879 (print_source_lines): Likewise.
13880 (forget_cached_source_info_for_objfile): Likewise.
13881 (forget_cached_source_info): Likewise.
13882 (select_source_symtab): Likewise.
13883 (enum print_source_lines_flag): Move definition from symtab.h.
13884 * symtab.h (identify_source_line): Move declaration to source.h.
13885 (print_source_lines): Likewise.
13886 (forget_cached_source_info_for_objfile): Likewise.
13887 (forget_cached_source_info): Likewise.
13888 (select_source_symtab): Likewise.
13889 (enum print_source_lines_flag): Move definition to source.h.
13890 * tui/tui-hooks.c: Add 'source.h' include.
13891
ec98a4ad
AB
138922019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
13893
13894 * source.c (print_source_lines_base): Handle requests to print
13895 reverse line number sequences, and guard against empty lines
13896 string.
13897
62ea19c1
AB
138982019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
13899
13900 * source.c (print_source_lines_base): Fix skip of '\r' if next
13901 character is '\n'.
13902
9d30e1fd
TT
139032019-01-06 Tom Tromey <tom@tromey.com>
13904
13905 * c-exp.y (struct c_parse_state) <macro_original_text,
13906 expansion_obstack>: New member.
13907 (macro_original_text, expansion_obstack): Remove globals.
13908 (scan_macro_expansion, scanning_macro_expansion)
13909 (finished_macro_expansion): Update.
13910 (scan_macro_cleanup): Remove.
13911 (yylex, c_parse): Update.
13912
c65bac38
TT
139132019-01-06 Tom Tromey <tom@tromey.com>
13914
13915 * c-exp.y (struct c_parse_state) <strings>: New member.
13916 (operator_stoken): Update.
13917
02e12e38
TT
139182019-01-06 Tom Tromey <tom@tromey.com>
13919
13920 * parser-defs.h (type_ptr): Remove typedef. Don't declare VEC.
13921 (union type_stack_elt) <typelist_val>: Now a pointer to
13922 std::vector.
13923 (type_stack_cleanup): Don't declare.
13924 (push_typelist): Update.
13925 * parse.c (pop_typelist): Return a std::vector.
13926 (push_typelist): Take a std::vector.
13927 (follow_types): Update. Do not free args.
13928 (type_stack_cleanup): Remove.
13929 * c-exp.y (struct c_parse_state): New.
13930 (cpstate): New global.
13931 (type_aggregate_p, exp, ptr_operator, parameter_typelist)
13932 (nonempty_typelist): Update.
13933 (func_mod): Create a new vector.
13934 (c_parse): Create a c_parse_state.
13935 (check_parameter_typelist): Do not delete params.
13936 (function_method): Update. Do not delete type_list.
13937
f097f5ad
TT
139382019-01-06 Tom Tromey <tom@tromey.com>
13939
13940 PR gdb/28155:
13941 * python/py-finishbreakpoint.c (bpfinishpy_init): Use
13942 check_typedef.
13943 * infcmd.c (finish_command_fsm_should_stop): Use check_typedef.
13944 (print_return_value): Likewise.
13945
d2adf9f1
TT
139462019-01-05 Tom Tromey <tom@tromey.com>
13947
13948 * contrib/cleanup_check.py: Remove.
13949 * contrib/gcc-with-excheck: Remove.
13950 * contrib/exsummary.py: Remove.
13951 * contrib/excheck.py: Remove.
13952
2eab46b1
JB
139532019-01-05 Joel Brobecker <brobecker@adacore.com>
13954
13955 * thread.c (delete_thread_1): Add gdb_assert that THR is not
13956 NULL. Initialize tpprev to NULL instead of assigning it
13957 to NULL on the next statement.
13958 * windows-nat.c (windows_delete_thread): Remove check for
13959 main_thread_id before printing thread exit notifications.
13960 (get_windows_debug_event) <EXIT_THREAD_DEBUG_EVENT>:
13961 Remove thread ID check against main_thread_id.
13962 <CREATE_PROCESS_DEBUG_EVENT>: Remove call to
13963 windows_delete_thread.
13964 <EXIT_PROCESS_DEBUG_EVENT>: Add call to windows_delete_thread.
13965
48c5e7e2
TT
139662019-01-04 Tom Tromey <tom@tromey.com>
13967
13968 * compile/compile.c (_initialize_compile): Use upper case for
13969 metasyntactic variables.
13970 * symmisc.c (_initialize_symmisc): Use upper case for
13971 metasyntactic variables.
13972 * psymtab.c (_initialize_psymtab): Use upper case for
13973 metasyntactic variables.
13974 * demangle.c (demangle_command): Use upper case for metasyntactic
13975 variables.
13976 (_initialize_demangler): Likewise.
13977 * ax-gdb.c (_initialize_ax_gdb): Use upper case for metasyntactic
13978 variables.
13979
986041cd
TT
139802019-01-03 Tom Tromey <tom@tromey.com>
13981
13982 * tui/tui-source.c (tui_set_source_content): Use xstrdup.
13983
7c711119
TT
139842019-01-03 Tom Tromey <tom@tromey.com>
13985
13986 * python/py-symtab.c (salpy_str): Update.
13987 (struct salpy_sal_object) <symtab>: Now a PyObject.
13988 (salpy_dealloc): Update.
13989 (del_objfile_sal): Use gdbpy_ref.
13990
1b20edf0
TT
139912019-01-03 Tom Tromey <tom@tromey.com>
13992
13993 * python/py-type.c (convert_field): Use new_reference. Return
13994 gdbpy_ref.
13995 (make_fielditem): Return gdbpy_ref.
13996 (typy_fields): Update.
13997 (typy_getitem): Update.
13998 (field_name): Return gdbpy_ref. Use new_reference.
13999 (typy_iterator_iternext): Update.
14000
ea41325b
TT
140012019-01-03 Tom Tromey <tom@tromey.com>
14002
14003 * python/py-record.c (gdbpy_stop_recording): Use Py_RETURN_NONE.
14004
2a3c71d6
TT
140052019-01-03 Tom Tromey <tom@tromey.com>
14006
14007 * python/py-value.c (valpy_dealloc): Use Py_XDECREF.
14008 * python/py-type.c (typy_fields_items): Use gdbpy_ref.
14009 * python/py-progspace.c (pspy_set_printers): Use gdbpy_ref.
14010 (pspy_set_frame_filters, pspy_set_frame_unwinders)
14011 (pspy_set_type_printers): Likewise.
14012 * python/py-function.c (fnpy_init): Use gdbpy_ref.
14013 * python/py-cmd.c (cmdpy_init): Use gdbpy_ref.
14014 * python/py-objfile.c (objfpy_set_printers): Use gdbpy_ref.
14015 (objfpy_set_frame_filters, objfpy_set_frame_unwinders)
14016 (objfpy_set_type_printers): Likewise.
14017
5c329e6a
TT
140182019-01-03 Tom Tromey <tom@tromey.com>
14019
14020 * python/python.c (gdbpy_enter, ~gdbpy_enter): Update.
14021 (gdbpy_print_stack): Use gdbpy_err_fetch.
14022 * python/python-internal.h (class gdbpy_err_fetch): New class.
14023 (class gdbpy_enter) <m_error_type, m_error_value,
14024 m_error_traceback>: Remove.
14025 <m_error>: New member.
14026 (gdbpy_exception_to_string): Don't declare.
14027 * python/py-varobj.c (py_varobj_iter_next): Use gdbpy_err_fetch.
14028 * python/py-value.c (convert_value_from_python): Use
14029 gdbpy_err_fetch.
14030 * python/py-utils.c (gdbpy_err_fetch::to_string): Rename from
14031 gdbpy_exception_to_string.
14032 (gdbpy_handle_exception): Use gdbpy_err_fetch.
14033 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
14034 gdbpy_err_fetch.
14035
169bb27b
AB
140362019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14037
14038 * linux-nat.c (delete_lwp_cleanup): Delete.
14039 (struct lwp_deleter): New struct.
14040 (lwp_info_up): New typedef.
14041 (linux_nat_target::follow_fork): Delete cleanup, and make use of
14042 lwp_info_up.
14043
a07c8880
AB
140442019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14045
14046 * linux-fork.c (class scoped_switch_fork_info): New class.
14047 (inferior_call_waitpid): Update to use scoped_switch_fork_info.
14048
26089c49
AB
140492019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14050
14051 * valops.c (find_overload_match): Remove use of null_cleanup, and
14052 calls to do_cleanups.
14053
06d3e5b0
AB
140542019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14055
14056 * compile/compile-cplus-types.c
14057 (compile_cplus_instance::decl_name): Handle changes to
14058 cp_func_name.
14059 * cp-support.c (cp_func_name): Update header comment, update
14060 return type.
14061 * cp-support.h (cp_func_name): Update return type in declaration.
14062 * valops.c (find_overload_match): Move temp_func local to top
14063 level of function and change its type. Use temp_func to hold and
14064 delete temporary string obtained from cp_func_name.
14065
66644cd3
AB
140662019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14067
14068 * remote.c (remote_target::remote_check_symbols): Convert `msg` to
14069 gdb::char_vector, remove cleanup, and update uses of `msg`.
14070
592d8c0a
JW
140712019-01-03 Jim Wilson <jimw@sifive.com>
14072
14073 * riscv-tdep.c (riscv_freg_feature): Drop s0 name from f8.
14074
c55d06ec
TT
140752019-01-02 Tom Tromey <tom@tromey.com>
14076
14077 * xml-tdesc.c (xml_cache): Hold a target_desc_up.
14078 (tdesc_parse_xml): Remove cleanups.
14079 * target-descriptions.h (make_cleanup_free_target_description):
14080 Don't declare.
14081 (target_desc_deleter): New struct.
14082 (target_desc_up): New typedef.
14083 * target-descriptions.c (target_desc_deleter::operator()): Rename
14084 from free_target_description.
14085 (make_cleanup_free_target_description): Remove.
14086
3a6ae42d
TT
140872019-01-02 Tom Tromey <tom@tromey.com>
14088
14089 * linespec.c (struct linespec_parser): Rename from ls_parser. Add
14090 constructor, destructor.
14091 (linespec_parser): Remove typedef.
14092 (~linespec_parser): Rename from linespec_parser_delete.
14093 (linespec_lex_to_end, linespec_complete_label)
14094 (linespec_complete): Update.
14095 (decode_line_full): Remove cleanups.
14096 (decode_line_1): Update.
14097
61fd3e73
TT
140982019-01-02 Tom Tromey <tom@tromey.com>
14099
14100 * python/python-internal.h (inferior_to_inferior_object): Change
14101 return type.
14102 * python/py-exitedevent.c (create_exited_event_object): Update.
14103 * python/py-inferior.c (inferior_to_inferior_object): Return
14104 gdbpy_ref.
14105 (python_new_inferior, python_inferior_deleted)
14106 (thread_to_thread_object, delete_thread_object)
14107 (build_inferior_list, gdbpy_selected_inferior): Update.
14108 * python/py-infthread.c (create_thread_object): Update. Also fail
14109 if inferior_to_inferior_object fails.
14110
d20172fc
SM
141112019-01-02 Simon Marchi <simon.marchi@ericsson.com>
14112
14113 * inferior.h (class inferior) <displaced_step_state>: New field.
14114 * infrun.h (struct displaced_step_state): Move here from
14115 infrun.c. Initialize fields, add constructor.
14116 <inf>: Remove field.
14117 <reset>: New method.
14118 * infrun.c (struct displaced_step_inferior_state): Move to
14119 infrun.h.
14120 (displaced_step_inferior_states): Remove.
14121 (get_displaced_stepping_state): Adust.
14122 (displaced_step_in_progress_any_inferior): Adjust.
14123 (displaced_step_in_progress_thread): Adjust.
14124 (displaced_step_in_progress): Adjust.
14125 (add_displaced_stepping_state): Remove.
14126 (get_displaced_step_closure_by_addr): Adjust.
14127 (remove_displaced_stepping_state): Remove.
14128 (infrun_inferior_exit): Call displaced_step_state.reset.
14129 (use_displaced_stepping): Don't check for NULL.
14130 (displaced_step_prepare_throw): Call
14131 get_displaced_stepping_state.
14132 (displaced_step_fixup): Don't check for NULL.
14133 (prepare_for_detach): Don't check for NULL.
14134
e3319240
PW
141352019-01-02 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14136
14137 * infcall.c (call_function_by_hand_dummy): cleanup/destroy sm
14138 in case of call that did not complete.
14139
5d36dfb9
AU
141402019-01-02 Andrey Utkin <autkin@undo.io>
14141
14142 * symfile.c (find_separate_debug_file): Fix search of debug files for
14143 remote debuggee.
14144
8833fbf0
TT
141452019-01-02 Tom Tromey <tom@tromey.com>
14146
14147 * python/py-inferior.c (gdbpy_initialize_inferior): Fix
14148 indentation.
14149 * python/py-frame.c (frapy_older): Remove cast.
14150 (frapy_newer): Likewise.
14151 * python/py-breakpoint.c (local_setattro): Remove cast.
14152 * python/py-arch.c (archpy_name): Remove local variable.
14153 * python/py-type.c (gdbpy_lookup_type): Remove cast.
14154
4ada3dfd
JB
141552019-01-02 Joel Brobecker <brobecker@adacore.com>
14156
14157 * unittests/basic_string_view/element_access/char/empty.cc:
14158 Fix year range in copyright header.
14159
113b7b81
AB
141602019-01-01 Andrew Burgess <andrew.burgess@embecosm.com>
14161
14162 * arch/riscv.h (struct riscv_gdbarch_features) <hw_float_abi>:
14163 Delete.
14164 <operator==>: Update with for removed field.
14165 <hash>: Likewise.
14166 * riscv-tdep.h (struct gdbarch_tdep) <features>: Renamed to...
14167 <isa_features>: ...this.
14168 <abi_features>: New field.
14169 (riscv_isa_flen): Update comment.
14170 (riscv_abi_xlen): New declaration.
14171 (riscv_abi_flen): New declaration.
14172 * riscv-tdep.c (riscv_isa_xlen): Update to get answer from
14173 isa_features.
14174 (riscv_abi_xlen): New function.
14175 (riscv_isa_flen): Update to get answer from isa_features.
14176 (riscv_abi_flen): New function.
14177 (riscv_has_fp_abi): Update to get answer from abi_features.
14178 (riscv_call_info::riscv_call_info): Use abi xlen and flen, not isa
14179 xlen and flen.
14180 (riscv_call_info) <xlen, flen>: Update comment.
14181 (riscv_call_arg_struct): Remove invalid assertions
14182 (riscv_features_from_gdbarch_info): Update now hw_float_abi field
14183 is removed.
14184 (riscv_gdbarch_init): Gather isa features and abi features
14185 separately, ensure both match on the gdbarch when reusing an old
14186 gdbarch. Relax an error check to allow 32-bit abi float to run on
14187 a target with 64-bit float hardware.
14188
b18ca514
PW
141892019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14190
14191 * source.c (search_command_helper): Stop reverse search
14192 when line 1 has been searched.
14193
ec70d8db
PW
141942019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14195
14196 * record-full.c (record_full_base_target::close): Rewrite
14197 record_full_core_buf_list free logic.
14198
5b38f9c1
PW
141992019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14200
14201 * break-catch-syscall.c (print_one_catch_syscall): xfree
14202 the last text.
14203
66d91b39
JB
142042019-01-01 Joel Brobecker <brobecker@adacore.com>
14205
14206 * top.c (print_gdb_version): Update Copyright year in version
14207 message.
14208
42a4f53d
JB
142092019-01-01 Joel Brobecker <brobecker@adacore.com>
14210
14211 Update copyright year range in all GDB files.
14212
7e955d83 142132019-01-01, 19 Joel Brobecker <brobecker@adacore.com>
2139e8dc 14214
5bbd631d 14215 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2018.
2139e8dc 14216
5bbd631d 14217For older changes see ChangeLog-2018.
c906108c
SS
14218\f
14219Local Variables:
14220mode: change-log
14221left-margin: 8
14222fill-column: 74
14223version-control: never
57da7796 14224coding: utf-8
c906108c 14225End:
5bbd631d 14226
This page took 2.857493 seconds and 4 git commands to generate.