gdb: Fix alignment computation for structs with only static fields
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
2
3 * gdbtypes.c (type_align): A struct with no non-static fields also
4 has alignment of 1.
5
6 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
7
8 * riscv-tdep.c (riscv_call_arg_complex_float): Fix offset of first
9 component to 0.
10 (riscv_struct_info::riscv_struct_info): Initialise m_offsets
11 member.
12 (riscv_struct_info::analyse): New implementation using new
13 analyse_inner member function.
14 (riscv_struct_info::field_offset): New member function.
15 (riscv_struct_info::m_offsets): New member variable.
16 (riscv_struct_info::analyse_inner): New private member function,
17 takes the old implementation of riscv_struct_info::analyse but
18 extended to track field offsets.
19 (riscv_call_arg_struct): Update the struct folding special cases
20 to handle cases where empty C++ structs, which are non-zero
21 length, are found.
22 (riscv_arg_location): Initialise the length of each location, a
23 non-zero length now indicates the location is in use.
24 (riscv_push_dummy_call): Allow for the first location having a
25 non-zero offset when setting up arguments.
26 (riscv_return_value): Likewise, but for return values.
27
28 2019-04-11 Tom Tromey <tromey@adacore.com>
29
30 * utils.c (internal_vproblem): Make "msg" const.
31
32 2019-04-11 Alan Hayward <alan.hayward@arm.com>
33
34 * aarch64-tdep.c (aarch64_analyze_prologue_test): Reset saved regs.
35 * trad-frame.c (trad_frame_reset_saved_regs): New function.
36 (trad_frame_alloc_saved_regs): Call trad_frame_reset_saved_regs.
37 * trad-frame.h (trad_frame_reset_saved_regs): New declaration.
38
39 2019-04-10 Kevin Buettner <kevinb@redhat.com>
40
41 * amd64-linux-nat.c (amd64_linux_collect_native_gregset): New
42 function.
43 (fill_gregset): Call amd64_linux_collect_native_gregset instead
44 of amd64_collect_native_gregset.
45 (amd64_linux_nat_target::store_registers): Likewise.
46
47 2019-04-10 Tom Tromey <tom@tromey.com>
48
49 * symtab.c (lookup_global_symbol_from_objfile)
50 (lookup_symbol_in_objfile_from_linkage_name): Use the iterator.
51 * objfiles.h (class separate_debug_iterator): New.
52 (class separate_debug_range): New.
53 (struct objfile) <separate_debug_objfiles>: New method.
54 (objfile_separate_debug_iterate): Don't declare.
55 * objfiles.c (separate_debug_iterator::operator++): Rename from
56 objfile_separate_debug_iterate.
57 (objfile_relocate, objfile_rebase, objfile_has_symbols): Use the
58 iterator.
59 * minsyms.c (lookup_minimal_symbol_by_pc_section): Use the
60 iterator.
61
62 2019-04-10 Tom Tromey <tom@tromey.com>
63
64 * symfile.c (reread_symbols): Remove old comment.
65 * objfiles.c (free_all_objfiles): Fix a typo.
66
67 2019-04-10 Tom Tromey <tom@tromey.com>
68
69 * ia64-tdep.c (ia64_get_dyn_info_list): Use foreach.
70 * minsyms.c (lookup_minimal_symbol): Use foreach.
71 (lookup_minimal_symbol_text, lookup_minimal_symbol_by_pc_name)
72 (lookup_minimal_symbol_solib_trampoline): Likewise.
73 * symfile.c (reread_symbols): Use foreach.
74
75 2019-04-09 Ivan Begert <ivanbegert@gmail.com>
76 Tom Tromey <tromey@adacore.com>
77
78 PR rust/24414:
79 * rust-exp.y (rust_parser::lex_number): Use strtoulst.
80 (rust_lex_int_test): Change "value" to be LONGEST.
81 (rust_lex_tests): Add test for long integer literal.
82
83 2019-04-09 Tom Tromey <tromey@adacore.com>
84
85 * remote.c (remote_target::remote_add_inferior): Change fake_pid_p
86 to bool.
87 (extended_remote_target::attach): Update.
88 (remote_target::remote_notice_new_inferior): Update.
89 (remote_target::add_current_inferior_and_thread): Update.
90 * inferior.c (exit_inferior_1): Use "false".
91 * corelow.c (add_to_thread_list): Make fake_pid_p bool.
92
93 2019-04-09 Simon Marchi <simon.marchi@efficios.com>
94
95 * infcmd.c (run_command_1): Pass -qualified to tbreak when using
96 the "start" command.
97
98 2019-04-08 Kevin Buettner <kevinb@redhat.com>
99
100 * python/py-inferior.c (infpy_thread_from_thread_handle):
101 Adjust comments to reflect renaming of thread_from_thread_handle
102 to thread_from_handle. Adjust keywords. Fix type error message.
103 (inferior_object_methods): Add thread_from_handle. Retain
104 thread_from_thread_handle, but mark it as deprecated.
105
106 2019-04-08 Kevin Buettner <kevinb@redhat.com>
107
108 * gdbthread.h (find_thread_by_handle): Revise declaration.
109 * thread.c (find_thread_by_handle): Likewise. Adjust
110 implementation too.
111 * python/py-inferior.c (infpy_thread_from_thread_handle): Add
112 support for buffer objects as handles.
113
114 2019-04-08 Kevin Buettner <kevinb@redhat.com>
115
116 * python/py-infthread.c (thpy_thread_handle): New function.
117 (thread_object_methods): Register thpy_thread_handle.
118
119 2019-04-08 Kevin Buettner <kevinb@redhat.com>
120
121 * gdbthread.h (thread_to_thread_handle): Declare.
122 * thread.c (gdbtypes.h): Include.
123 (thread_to_thread_handle): New function.
124
125 * target.h (struct target_ops): Add thread_info_to_thread_handle.
126 (target_thread_info_to_thread_handle): Declare.
127 * target.c (target_thread_info_to_thread_handle): New function.
128 * target-debug.h (target_debug_print_gdb_byte_vector): Define.
129 * target-delegates.c: Regenerate.
130
131 * linux-thread-db.c (class thread_db_target): Add method
132 thread_info_to_thread_handle.
133 (thread_db_target::thread_info_to_thread_handle): Define.
134 * remote.c (class remote_target): Add new method
135 thread_info_to_thread_handle.
136 (remote_target::thread_info_to_thread_handle): Define.
137
138 2019-04-08 Pedro Alves <palves@redhat.com>
139
140 * common/common-exceptions.c (throw_exception): Don't create
141 named object to throw; throw directly.
142 (throw_it): Likewise. Don't initialize gdb_exception::message
143 here, with new; pass FMT and AP to the ctor instead.
144 * common/common-exceptions.h: Include <string>.
145 (gdb_exception::gdb_exception(enum return_reason, enum errors,
146 const char *, va_list)): New ctor. Use std::make_shared.
147 (gdb_exception_error::gdb_exception_error(enum return_reason, enum
148 errors)): Delete.
149 (gdb_exception_error::gdb_exception_error(enum errors, const char
150 *, va_list)): New.
151 (gdb_exception_error::gdb_exception_error(const gdb_exception &)):
152 Add assertion.
153 (gdb_exception_quit::gdb_exception_quit(enum return_reason, enum
154 errors)): Delete.
155 (gdb_exception_quit::gdb_exception_quit(const char *, va_list)): New.
156 (gdb_exception_quit::gdb_exception_quit(const gdb_exception &)):
157 Add assertion.
158
159 2019-04-08 Tom Tromey <tom@tromey.com>
160
161 * valops.c (value_rtti_indirect_type): Replace throw_exception
162 with throw.
163 * tracefile-tfile.c (tfile_target_open): Replace throw_exception
164 with throw.
165 * thread.c (thr_try_catch_cmd): Replace throw_exception with
166 throw.
167 * target.c (target_translate_tls_address): Replace throw_exception
168 with throw.
169 * stack.c (frame_apply_command_count): Replace throw_exception
170 with throw.
171 * solib-spu.c (append_ocl_sos): Replace throw_exception with
172 throw.
173 * s390-tdep.c (s390_frame_unwind_cache): Replace throw_exception
174 with throw.
175 * rs6000-tdep.c (rs6000_frame_cache)
176 (rs6000_epilogue_frame_cache): Replace throw_exception with throw.
177 * remote.c: Replace throw_exception with throw.
178 * record-full.c (record_full_message, record_full_wait_1)
179 (record_full_restore): Replace throw_exception with throw.
180 * record-btrace.c:
181 (get_thread_current_frame_id, record_btrace_start_replaying)
182 (cmd_record_btrace_bts_start, cmd_record_btrace_pt_start)
183 (cmd_record_btrace_start): Replace throw_exception with throw.
184 * parse.c (parse_exp_in_context_1): Replace throw_exception with
185 throw.
186 * linux-nat.c (detach_one_lwp, linux_resume_one_lwp)
187 (resume_stopped_resumed_lwps): Replace throw_exception with throw.
188 * linespec.c:
189 (find_linespec_symbols): Replace throw_exception with throw.
190 * infrun.c (displaced_step_prepare, resume): Replace
191 throw_exception with throw.
192 * infcmd.c (post_create_inferior): Replace throw_exception with
193 throw.
194 * inf-loop.c (inferior_event_handler): Replace throw_exception
195 with throw.
196 * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
197 (i386_sigtramp_frame_cache): Replace throw_exception with throw.
198 * frame.c (frame_unwind_pc, get_prev_frame_if_no_cycle)
199 (get_prev_frame_always, get_frame_pc_if_available)
200 (get_frame_address_in_block_if_available, get_frame_language):
201 Replace throw_exception with throw.
202 * frame-unwind.c (frame_unwind_try_unwinder): Replace
203 throw_exception with throw.
204 * eval.c (fetch_subexp_value, evaluate_var_value)
205 (evaluate_funcall, evaluate_subexp_standard): Replace
206 throw_exception with throw.
207 * dwarf2loc.c (call_site_find_chain)
208 (dwarf2_evaluate_loc_desc_full, dwarf2_locexpr_baton_eval):
209 Replace throw_exception with throw.
210 * dwarf2-frame.c (dwarf2_frame_cache): Replace throw_exception
211 with throw.
212 * darwin-nat.c (darwin_attach_pid): Replace throw_exception with
213 throw.
214 * cp-abi.c (baseclass_offset): Replace throw_exception with throw.
215 * completer.c (complete_line_internal): Replace throw_exception
216 with throw.
217 * compile/compile-object-run.c (compile_object_run): Replace
218 throw_exception with throw.
219 * cli/cli-script.c (process_next_line): Replace throw_exception
220 with throw.
221 * btrace.c (btrace_compute_ftrace_pt, btrace_compute_ftrace)
222 (btrace_enable, btrace_maint_update_pt_packets): Replace
223 throw_exception with throw.
224 * breakpoint.c (create_breakpoint, save_breakpoints): Replace
225 throw_exception with throw.
226 * break-catch-throw.c (re_set_exception_catchpoint): Replace
227 throw_exception with throw.
228 * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
229 (amd64_epilogue_frame_cache): Replace throw_exception with throw.
230 * aarch64-tdep.c (aarch64_make_prologue_cache)
231 (aarch64_make_stub_cache): Replace throw_exception with throw.
232
233 2019-04-08 Tom Tromey <tom@tromey.com>
234
235 * common/common-exceptions.c (throw_exception): Rename from
236 throw_exception_cxx. Remove old copy. Make argument const.
237 (throw_it): Create and throw exception objects directly.
238 * common/common-exceptions.h (throw_exception): Make argument
239 const.
240 (struct gdb_exception_error): Add constructor.
241 (struct gdb_exception_quit): Add constructor.
242
243 2019-04-08 Tom Tromey <tom@tromey.com>
244
245 * common/common-exceptions.h (exception_rethrow): Don't declare.
246 (TRY_SJLJ): Update comment.
247 (TRY, CATCH, END_CATCH): Remove.
248 * common/common-exceptions.c (exception_rethrow): Remove.
249
250 2019-04-08 Tom Tromey <tom@tromey.com>
251
252 * common/common-exceptions.h (gdb_exception_RETURN_MASK_ALL):
253 Remove.
254 (gdb_exception_error): Rename from
255 gdb_exception_RETURN_MASK_ERROR.
256 (gdb_exception_quit): Rename from gdb_exception_RETURN_MASK_QUIT.
257 (gdb_quit_bad_alloc): Update.
258 * aarch64-tdep.c: Update.
259 * ada-lang.c: Update.
260 * ada-typeprint.c: Update.
261 * ada-valprint.c: Update.
262 * amd64-tdep.c: Update.
263 * arch-utils.c: Update.
264 * break-catch-throw.c: Update.
265 * breakpoint.c: Update.
266 * btrace.c: Update.
267 * c-varobj.c: Update.
268 * cli/cli-cmds.c: Update.
269 * cli/cli-interp.c: Update.
270 * cli/cli-script.c: Update.
271 * common/common-exceptions.c: Update.
272 * common/new-op.c: Update.
273 * common/selftest.c: Update.
274 * compile/compile-c-symbols.c: Update.
275 * compile/compile-cplus-symbols.c: Update.
276 * compile/compile-object-load.c: Update.
277 * compile/compile-object-run.c: Update.
278 * completer.c: Update.
279 * corelow.c: Update.
280 * cp-abi.c: Update.
281 * cp-support.c: Update.
282 * cp-valprint.c: Update.
283 * darwin-nat.c: Update.
284 * disasm-selftests.c: Update.
285 * dtrace-probe.c: Update.
286 * dwarf-index-cache.c: Update.
287 * dwarf-index-write.c: Update.
288 * dwarf2-frame-tailcall.c: Update.
289 * dwarf2-frame.c: Update.
290 * dwarf2loc.c: Update.
291 * dwarf2read.c: Update.
292 * eval.c: Update.
293 * event-loop.c: Update.
294 * event-top.c: Update.
295 * exec.c: Update.
296 * f-valprint.c: Update.
297 * fbsd-tdep.c: Update.
298 * frame-unwind.c: Update.
299 * frame.c: Update.
300 * gdbtypes.c: Update.
301 * gnu-v3-abi.c: Update.
302 * guile/guile-internal.h: Update.
303 * guile/scm-block.c: Update.
304 * guile/scm-breakpoint.c: Update.
305 * guile/scm-cmd.c: Update.
306 * guile/scm-disasm.c: Update.
307 * guile/scm-frame.c: Update.
308 * guile/scm-lazy-string.c: Update.
309 * guile/scm-math.c: Update.
310 * guile/scm-param.c: Update.
311 * guile/scm-ports.c: Update.
312 * guile/scm-pretty-print.c: Update.
313 * guile/scm-symbol.c: Update.
314 * guile/scm-symtab.c: Update.
315 * guile/scm-type.c: Update.
316 * guile/scm-value.c: Update.
317 * i386-linux-tdep.c: Update.
318 * i386-tdep.c: Update.
319 * inf-loop.c: Update.
320 * infcall.c: Update.
321 * infcmd.c: Update.
322 * infrun.c: Update.
323 * jit.c: Update.
324 * language.c: Update.
325 * linespec.c: Update.
326 * linux-fork.c: Update.
327 * linux-nat.c: Update.
328 * linux-tdep.c: Update.
329 * linux-thread-db.c: Update.
330 * main.c: Update.
331 * mi/mi-cmd-break.c: Update.
332 * mi/mi-cmd-stack.c: Update.
333 * mi/mi-interp.c: Update.
334 * mi/mi-main.c: Update.
335 * objc-lang.c: Update.
336 * p-valprint.c: Update.
337 * parse.c: Update.
338 * ppc-linux-tdep.c: Update.
339 * printcmd.c: Update.
340 * python/py-arch.c: Update.
341 * python/py-breakpoint.c: Update.
342 * python/py-cmd.c: Update.
343 * python/py-finishbreakpoint.c: Update.
344 * python/py-frame.c: Update.
345 * python/py-framefilter.c: Update.
346 * python/py-gdb-readline.c: Update.
347 * python/py-inferior.c: Update.
348 * python/py-infthread.c: Update.
349 * python/py-lazy-string.c: Update.
350 * python/py-linetable.c: Update.
351 * python/py-objfile.c: Update.
352 * python/py-param.c: Update.
353 * python/py-prettyprint.c: Update.
354 * python/py-progspace.c: Update.
355 * python/py-record-btrace.c: Update.
356 * python/py-record.c: Update.
357 * python/py-symbol.c: Update.
358 * python/py-type.c: Update.
359 * python/py-unwind.c: Update.
360 * python/py-utils.c: Update.
361 * python/py-value.c: Update.
362 * python/python.c: Update.
363 * record-btrace.c: Update.
364 * record-full.c: Update.
365 * remote-fileio.c: Update.
366 * remote.c: Update.
367 * riscv-tdep.c: Update.
368 * rs6000-aix-tdep.c: Update.
369 * rs6000-tdep.c: Update.
370 * rust-exp.y: Update.
371 * rust-lang.c: Update.
372 * s390-tdep.c: Update.
373 * selftest-arch.c: Update.
374 * solib-dsbt.c: Update.
375 * solib-frv.c: Update.
376 * solib-spu.c: Update.
377 * solib-svr4.c: Update.
378 * solib.c: Update.
379 * sparc64-linux-tdep.c: Update.
380 * stack.c: Update.
381 * symfile-mem.c: Update.
382 * symmisc.c: Update.
383 * target.c: Update.
384 * thread.c: Update.
385 * top.c: Update.
386 * tracefile-tfile.c: Update.
387 * tui/tui.c: Update.
388 * typeprint.c: Update.
389 * unittests/cli-utils-selftests.c: Update.
390 * unittests/parse-connection-spec-selftests.c: Update.
391 * valops.c: Update.
392 * valprint.c: Update.
393 * value.c: Update.
394 * varobj.c: Update.
395 * windows-nat.c: Update.
396 * x86-linux-nat.c: Update.
397 * xml-support.c: Update.
398
399 2019-04-08 Tom Tromey <tom@tromey.com>
400
401 * xml-support.c: Use C++ exception handling.
402 * x86-linux-nat.c: Use C++ exception handling.
403 * windows-nat.c: Use C++ exception handling.
404 * varobj.c: Use C++ exception handling.
405 * value.c: Use C++ exception handling.
406 * valprint.c: Use C++ exception handling.
407 * valops.c: Use C++ exception handling.
408 * unittests/parse-connection-spec-selftests.c: Use C++ exception
409 handling.
410 * unittests/cli-utils-selftests.c: Use C++ exception handling.
411 * typeprint.c: Use C++ exception handling.
412 * tui/tui.c: Use C++ exception handling.
413 * tracefile-tfile.c: Use C++ exception handling.
414 * top.c: Use C++ exception handling.
415 * thread.c: Use C++ exception handling.
416 * target.c: Use C++ exception handling.
417 * symmisc.c: Use C++ exception handling.
418 * symfile-mem.c: Use C++ exception handling.
419 * stack.c: Use C++ exception handling.
420 * sparc64-linux-tdep.c: Use C++ exception handling.
421 * solib.c: Use C++ exception handling.
422 * solib-svr4.c: Use C++ exception handling.
423 * solib-spu.c: Use C++ exception handling.
424 * solib-frv.c: Use C++ exception handling.
425 * solib-dsbt.c: Use C++ exception handling.
426 * selftest-arch.c: Use C++ exception handling.
427 * s390-tdep.c: Use C++ exception handling.
428 * rust-lang.c: Use C++ exception handling.
429 * rust-exp.y: Use C++ exception handling.
430 * rs6000-tdep.c: Use C++ exception handling.
431 * rs6000-aix-tdep.c: Use C++ exception handling.
432 * riscv-tdep.c: Use C++ exception handling.
433 * remote.c: Use C++ exception handling.
434 * remote-fileio.c: Use C++ exception handling.
435 * record-full.c: Use C++ exception handling.
436 * record-btrace.c: Use C++ exception handling.
437 * python/python.c: Use C++ exception handling.
438 * python/py-value.c: Use C++ exception handling.
439 * python/py-utils.c: Use C++ exception handling.
440 * python/py-unwind.c: Use C++ exception handling.
441 * python/py-type.c: Use C++ exception handling.
442 * python/py-symbol.c: Use C++ exception handling.
443 * python/py-record.c: Use C++ exception handling.
444 * python/py-record-btrace.c: Use C++ exception handling.
445 * python/py-progspace.c: Use C++ exception handling.
446 * python/py-prettyprint.c: Use C++ exception handling.
447 * python/py-param.c: Use C++ exception handling.
448 * python/py-objfile.c: Use C++ exception handling.
449 * python/py-linetable.c: Use C++ exception handling.
450 * python/py-lazy-string.c: Use C++ exception handling.
451 * python/py-infthread.c: Use C++ exception handling.
452 * python/py-inferior.c: Use C++ exception handling.
453 * python/py-gdb-readline.c: Use C++ exception handling.
454 * python/py-framefilter.c: Use C++ exception handling.
455 * python/py-frame.c: Use C++ exception handling.
456 * python/py-finishbreakpoint.c: Use C++ exception handling.
457 * python/py-cmd.c: Use C++ exception handling.
458 * python/py-breakpoint.c: Use C++ exception handling.
459 * python/py-arch.c: Use C++ exception handling.
460 * printcmd.c: Use C++ exception handling.
461 * ppc-linux-tdep.c: Use C++ exception handling.
462 * parse.c: Use C++ exception handling.
463 * p-valprint.c: Use C++ exception handling.
464 * objc-lang.c: Use C++ exception handling.
465 * mi/mi-main.c: Use C++ exception handling.
466 * mi/mi-interp.c: Use C++ exception handling.
467 * mi/mi-cmd-stack.c: Use C++ exception handling.
468 * mi/mi-cmd-break.c: Use C++ exception handling.
469 * main.c: Use C++ exception handling.
470 * linux-thread-db.c: Use C++ exception handling.
471 * linux-tdep.c: Use C++ exception handling.
472 * linux-nat.c: Use C++ exception handling.
473 * linux-fork.c: Use C++ exception handling.
474 * linespec.c: Use C++ exception handling.
475 * language.c: Use C++ exception handling.
476 * jit.c: Use C++ exception handling.
477 * infrun.c: Use C++ exception handling.
478 * infcmd.c: Use C++ exception handling.
479 * infcall.c: Use C++ exception handling.
480 * inf-loop.c: Use C++ exception handling.
481 * i386-tdep.c: Use C++ exception handling.
482 * i386-linux-tdep.c: Use C++ exception handling.
483 * guile/scm-value.c: Use C++ exception handling.
484 * guile/scm-type.c: Use C++ exception handling.
485 * guile/scm-symtab.c: Use C++ exception handling.
486 * guile/scm-symbol.c: Use C++ exception handling.
487 * guile/scm-pretty-print.c: Use C++ exception handling.
488 * guile/scm-ports.c: Use C++ exception handling.
489 * guile/scm-param.c: Use C++ exception handling.
490 * guile/scm-math.c: Use C++ exception handling.
491 * guile/scm-lazy-string.c: Use C++ exception handling.
492 * guile/scm-frame.c: Use C++ exception handling.
493 * guile/scm-disasm.c: Use C++ exception handling.
494 * guile/scm-cmd.c: Use C++ exception handling.
495 * guile/scm-breakpoint.c: Use C++ exception handling.
496 * guile/scm-block.c: Use C++ exception handling.
497 * guile/guile-internal.h: Use C++ exception handling.
498 * gnu-v3-abi.c: Use C++ exception handling.
499 * gdbtypes.c: Use C++ exception handling.
500 * frame.c: Use C++ exception handling.
501 * frame-unwind.c: Use C++ exception handling.
502 * fbsd-tdep.c: Use C++ exception handling.
503 * f-valprint.c: Use C++ exception handling.
504 * exec.c: Use C++ exception handling.
505 * event-top.c: Use C++ exception handling.
506 * event-loop.c: Use C++ exception handling.
507 * eval.c: Use C++ exception handling.
508 * dwarf2read.c: Use C++ exception handling.
509 * dwarf2loc.c: Use C++ exception handling.
510 * dwarf2-frame.c: Use C++ exception handling.
511 * dwarf2-frame-tailcall.c: Use C++ exception handling.
512 * dwarf-index-write.c: Use C++ exception handling.
513 * dwarf-index-cache.c: Use C++ exception handling.
514 * dtrace-probe.c: Use C++ exception handling.
515 * disasm-selftests.c: Use C++ exception handling.
516 * darwin-nat.c: Use C++ exception handling.
517 * cp-valprint.c: Use C++ exception handling.
518 * cp-support.c: Use C++ exception handling.
519 * cp-abi.c: Use C++ exception handling.
520 * corelow.c: Use C++ exception handling.
521 * completer.c: Use C++ exception handling.
522 * compile/compile-object-run.c: Use C++ exception handling.
523 * compile/compile-object-load.c: Use C++ exception handling.
524 * compile/compile-cplus-symbols.c: Use C++ exception handling.
525 * compile/compile-c-symbols.c: Use C++ exception handling.
526 * common/selftest.c: Use C++ exception handling.
527 * common/new-op.c: Use C++ exception handling.
528 * cli/cli-script.c: Use C++ exception handling.
529 * cli/cli-interp.c: Use C++ exception handling.
530 * cli/cli-cmds.c: Use C++ exception handling.
531 * c-varobj.c: Use C++ exception handling.
532 * btrace.c: Use C++ exception handling.
533 * breakpoint.c: Use C++ exception handling.
534 * break-catch-throw.c: Use C++ exception handling.
535 * arch-utils.c: Use C++ exception handling.
536 * amd64-tdep.c: Use C++ exception handling.
537 * ada-valprint.c: Use C++ exception handling.
538 * ada-typeprint.c: Use C++ exception handling.
539 * ada-lang.c: Use C++ exception handling.
540 * aarch64-tdep.c: Use C++ exception handling.
541
542 2019-04-08 Tom Tromey <tom@tromey.com>
543
544 * xml-support.c (gdb_xml_parser::parse): Update.
545 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
546 * value.c (show_convenience): Update.
547 * unittests/cli-utils-selftests.c (test_number_or_range_parser)
548 (test_parse_flags_qcs): Update.
549 * thread.c (thr_try_catch_cmd): Update.
550 * target.c (target_translate_tls_address): Update.
551 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
552 (info_frame_command_core, frame_apply_command_count): Update.
553 * rust-exp.y (rust_lex_exception_test): Update.
554 * riscv-tdep.c (riscv_print_one_register_info): Update.
555 * remote.c (remote_target::enable_btrace): Update.
556 * record-btrace.c (record_btrace_enable_warn): Update.
557 * python/py-utils.c (gdbpy_convert_exception): Update.
558 * printcmd.c (do_one_display, print_variable_and_value): Update.
559 * mi/mi-main.c (mi_print_exception): Update.
560 * mi/mi-interp.c (mi_cmd_interpreter_exec): Use SCOPE_EXIT.
561 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
562 * linux-nat.c (linux_nat_target::attach): Update.
563 * linux-fork.c (class scoped_switch_fork_info): Update.
564 * infrun.c (displaced_step_prepare): Update.
565 * infcall.c (call_function_by_hand_dummy): Update.
566 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception): Update.
567 * gnu-v3-abi.c (print_one_vtable): Update.
568 * frame.c (get_prev_frame_always): Update.
569 * f-valprint.c (info_common_command_for_block): Update.
570 * exec.c (try_open_exec_file): Update.
571 * exceptions.c (print_exception, exception_print)
572 (exception_fprintf, exception_print_same): Update.
573 * dwarf2-frame.c (dwarf2_build_frame_info): Update.
574 * dwarf-index-cache.c (index_cache::store)
575 (index_cache::lookup_gdb_index): Update.
576 * darwin-nat.c (maybe_cache_shell): Update.
577 * cp-valprint.c (cp_print_value_fields): Update.
578 * compile/compile-cplus-symbols.c (gcc_cplus_convert_symbol)
579 (gcc_cplus_symbol_address): Update.
580 * compile/compile-c-symbols.c (gcc_convert_symbol)
581 (gcc_symbol_address, generate_c_for_for_one_variable): Update.
582 * common/selftest.c: Update.
583 * common/common-exceptions.h (struct gdb_exception) <message>: Now
584 a std::string.
585 (exception_try_scope_entry, exception_try_scope_exit): Don't
586 declare.
587 (struct exception_try_scope): Remove.
588 (TRY): Don't use exception_try_scope.
589 (struct gdb_exception): Add constructor, operator=.
590 <what>: New method.
591 (struct gdb_exception_RETURN_MASK_ALL)
592 (struct gdb_exception_RETURN_MASK_ERROR)
593 (struct gdb_exception_RETURN_MASK_QUIT): Add constructor.
594 (struct gdb_quit_bad_alloc): Update.
595 * common/common-exceptions.c (exception_none): Change
596 initializer.
597 (struct catcher) <state, exception>: Initialize inline.
598 <prev>: Remove member.
599 (current_catcher): Remove.
600 (catchers): New global.
601 (exceptions_state_mc_init): Simplify.
602 (catcher_pop): Remove.
603 (exceptions_state_mc, exceptions_state_mc_catch): Update.
604 (try_scope_depth, exception_try_scope_entry)
605 (exception_try_scope_exit): Remove.
606 (throw_exception_sjlj): Update.
607 (exception_messages, exception_messages_size): Remove.
608 (throw_it): Simplify.
609 (gdb_exception_sliced_copy): Remove.
610 (throw_exception_cxx): Update.
611 * cli/cli-script.c (script_from_file): Update.
612 * breakpoint.c (insert_bp_location, update_breakpoint_locations):
613 Update.
614 * ada-valprint.c (ada_val_print): Update.
615 * ada-lang.c (ada_to_fixed_type_1, ada_exception_name_addr)
616 (create_excep_cond_exprs): Update.
617
618 2019-04-08 Tom Tromey <tom@tromey.com>
619
620 * common/common-exceptions.h (GDB_XCPT_SJMP, GDB_XCPT_TRY)
621 (GDB_XCPT_RAW_TRY, GDB_XCPT): Remove.
622 (TRY, CATCH, END_CATCH): Remove some definitions.
623 * common/common-exceptions.c: Don't use GDB_XCPT.
624 (catcher_list_size): Remove.
625 (throw_exception, throw_it): Simplify.
626
627 2019-04-05 Tom Tromey <tom@tromey.com>
628
629 Revert the header-sorting patch.
630 * ft32-tdep.c: Revert.
631 * frv-tdep.c: Revert.
632 * frv-linux-tdep.c: Revert.
633 * frame.c: Revert.
634 * frame-unwind.c: Revert.
635 * frame-base.c: Revert.
636 * fork-child.c: Revert.
637 * findvar.c: Revert.
638 * findcmd.c: Revert.
639 * filesystem.c: Revert.
640 * filename-seen-cache.h: Revert.
641 * filename-seen-cache.c: Revert.
642 * fbsd-tdep.c: Revert.
643 * fbsd-nat.h: Revert.
644 * fbsd-nat.c: Revert.
645 * f-valprint.c: Revert.
646 * f-typeprint.c: Revert.
647 * f-lang.c: Revert.
648 * extension.h: Revert.
649 * extension.c: Revert.
650 * extension-priv.h: Revert.
651 * expprint.c: Revert.
652 * exec.h: Revert.
653 * exec.c: Revert.
654 * exceptions.c: Revert.
655 * event-top.c: Revert.
656 * event-loop.c: Revert.
657 * eval.c: Revert.
658 * elfread.c: Revert.
659 * dwarf2read.h: Revert.
660 * dwarf2read.c: Revert.
661 * dwarf2loc.c: Revert.
662 * dwarf2expr.h: Revert.
663 * dwarf2expr.c: Revert.
664 * dwarf2-frame.c: Revert.
665 * dwarf2-frame-tailcall.c: Revert.
666 * dwarf-index-write.h: Revert.
667 * dwarf-index-write.c: Revert.
668 * dwarf-index-common.c: Revert.
669 * dwarf-index-cache.h: Revert.
670 * dwarf-index-cache.c: Revert.
671 * dummy-frame.c: Revert.
672 * dtrace-probe.c: Revert.
673 * disasm.h: Revert.
674 * disasm.c: Revert.
675 * disasm-selftests.c: Revert.
676 * dictionary.c: Revert.
677 * dicos-tdep.c: Revert.
678 * demangle.c: Revert.
679 * dcache.h: Revert.
680 * dcache.c: Revert.
681 * darwin-nat.h: Revert.
682 * darwin-nat.c: Revert.
683 * darwin-nat-info.c: Revert.
684 * d-valprint.c: Revert.
685 * d-namespace.c: Revert.
686 * d-lang.c: Revert.
687 * ctf.c: Revert.
688 * csky-tdep.c: Revert.
689 * csky-linux-tdep.c: Revert.
690 * cris-tdep.c: Revert.
691 * cris-linux-tdep.c: Revert.
692 * cp-valprint.c: Revert.
693 * cp-support.c: Revert.
694 * cp-namespace.c: Revert.
695 * cp-abi.c: Revert.
696 * corelow.c: Revert.
697 * corefile.c: Revert.
698 * continuations.c: Revert.
699 * completer.h: Revert.
700 * completer.c: Revert.
701 * complaints.c: Revert.
702 * coffread.c: Revert.
703 * coff-pe-read.c: Revert.
704 * cli-out.h: Revert.
705 * cli-out.c: Revert.
706 * charset.c: Revert.
707 * c-varobj.c: Revert.
708 * c-valprint.c: Revert.
709 * c-typeprint.c: Revert.
710 * c-lang.c: Revert.
711 * buildsym.c: Revert.
712 * buildsym-legacy.c: Revert.
713 * build-id.h: Revert.
714 * build-id.c: Revert.
715 * btrace.c: Revert.
716 * bsd-uthread.c: Revert.
717 * breakpoint.h: Revert.
718 * breakpoint.c: Revert.
719 * break-catch-throw.c: Revert.
720 * break-catch-syscall.c: Revert.
721 * break-catch-sig.c: Revert.
722 * blockframe.c: Revert.
723 * block.c: Revert.
724 * bfin-tdep.c: Revert.
725 * bfin-linux-tdep.c: Revert.
726 * bfd-target.c: Revert.
727 * bcache.c: Revert.
728 * ax-general.c: Revert.
729 * ax-gdb.h: Revert.
730 * ax-gdb.c: Revert.
731 * avr-tdep.c: Revert.
732 * auxv.c: Revert.
733 * auto-load.c: Revert.
734 * arm-wince-tdep.c: Revert.
735 * arm-tdep.c: Revert.
736 * arm-symbian-tdep.c: Revert.
737 * arm-pikeos-tdep.c: Revert.
738 * arm-obsd-tdep.c: Revert.
739 * arm-nbsd-tdep.c: Revert.
740 * arm-nbsd-nat.c: Revert.
741 * arm-linux-tdep.c: Revert.
742 * arm-linux-nat.c: Revert.
743 * arm-fbsd-tdep.c: Revert.
744 * arm-fbsd-nat.c: Revert.
745 * arm-bsd-tdep.c: Revert.
746 * arch-utils.c: Revert.
747 * arc-tdep.c: Revert.
748 * arc-newlib-tdep.c: Revert.
749 * annotate.h: Revert.
750 * annotate.c: Revert.
751 * amd64-windows-tdep.c: Revert.
752 * amd64-windows-nat.c: Revert.
753 * amd64-tdep.c: Revert.
754 * amd64-sol2-tdep.c: Revert.
755 * amd64-obsd-tdep.c: Revert.
756 * amd64-obsd-nat.c: Revert.
757 * amd64-nbsd-tdep.c: Revert.
758 * amd64-nbsd-nat.c: Revert.
759 * amd64-nat.c: Revert.
760 * amd64-linux-tdep.c: Revert.
761 * amd64-linux-nat.c: Revert.
762 * amd64-fbsd-tdep.c: Revert.
763 * amd64-fbsd-nat.c: Revert.
764 * amd64-dicos-tdep.c: Revert.
765 * amd64-darwin-tdep.c: Revert.
766 * amd64-bsd-nat.c: Revert.
767 * alpha-tdep.c: Revert.
768 * alpha-obsd-tdep.c: Revert.
769 * alpha-nbsd-tdep.c: Revert.
770 * alpha-mdebug-tdep.c: Revert.
771 * alpha-linux-tdep.c: Revert.
772 * alpha-linux-nat.c: Revert.
773 * alpha-bsd-tdep.c: Revert.
774 * alpha-bsd-nat.c: Revert.
775 * aix-thread.c: Revert.
776 * agent.c: Revert.
777 * addrmap.c: Revert.
778 * ada-varobj.c: Revert.
779 * ada-valprint.c: Revert.
780 * ada-typeprint.c: Revert.
781 * ada-tasks.c: Revert.
782 * ada-lang.c: Revert.
783 * aarch64-tdep.c: Revert.
784 * aarch64-ravenscar-thread.c: Revert.
785 * aarch64-newlib-tdep.c: Revert.
786 * aarch64-linux-tdep.c: Revert.
787 * aarch64-linux-nat.c: Revert.
788 * aarch64-fbsd-tdep.c: Revert.
789 * aarch64-fbsd-nat.c: Revert.
790 * aarch32-linux-nat.c: Revert.
791
792 2019-04-05 Tom Tromey <tom@tromey.com>
793
794 * ft32-tdep.c: Sort headers.
795 * frv-tdep.c: Sort headers.
796 * frv-linux-tdep.c: Sort headers.
797 * frame.c: Sort headers.
798 * frame-unwind.c: Sort headers.
799 * frame-base.c: Sort headers.
800 * fork-child.c: Sort headers.
801 * findvar.c: Sort headers.
802 * findcmd.c: Sort headers.
803 * filesystem.c: Sort headers.
804 * filename-seen-cache.h: Sort headers.
805 * filename-seen-cache.c: Sort headers.
806 * fbsd-tdep.c: Sort headers.
807 * fbsd-nat.h: Sort headers.
808 * fbsd-nat.c: Sort headers.
809 * f-valprint.c: Sort headers.
810 * f-typeprint.c: Sort headers.
811 * f-lang.c: Sort headers.
812 * extension.h: Sort headers.
813 * extension.c: Sort headers.
814 * extension-priv.h: Sort headers.
815 * expprint.c: Sort headers.
816 * exec.h: Sort headers.
817 * exec.c: Sort headers.
818 * exceptions.c: Sort headers.
819 * event-top.c: Sort headers.
820 * event-loop.c: Sort headers.
821 * eval.c: Sort headers.
822 * elfread.c: Sort headers.
823 * dwarf2read.h: Sort headers.
824 * dwarf2read.c: Sort headers.
825 * dwarf2loc.c: Sort headers.
826 * dwarf2expr.h: Sort headers.
827 * dwarf2expr.c: Sort headers.
828 * dwarf2-frame.c: Sort headers.
829 * dwarf2-frame-tailcall.c: Sort headers.
830 * dwarf-index-write.h: Sort headers.
831 * dwarf-index-write.c: Sort headers.
832 * dwarf-index-common.c: Sort headers.
833 * dwarf-index-cache.h: Sort headers.
834 * dwarf-index-cache.c: Sort headers.
835 * dummy-frame.c: Sort headers.
836 * dtrace-probe.c: Sort headers.
837 * disasm.h: Sort headers.
838 * disasm.c: Sort headers.
839 * disasm-selftests.c: Sort headers.
840 * dictionary.c: Sort headers.
841 * dicos-tdep.c: Sort headers.
842 * demangle.c: Sort headers.
843 * dcache.h: Sort headers.
844 * dcache.c: Sort headers.
845 * darwin-nat.h: Sort headers.
846 * darwin-nat.c: Sort headers.
847 * darwin-nat-info.c: Sort headers.
848 * d-valprint.c: Sort headers.
849 * d-namespace.c: Sort headers.
850 * d-lang.c: Sort headers.
851 * ctf.c: Sort headers.
852 * csky-tdep.c: Sort headers.
853 * csky-linux-tdep.c: Sort headers.
854 * cris-tdep.c: Sort headers.
855 * cris-linux-tdep.c: Sort headers.
856 * cp-valprint.c: Sort headers.
857 * cp-support.c: Sort headers.
858 * cp-namespace.c: Sort headers.
859 * cp-abi.c: Sort headers.
860 * corelow.c: Sort headers.
861 * corefile.c: Sort headers.
862 * continuations.c: Sort headers.
863 * completer.h: Sort headers.
864 * completer.c: Sort headers.
865 * complaints.c: Sort headers.
866 * coffread.c: Sort headers.
867 * coff-pe-read.c: Sort headers.
868 * cli-out.h: Sort headers.
869 * cli-out.c: Sort headers.
870 * charset.c: Sort headers.
871 * c-varobj.c: Sort headers.
872 * c-valprint.c: Sort headers.
873 * c-typeprint.c: Sort headers.
874 * c-lang.c: Sort headers.
875 * buildsym.c: Sort headers.
876 * buildsym-legacy.c: Sort headers.
877 * build-id.h: Sort headers.
878 * build-id.c: Sort headers.
879 * btrace.c: Sort headers.
880 * bsd-uthread.c: Sort headers.
881 * breakpoint.h: Sort headers.
882 * breakpoint.c: Sort headers.
883 * break-catch-throw.c: Sort headers.
884 * break-catch-syscall.c: Sort headers.
885 * break-catch-sig.c: Sort headers.
886 * blockframe.c: Sort headers.
887 * block.c: Sort headers.
888 * bfin-tdep.c: Sort headers.
889 * bfin-linux-tdep.c: Sort headers.
890 * bfd-target.c: Sort headers.
891 * bcache.c: Sort headers.
892 * ax-general.c: Sort headers.
893 * ax-gdb.h: Sort headers.
894 * ax-gdb.c: Sort headers.
895 * avr-tdep.c: Sort headers.
896 * auxv.c: Sort headers.
897 * auto-load.c: Sort headers.
898 * arm-wince-tdep.c: Sort headers.
899 * arm-tdep.c: Sort headers.
900 * arm-symbian-tdep.c: Sort headers.
901 * arm-pikeos-tdep.c: Sort headers.
902 * arm-obsd-tdep.c: Sort headers.
903 * arm-nbsd-tdep.c: Sort headers.
904 * arm-nbsd-nat.c: Sort headers.
905 * arm-linux-tdep.c: Sort headers.
906 * arm-linux-nat.c: Sort headers.
907 * arm-fbsd-tdep.c: Sort headers.
908 * arm-fbsd-nat.c: Sort headers.
909 * arm-bsd-tdep.c: Sort headers.
910 * arch-utils.c: Sort headers.
911 * arc-tdep.c: Sort headers.
912 * arc-newlib-tdep.c: Sort headers.
913 * annotate.h: Sort headers.
914 * annotate.c: Sort headers.
915 * amd64-windows-tdep.c: Sort headers.
916 * amd64-windows-nat.c: Sort headers.
917 * amd64-tdep.c: Sort headers.
918 * amd64-sol2-tdep.c: Sort headers.
919 * amd64-obsd-tdep.c: Sort headers.
920 * amd64-obsd-nat.c: Sort headers.
921 * amd64-nbsd-tdep.c: Sort headers.
922 * amd64-nbsd-nat.c: Sort headers.
923 * amd64-nat.c: Sort headers.
924 * amd64-linux-tdep.c: Sort headers.
925 * amd64-linux-nat.c: Sort headers.
926 * amd64-fbsd-tdep.c: Sort headers.
927 * amd64-fbsd-nat.c: Sort headers.
928 * amd64-dicos-tdep.c: Sort headers.
929 * amd64-darwin-tdep.c: Sort headers.
930 * amd64-bsd-nat.c: Sort headers.
931 * alpha-tdep.c: Sort headers.
932 * alpha-obsd-tdep.c: Sort headers.
933 * alpha-nbsd-tdep.c: Sort headers.
934 * alpha-mdebug-tdep.c: Sort headers.
935 * alpha-linux-tdep.c: Sort headers.
936 * alpha-linux-nat.c: Sort headers.
937 * alpha-bsd-tdep.c: Sort headers.
938 * alpha-bsd-nat.c: Sort headers.
939 * aix-thread.c: Sort headers.
940 * agent.c: Sort headers.
941 * addrmap.c: Sort headers.
942 * ada-varobj.c: Sort headers.
943 * ada-valprint.c: Sort headers.
944 * ada-typeprint.c: Sort headers.
945 * ada-tasks.c: Sort headers.
946 * ada-lang.c: Sort headers.
947 * aarch64-tdep.c: Sort headers.
948 * aarch64-ravenscar-thread.c: Sort headers.
949 * aarch64-newlib-tdep.c: Sort headers.
950 * aarch64-linux-tdep.c: Sort headers.
951 * aarch64-linux-nat.c: Sort headers.
952 * aarch64-fbsd-tdep.c: Sort headers.
953 * aarch64-fbsd-nat.c: Sort headers.
954 * aarch32-linux-nat.c: Sort headers.
955
956 2019-04-04 Tom Tromey <tom@tromey.com>
957
958 * varobj.c (varobj_create): Update.
959 * rust-exp.y (struct rust_parser) <update_innermost_block,
960 lookup_symbol>: New methods.
961 (rust_parser::update_innermost_block, rust_parser::lookup_symbol):
962 Rename.
963 (rust_parser::rust_lookup_type)
964 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
965 * printcmd.c (display_command, do_one_display): Update.
966 * parser-defs.h (struct parser_state) <parser_state>: Add
967 "tracker" parameter.
968 (block_tracker): New member.
969 (class innermost_block_tracker) <innermost_block_tracker>: Add
970 "types" parameter.
971 <reset>: Remove method.
972 (innermost_block): Don't declare.
973 (null_post_parser): Update.
974 * parse.c (innermost_block): Remove global.
975 (write_dollar_variable): Update.
976 (parse_exp_1, parse_exp_in_context): Add "tracker" parameter.
977 Remove "tracker_types" parameter.
978 (parse_expression): Add "tracker" parameter.
979 (parse_expression_for_completion): Update.
980 (null_post_parser): Add "tracker" parameter.
981 * p-exp.y: Update rules.
982 * m2-exp.y: Update rules.
983 * language.h (struct language_defn) <la_post_parser>: Add
984 "tracker" parameter.
985 * go-exp.y: Update rules.
986 * f-exp.y: Update rules.
987 * expression.h (parse_expression, parse_exp_1): Add "tracker"
988 parameter.
989 * d-exp.y: Update rules.
990 * c-exp.y: Update rules.
991 * breakpoint.c (set_breakpoint_condition): Create an
992 innermost_block_tracker.
993 (watch_command_1): Likewise.
994 * ada-lang.c (resolve): Add "tracker" parameter.
995 (resolve_subexp): Likewise.
996 * ada-exp.y (write_var_from_sym): Update.
997
998 2019-04-04 Tom Tromey <tom@tromey.com>
999
1000 * type-stack.h: New file.
1001 * type-stack.c: New file.
1002 * parser-defs.h (enum type_pieces, union type_stack_elt): Move to
1003 type-stack.h.
1004 (insert_into_type_stack, insert_type, push_type, push_type_int)
1005 (insert_type_address_space, pop_type, pop_type_int)
1006 (pop_typelist, pop_type_stack, append_type_stack)
1007 (push_type_stack, get_type_stack, push_typelist)
1008 (follow_type_instance_flags, follow_types): Don't declare.
1009 * parse.c (type_stack): Remove global.
1010 (parse_exp_in_context): Update.
1011 (insert_into_type_stack, insert_type, push_type, push_type_int)
1012 (insert_type_address_space, pop_type, pop_type_int)
1013 (pop_typelist, pop_type_stack, append_type_stack)
1014 (push_type_stack, get_type_stack, push_typelist)
1015 (follow_type_instance_flags, follow_types): Remove (moved to
1016 type-stack.c).
1017 * f-exp.y (type_stack): New global.
1018 Update rules.
1019 (push_kind_type, f_parse): Update.
1020 * d-exp.y (type_stack): New global.
1021 Update rules.
1022 (d_parse): Update.
1023 * c-exp.y (struct c_parse_state) <type_stack>: New member.
1024 Update rules.
1025 * Makefile.in (COMMON_SFILES): Add type-stack.c.
1026 (HFILES_NO_SRCDIR): Add type-stack.h.
1027
1028 2019-04-04 Tom Tromey <tom@tromey.com>
1029
1030 * rust-exp.y (rust_parser::lex_identifier, rustyylex)
1031 (rust_parser::convert_ast_to_expression, rust_parse)
1032 (rust_lex_test_completion, rust_lex_tests): Update.
1033 * parser-defs.h (struct expr_completion_state): New.
1034 (struct parser_state) <parser_state>: Add completion parameter.
1035 <mark_struct_expression, mark_completion_tag>: New methods.
1036 <parse_completion, m_completion_state>: New members.
1037 (prefixify_expression, null_post_parser): Update.
1038 (mark_struct_expression, mark_completion_tag): Don't declare.
1039 * parse.c (parse_completion, expout_last_struct)
1040 (expout_tag_completion_type, expout_completion_name): Remove
1041 globals.
1042 (parser_state::mark_struct_expression)
1043 (parser_state::mark_completion_tag): Now methods.
1044 (prefixify_expression): Add last_struct parameter.
1045 (prefixify_subexp): Likewise.
1046 (parse_exp_1): Update.
1047 (parse_exp_in_context): Add cstate parameter. Update.
1048 (parse_expression_for_completion): Create an
1049 expr_completion_state.
1050 (null_post_parser): Add "completion" parameter.
1051 * p-exp.y: Update rules.
1052 (yylex): Update.
1053 * language.h (struct language_defn) <la_post_parser>: Add
1054 "completing" parameter.
1055 * go-exp.y: Update rules.
1056 (lex_one_token): Update.
1057 * expression.h (parse_completion): Don't declare.
1058 * d-exp.y: Update rules.
1059 (lex_one_token): Update rules.
1060 * c-exp.y: Update rules.
1061 (lex_one_token): Update.
1062 * ada-lang.c (resolve): Add "parse_completion" parameter.
1063 (resolve_subexp): Likewise.
1064 (ada_resolve_function): Likewise.
1065
1066 2019-04-04 Tom Tromey <tom@tromey.com>
1067
1068 * parser-defs.h (struct parser_state) <start_arglist,
1069 end_arglist>: New methods.
1070 <arglist_len, m_funcall_chain>: New members.
1071 (arglist_len, start_arglist, end_arglist): Don't declare.
1072 * parse.c (arglist_len, funcall_chain): Remove global.
1073 (start_arglist, end_arglist): Remove functions.
1074 (parse_exp_in_context): Update.
1075 * p-exp.y: Update rules.
1076 * m2-exp.y: Update rules.
1077 * go-exp.y: Update rules.
1078 * f-exp.y: Update rules.
1079 * d-exp.y: Update rules.
1080 * c-exp.y: Update rules.
1081
1082 2019-04-04 Tom Tromey <tom@tromey.com>
1083
1084 * rust-exp.y (struct rust_parser) <lex_hex, lex_escape,
1085 lex_operator, push_back>: New methods.
1086 Update all rules.
1087 (rust_parser::lex_hex, lex_escape): Rename and update.
1088 (rust_parser::lex_string, rust_parser::lex_identifier): Update.
1089 (rust_parser::lex_operator): Rename and update.
1090 (rust_parser::lex_number, rustyylex, rustyyerror)
1091 (rust_lex_test_init, rust_lex_test_sequence)
1092 (rust_lex_test_push_back, rust_lex_tests): Update.
1093 * parser-defs.h (struct parser_state) <parser_state>: Add "input"
1094 parameter.
1095 <lexptr, prev_lexptr>: New members.
1096 (lexptr, prev_lexptr): Don't declare.
1097 * parse.c (lexptr, prev_lexptr): Remove globals.
1098 (parse_exp_in_context): Update.
1099 * p-exp.y (yylex, yyerror): Update.
1100 * m2-exp.y (parse_number, yylex, yyerror): Update.
1101 * go-exp.y (lex_one_token, yyerror): Update.
1102 * f-exp.y (match_string_literal, yylex, yyerror): Update.
1103 * d-exp.y (lex_one_token, yyerror): Update.
1104 * c-exp.y (scan_macro_expansion, finished_macro_expansion)
1105 (lex_one_token, yyerror): Update.
1106 * ada-lex.l (YY_INPUT): Update.
1107 (rewind_to_char): Update.
1108 * ada-exp.y (yyerror): Update.
1109
1110 2019-04-04 Tom Tromey <tom@tromey.com>
1111
1112 * rust-exp.y (rustyylex, rust_lex_tests): Update.
1113 * parser-defs.h (struct parser_state) <parser_state>: Add new
1114 parameter.
1115 <comma_terminates>: New member.
1116 (comma_terminates): Don't declare global.
1117 * parse.c (comma_terminates): Remove global.
1118 (parse_exp_in_context): Update.
1119 * p-exp.y (yylex): Update.
1120 * m2-exp.y (yylex): Update.
1121 * go-exp.y (lex_one_token): Update.
1122 * f-exp.y (yylex): Update.
1123 * d-exp.y (lex_one_token): Update.
1124 * c-exp.y (lex_one_token): Update.
1125 * ada-lex.l: Update.
1126
1127 2019-04-04 Tom Tromey <tom@tromey.com>
1128
1129 * rust-exp.y (struct rust_parser) <paren_depth>: New member.
1130 (rustyylex, rust_lex_test_init, rust_lex_test_one)
1131 (rust_lex_test_sequence, rust_lex_test_push_back): Update.
1132 * parser-defs.h (paren_depth): Don't declare.
1133 * parse.c (paren_depth): Remove global.
1134 (parse_exp_in_context): Update.
1135 * p-exp.y (paren_depth): New global.
1136 (pascal_parse): Initialize it.
1137 * m2-exp.y (paren_depth): New global.
1138 (m2_parse): Initialize it.
1139 * go-exp.y (paren_depth): New global.
1140 (go_parse): Initialize it.
1141 * f-exp.y (paren_depth): New global.
1142 (f_parse): Initialize it.
1143 * d-exp.y (paren_depth): New global.
1144 (d_parse): Initialize it.
1145 * c-exp.y (paren_depth): New global.
1146 (c_parse): Initialize it.
1147 * ada-lex.l (paren_depth): New global.
1148 (lexer_init): Initialize it.
1149
1150 2019-04-04 Tom Tromey <tom@tromey.com>
1151
1152 * rust-exp.y (rust_parser::crate_name, rust_parser::super_name)
1153 (rust_parser::convert_ast_to_type)
1154 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
1155 * parser-defs.h (struct parser_state) <parser_state>: Add
1156 parameters. Initialize new members.
1157 <expression_context_block, expression_context_pc>: New members.
1158 * parse.c (expression_context_block, expression_context_pc):
1159 Remove globals.
1160 (parse_exp_in_context): Update.
1161 * p-exp.y: Update all rules.
1162 (yylex): Update.
1163 * m2-exp.y: Update all rules.
1164 (yylex): Update.
1165 * go-exp.y (yylex): Update.
1166 * f-exp.y (yylex): Update.
1167 * d-exp.y: Update all rules.
1168 (yylex): Update.
1169 * c-exp.y: Update all rules.
1170 (lex_one_token, classify_name, yylex, c_parse): Update.
1171 * ada-exp.y (write_var_or_type, write_name_assoc): Update.
1172
1173 2019-04-04 Tom Tromey <tom@tromey.com>
1174
1175 * gdbarch.h, gdbarch.c: Rebuild.
1176 * gdbarch.sh (dtrace_parse_probe_argument): Change type.
1177 * stap-probe.h:
1178 (struct stap_parse_info): Replace "parser_state" with
1179 "expr_builder".
1180 * parser-defs.h (struct expr_builder): Rename from "parser_state".
1181 (parser_state): New class.
1182 * parse.c (expr_builder): Rename.
1183 (expr_builder::release): Rename.
1184 (write_exp_elt, write_exp_elt_opcode, write_exp_elt_sym)
1185 (write_exp_elt_msym, write_exp_elt_block, write_exp_elt_objfile)
1186 (write_exp_elt_longcst, write_exp_elt_floatcst)
1187 (write_exp_elt_type, write_exp_elt_intern, write_exp_string)
1188 (write_exp_string_vector, write_exp_bitstring)
1189 (write_exp_msymbol, mark_struct_expression)
1190 (write_dollar_variable)
1191 (insert_type_address_space, increase_expout_size): Replace
1192 "parser_state" with "expr_builder".
1193 * dtrace-probe.c: Replace "parser_state" with "expr_builder".
1194 * amd64-linux-tdep.c (amd64_dtrace_parse_probe_argument): Replace
1195 "parser_state" with "expr_builder".
1196
1197 2019-04-04 Tom Tromey <tom@tromey.com>
1198
1199 * rust-exp.y: Replace "parse_language" with method call.
1200 * p-exp.y:
1201 (yylex): Replace "parse_language" with method call.
1202 * m2-exp.y:
1203 (yylex): Replace "parse_language" with method call.
1204 * go-exp.y (classify_name): Replace "parse_language" with method
1205 call.
1206 * f-exp.y (yylex): Replace "parse_language" with method call.
1207 * d-exp.y (lex_one_token): Replace "parse_language" with method
1208 call.
1209 * c-exp.y:
1210 (lex_one_token, classify_name, yylex): Replace "parse_language"
1211 with method call.
1212 * ada-exp.y (find_primitive_type, type_char)
1213 (type_system_address): Replace "parse_language" with method call.
1214
1215 2019-04-04 Tom Tromey <tom@tromey.com>
1216
1217 * rust-exp.y: Replace "parse_gdbarch" with method call.
1218 * parse.c (write_dollar_variable, insert_type_address_space):
1219 Replace "parse_gdbarch" with method call.
1220 * p-exp.y (parse_type, yylex): Replace "parse_gdbarch" with method
1221 call.
1222 * objc-lang.c (end_msglist): Replace "parse_gdbarch" with method
1223 call.
1224 * m2-exp.y (parse_type, parse_m2_type, yylex): Replace
1225 "parse_gdbarch" with method call.
1226 * go-exp.y (parse_type, classify_name): Replace "parse_gdbarch"
1227 with method call.
1228 * f-exp.y (parse_type, parse_f_type, yylex): Replace
1229 "parse_gdbarch" with method call.
1230 * d-exp.y (parse_type, parse_d_type, lex_one_token): Replace
1231 "parse_gdbarch" with method call.
1232 * c-exp.y (parse_type, parse_number, classify_name): Replace
1233 "parse_gdbarch" with method call.
1234 * ada-lex.l: Replace "parse_gdbarch" with method call.
1235 * ada-exp.y (parse_type, find_primitive_type, type_char)
1236 (type_system_address): Replace "parse_gdbarch" with method call.
1237
1238 2019-04-04 Tom Tromey <tom@tromey.com>
1239
1240 * dtrace-probe.c (dtrace_probe::build_arg_exprs): Update.
1241 * stap-probe.c (stap_parse_argument): Update.
1242 * stap-probe.h (struct stap_parse_info) <stap_parse_info>: Remove
1243 initial_size parameter.
1244 * rust-exp.y (rust_lex_tests): Update.
1245 * parse.c (parser_state): Update.
1246 (parse_exp_in_context): Update.
1247 * parser-defs.h (struct parser_state) <parser_state>: Remove
1248 "initial_size" parameter.
1249
1250 2019-04-04 Tom Tromey <tom@tromey.com>
1251
1252 * parser-defs.h (increase_expout_size): Don't declare.
1253 * parse.c (increase_expout_size): Now static.
1254
1255 2019-04-04 Thomas Schwinge <thomas@codesourcery.com>
1256
1257 * gnu-nat.c (gnu_nat_target::wait): Fix
1258 target_waitstatus_to_string call.
1259
1260 2019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
1261
1262 * eval.c (evaluate_subexp_standard): Handle internal functions
1263 during Fortran function call handling.
1264
1265 2019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
1266
1267 * NEWS: Mention new internal functions.
1268 * dwarf2read.c (dwarf2_init_complex_target_type): New function.
1269 (read_base_type): Use dwarf2_init_complex_target_type.
1270 * value.c (creal_internal_fn): New function.
1271 (cimag_internal_fn): New function.
1272 (_initialize_values): Register new internal functions.
1273
1274 2019-04-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1275
1276 * infrun.c (stop_all_threads): If debug_infrun, always
1277 trace the wait status after wait_one, using
1278 target_waitstatus_to_string and target_pid_to_str.
1279 (handle_inferior_event): Replace various trace of
1280 wait status kind by a single trace.
1281 * gdb/gnu-nat.c (gnu_nat_target::wait): Replace local
1282 wait status kind image by target_waitstatus_to_string.
1283 * target/waitstatus.c (target_waitstatus_to_string): Fix
1284 obsolete comment.
1285
1286 2019-04-01 Tom Tromey <tromey@adacore.com>
1287
1288 PR symtab/23331:
1289 * dwarf2read.c (partial_die_info::read): Handle DW_AT_ranges.
1290
1291 2019-04-01 Sergio Durigan Junior <sergiodj@redhat.com>
1292 Pedro Alves <palves@redhat.com>
1293
1294 * top.c (quit_force): Call 'finalize_values'.
1295 * value.c (finalize_values): New function.
1296 * value.h (finalize_values): Declare.
1297
1298 2019-03-30 Eli Zaretskii <eliz@gnu.org>
1299
1300 * NEWS: Announce $_gdb_major and $_gdb_minor.
1301
1302 * top.c (init_gdb_version_vars): New function.
1303 (gdb_init): Call init_gdb_version_vars.
1304
1305 2019-03-29 Tom Tromey <tromey@adacore.com>
1306
1307 * printcmd.c (_initialize_printcmd): Add usage lines. Update some
1308 help text. Remove dead code.
1309
1310 2019-03-29 Keith Seitz <keiths@redhat.com>
1311
1312 From Siddhesh Poyarekar:
1313 * f-lang.h (f77_get_upperbound): Return LONGEST.
1314 (f77_get_lowerbound): Likewise.
1315 * f-typeprint.c (f_type_print_varspec_suffix): Expand
1316 UPPER_BOUND and LOWER_BOUND to LONGEST. Use plongest to format
1317 print them.
1318 (f_type_print_base): Expand UPPER_BOUND to LONGEST. Use
1319 plongest to format print it.
1320 * f-valprint.c (f77_get_lowerbound): Return LONGEST.
1321 (f77_get_upperbound): Likewise.
1322 (f77_get_dynamic_length_of_aggregate): Expand UPPER_BOUND,
1323 LOWER_BOUND to LONGEST.
1324 (f77_create_arrayprint_offset_tbl): Likewise.
1325
1326 2019-03-29 Keith Seitz <keiths@redhat.com>
1327
1328 * ada-lang.c (ada_template_to_fixed_record_type_1): Use
1329 %s/pulongest for TYPE_LENGTH instead of %d in format
1330 strings.
1331 * ada-typerint.c (ada_print_type): Likewise.
1332 * amd64-windows-tdep.c (amd64_windows_store_arg_in_reg): Likewise.
1333 * compile/compile-c-support.c (generate_register_struct): Likewise.
1334 * gdbtypes.c (recursive_dump_type): Likewise.
1335 * gdbtypes.h (struct type) <length>: Change type to ULONGEST.
1336 * m2-typeprint.c (m2_array): Use %s/pulongest for TYPE_LENGTH
1337 instead of %d in format strings.
1338 * riscv-tdep.c (riscv_type_alignment): Cast second argument
1339 to std::min to ULONGEST.
1340 * symmisc.c (print_symbol): Use %s/pulongest for TYPE_LENGTH
1341 instead of %d in format strings.
1342 * tracepoint.c (info_scope_command): Likewise.
1343 * typeprint.c (print_offset_data::update)
1344 (print_offset_data::finish): Likewise.
1345 * xtensa-tdep.c (xtensa_store_return_value)
1346 (xtensa_push_dummy_call): Likewise.
1347
1348 2019-03-28 Jon Turney <jon.turney@dronecode.org.uk>
1349
1350 * windows-nat.c (display_selector): Fixed format specifications
1351 for 64-bit Cygwin.
1352
1353 2019-03-28 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1354
1355 * infrun.c (follow_exec): Call target_terminal::ours_for_output.
1356
1357 2019-03-28 Sandra Loosemore <sandra@codesourcery.com>
1358
1359 * nios2-tdep.h (struct gdbarch_tdep): Add is_kernel_helper.
1360 * nios2-tdep.c (nios2_get_next_pc): Skip over kernel helpers.
1361 * nios2-linux-tdep.c (nios2_linux_is_kernel_helper): New.
1362 (nios2_linux_init_abi): Install it.
1363
1364 2019-03-28 Alan Hayward <alan.hayward@arm.com>
1365
1366 * aarch64-tdep.c (aarch64_vnv_type): Use vector types.
1367
1368 2019-03-28 Alan Hayward <alan.hayward@arm.com>
1369
1370 * features/aarch64-sve.c (create_feature_aarch64_sve): Add q view.
1371
1372 2019-03-24 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1373 Tom Tromey <tromey@adacore.com>
1374
1375 * minsyms.c (minimal_symbol_upper_bound): Fix buffer overflow.
1376
1377 2019-03-26 Joel Brobecker <brobecker@adacore.com>
1378
1379 * gdb-gdb.py.in (StructMainTypePrettyPrinter.bound_img): New method.
1380 (StructMainTypePrettyPrinter.bounds_img): Use new "bound_img"
1381 method to compute the bounds of range types. Also print "[evaluated]"
1382 if the bounds' values come from a dynamic evaluation.
1383
1384 2019-03-26 Andrew Burgess <andrew.burgess@embecosm.com>
1385
1386 * cp-valprint.c (cp_print_value_fields): Don't print trailing
1387 whitespace when pretty printing is on.
1388
1389 2019-03-26 Alan Hayward <alan.hayward@arm.com>
1390
1391 * ppc-linux-nat.c: Add include.
1392
1393 2019-03-26 Alan Hayward <alan.hayward@arm.com>
1394
1395 * NEWS: Mention AArch64 Pointer Authentication.
1396
1397 2019-03-26 Alan Hayward <alan.hayward@arm.com>
1398
1399 * arm-linux-nat.c: Add include.
1400
1401 2019-03-25 Simon Marchi <simon.marchi@polymtl.ca>
1402
1403 * source-cache.c (source_cache::get_source_lines): Re-read
1404 fullname after calling open_source_file.
1405
1406 2019-03-25 John Baldwin <jhb@FreeBSD.org>
1407
1408 * NEWS: Mention TLS support for FreeBSD.
1409
1410 2019-03-25 Tom Tromey <tromey@adacore.com>
1411
1412 * minsyms.c (BUNCH_SIZE): Update comment.
1413 (~minimal_symbol_reader): Remove old comment.
1414 (compact_minimal_symbols): Update comment.
1415 (minimal_symbol_reader::install): Remove old comment. Update
1416 other comments.
1417
1418 2019-03-25 Alan Hayward <alan.hayward@arm.com>
1419
1420 * s390-linux-nat.c: Add include.
1421
1422 2019-03-25 Alan Hayward <alan.hayward@arm.com>
1423
1424 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
1425 Call linux_get_hwcap.
1426 * aarch64-linux-tdep.c (aarch64_linux_core_read_description):
1427 Likewise.
1428 (aarch64_linux_get_hwcap): Remove function.
1429 * aarch64-linux-tdep.h (aarch64_linux_get_hwcap): Remove
1430 declaration.
1431 * arm-linux-nat.c (arm_linux_nat_target::read_description):Call
1432 linux_get_hwcap.
1433 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
1434 * linux-tdep.c (linux_get_hwcap): Add function.
1435 (linux_get_hwcap2): Likewise.
1436 * linux-tdep.h (linux_get_hwcap): Add declaration.
1437 (linux_get_hwcap2): Likewise.
1438 * ppc-linux-nat.c (ppc_linux_get_hwcap): Remove function.
1439 (ppc_linux_get_hwcap2): Likewise.
1440 (ppc_linux_nat_target::region_ok_for_hw_watchpoint): Call
1441 linux_get_hwcap.
1442 (ppc_linux_nat_target::insert_watchpoint): Likewise.
1443 (ppc_linux_nat_target::watchpoint_addr_within_range): Likewise.
1444 (ppc_linux_nat_target::read_description): Likewise.
1445 * ppc-linux-tdep.c (ppc_linux_core_read_description): Likewise.
1446 * s390-linux-nat.c: Likewise.
1447 * s390-linux-tdep.c (s390_core_read_description): Likewise.
1448
1449 2019-03-24 Tom Tromey <tom@tromey.com>
1450
1451 * ada-lang.c (standard_lookup): Simplify initialization.
1452 (ada_lookup_symbol_nonlocal): Simplify return.
1453 * solib-spu.c (spu_lookup_lib_symbol): Simplify return.
1454 * solib-darwin.c (darwin_lookup_lib_symbol): Simplify return.
1455 * solib-svr4.c (elf_lookup_lib_symbol): Simplify return.
1456 * rust-lang.c (rust_lookup_symbol_nonlocal): Simplify
1457 initialization.
1458 * solib.c (solib_global_lookup): Simplify.
1459 * symtab.c (null_block_symbol): Remove.
1460 (symbol_cache_lookup): Simplify returns.
1461 (lookup_language_this): Simplify returns.
1462 (lookup_symbol_aux): Simplify return.
1463 (lookup_local_symbol): Simplify returns.
1464 (lookup_global_symbol_from_objfile): Simplify return.
1465 (lookup_symbol_in_objfile_symtabs)
1466 (lookup_symbol_in_objfile_from_linkage_name): Simplify return.
1467 (lookup_symbol_via_quick_fns, lookup_symbol_in_static_block)
1468 (lookup_static_symbol, lookup_global_symbol): Simplify return.
1469 * cp-namespace.c (cp_lookup_bare_symbol)
1470 (cp_search_static_and_baseclasses, cp_lookup_symbol_via_imports)
1471 (cp_lookup_symbol_via_all_imports, cp_lookup_nested_symbol_1)
1472 (cp_lookup_nested_symbol): Don't use null_block_symbol.
1473 (cp_lookup_symbol_via_imports): Simplify initialization.
1474 (find_symbol_in_baseclass): Likewise.
1475 * symtab.h (null_block_symbol): Remove.
1476 * d-namespace.c (d_lookup_symbol): Don't use null_block_symbol.
1477 (d_lookup_nested_symbol, d_lookup_symbol_imports)
1478 (d_lookup_symbol_module): Likewise.
1479 (find_symbol_in_baseclass): Simplify initialization.
1480
1481 2019-03-24 Tom Tromey <tom@tromey.com>
1482
1483 * expression.h: Don't include symtab.h.
1484 (struct block): Forward declare.
1485
1486 2019-03-24 Tom Tromey <tom@tromey.com>
1487
1488 * c-exp.y (typebase): Remove casts.
1489 * gdbtypes.c (lookup_unsigned_typename, )
1490 (lookup_signed_typename): Remove cast.
1491 * eval.c (parse_to_comma_and_eval): Remove cast.
1492 * parse.c (write_dollar_variable): Remove cast.
1493 * block.h (struct block) <superblock>: Now const.
1494 * symfile-debug.c (debug_qf_map_matching_symbols): Update.
1495 * psymtab.c (psym_map_matching_symbols): Make "block" const.
1496 (map_block): Make "block" const.
1497 * symfile.h (struct quick_symbol_functions)
1498 <map_matching_symbols>: Constify block argument to "callback".
1499 * symtab.c (basic_lookup_transparent_type_quick): Make "block"
1500 const.
1501 (find_pc_sect_compunit_symtab): Make "b" const.
1502 (find_symbol_at_address): Likewise.
1503 (search_symbols): Likewise.
1504 * dwarf2read.c (dw2_lookup_symbol): Make "block" const.
1505 (dw2_debug_names_lookup_symbol): Likewise.
1506 (dw2_map_matching_symbols): Update.
1507 * p-valprint.c (pascal_val_print): Remove "block".
1508 * ada-lang.c (ada_add_global_exceptions): Make "b" const.
1509 (aux_add_nonlocal_symbols): Make "block" const.
1510 (resolve_subexp): Remove cast.
1511 * linespec.c (iterate_over_all_matching_symtabs): Make "block"
1512 const.
1513 (iterate_over_file_blocks): Likewise.
1514 * f-exp.y (%union) <bval>: Remove.
1515 * coffread.c (patch_opaque_types): Make "b" const.
1516 * spu-tdep.c (spu_catch_start): Make "block" const.
1517 * c-valprint.c (print_unpacked_pointer): Remove "block".
1518 * symmisc.c (dump_symtab_1): Make "b" const.
1519 (block_depth): Make "block" const.
1520 * d-exp.y (%union) <bval>: Remove.
1521 * cp-support.h (cp_lookup_rtti_type): Update.
1522 * cp-support.c (cp_lookup_rtti_type): Make "block" const.
1523 * psymtab.c (psym_lookup_symbol): Make "block" const.
1524 (maintenance_check_psymtabs): Make "b" const.
1525 * python/py-framefilter.c (extract_sym): Make "sym_block" const.
1526 (enumerate_locals, enumerate_args): Update.
1527 * python/py-symtab.c (stpy_global_block): Make "block" const.
1528 (stpy_static_block): Likewise.
1529 * inline-frame.c (block_starting_point_at): Make "new_block"
1530 const.
1531 * block.c (find_block_in_blockvector): Make return type const.
1532 (blockvector_for_pc_sect): Make "b" const.
1533 (find_block_in_blockvector): Make "b" const.
1534
1535 2019-03-23 Tom Tromey <tom@tromey.com>
1536
1537 * varobj.c (varobj_create): Update.
1538 * symfile.c (clear_symtab_users): Don't reset innermost_block.
1539 * printcmd.c (display_command, do_one_display): Don't reset
1540 innermost_block.
1541 * parser-defs.h (enum innermost_block_tracker_type): Move to
1542 expression.h.
1543 (innermost_block): Update comment.
1544 * parse.c (parse_exp_1): Add tracker_types parameter.
1545 (parse_exp_in_context): Rename from parse_exp_in_context_1. Add
1546 tracker_types parameter. Reset innermost_block.
1547 (parse_exp_in_context): Remove.
1548 (parse_expression_for_completion): Update.
1549 * objfiles.c (~objfile): Don't reset expression_context_block or
1550 innermost_block.
1551 * expression.h (enum innermost_block_tracker_type): Move from
1552 parser-defs.h.
1553 (parse_exp_1): Add tracker_types parameter.
1554 * breakpoint.c (set_breakpoint_condition, watch_command_1): Don't
1555 reset innermost_block.
1556
1557 2019-03-23 Tom Tromey <tom@tromey.com>
1558
1559 * objfiles.h: Include bcache.h.
1560
1561 2019-03-23 Tom Tromey <tom@tromey.com>
1562
1563 * linespec.c (get_current_search_block): Use
1564 scoped_restore_current_language.
1565 * symmisc.c (dump_symtab): Use scoped_restore_current_language.
1566
1567 2019-03-22 Alan Hayward <alan.hayward@arm.com>
1568 Jiong Wang <jiong.wang@arm.com>
1569
1570 * aarch64-linux-tdep.c
1571 (aarch64_linux_iterate_over_regset_sections): Check for pauth
1572 section.
1573 * aarch64-linux-tdep.h (AARCH64_LINUX_SIZEOF_PAUTH): New define.
1574
1575 2019-03-22 Alan Hayward <alan.hayward@arm.com>
1576 Jiong Wang <jiong.wang@arm.com>
1577
1578 * aarch64-tdep.c (aarch64_analyze_prologue): Check for pauth
1579 instructions.
1580 (aarch64_analyze_prologue_test): Add PACIASP test.
1581 (aarch64_prologue_prev_register): Unmask PC value.
1582
1583 2019-03-22 Alan Hayward <alan.hayward@arm.com>
1584 Jiong Wang <jiong.wang@arm.com>
1585
1586 * aarch64-tdep.c (aarch64_frame_unmask_address): New function.
1587 (aarch64_dwarf2_prev_register): Unmask PC value.
1588 (aarch64_dwarf2_frame_init_reg): Init pauth registers.
1589 (aarch64_execute_dwarf_cfa_vendor_op): Check for
1590 DW_CFA_AARCH64_negate_ra_state.
1591 (aarch64_gdbarch_init): Add aarch64_execute_dwarf_cfa_vendor_op.
1592
1593 2019-03-22 Alan Hayward <alan.hayward@arm.com>
1594 Jiong Wang <jiong.wang@arm.com>
1595
1596 * aarch64-tdep.c (aarch64_dwarf_reg_to_regnum): Check for pauth
1597 registers.
1598 (aarch64_pseudo_register_name): Likewise.
1599 (aarch64_pseudo_register_type): Likewise.
1600 (aarch64_pseudo_register_reggroup_p): Likewise.
1601 (aarch64_gdbarch_init): Add pauth registers.
1602 * aarch64-tdep.h (AARCH64_DWARF_PAUTH_RA_STATE): New define.
1603 (AARCH64_DWARF_PAUTH_DMASK): Likewise.
1604 (AARCH64_DWARF_PAUTH_CMASK): Likewise.
1605 (struct gdbarch_tdep): Add regnum for ra_state.
1606
1607 2019-03-22 Alan Hayward <alan.hayward@arm.com>
1608 Jiong Wang <jiong.wang@arm.com>
1609
1610 * arch/aarch64.h (AARCH64_PAUTH_REGS_SIZE): New define.
1611
1612 2019-03-22 Alan Hayward <alan.hayward@arm.com>
1613 Jiong Wang <jiong.wang@arm.com>
1614
1615 * aarch64-linux-nat.c (fetch_pauth_masks_from_thread): New
1616 function.
1617 (aarch64_linux_nat_target::fetch_registers): Read pauth registers.
1618 * aarch64-tdep.c (aarch64_cannot_store_register): New function.
1619 (aarch64_gdbarch_init): Add puth registers.
1620 * aarch64-tdep.h (struct gdbarch_tdep): Add pauth features.
1621 * arch/aarch64.h (AARCH64_PAUTH_DMASK_REGNUM): New define.
1622 (AARCH64_PAUTH_CMASK_REGNUM): Likewise.
1623
1624 2019-03-22 Alan Hayward <alan.hayward@arm.com>
1625 Jiong Wang <jiong.wang@arm.com>
1626
1627 * aarch64-linux-nat.c
1628 (aarch64_linux_nat_target::read_description): Read PACA hwcap.
1629 * aarch64-linux-tdep.c
1630 (aarch64_linux_core_read_description): Likewise.
1631 (aarch64_linux_get_hwcap): New function.
1632 * aarch64-linux-tdep.h (AARCH64_HWCAP_PACA): New define.
1633 (aarch64_linux_get_hwcap): New declaration.
1634
1635 2019-03-22 Alan Hayward <alan.hayward@arm.com>
1636 Jiong Wang <jiong.wang@arm.com>
1637
1638 * aarch64-linux-nat.c
1639 (aarch64_linux_nat_target::read_description): Add pauth param.
1640 * aarch64-linux-tdep.c
1641 (aarch64_linux_core_read_description): Likewise.
1642 * aarch64-tdep.c (struct target_desc): Add in pauth.
1643 (aarch64_read_description): Add pauth param.
1644 (aarch64_gdbarch_init): Likewise.
1645 * aarch64-tdep.h (aarch64_read_description): Likewise.
1646 * arch/aarch64.c (aarch64_create_target_description): Likewise.
1647 * arch/aarch64.h (aarch64_create_target_description): Likewise.
1648 * features/Makefile: Add new files.
1649 * features/aarch64-pauth.c: New file.
1650 * features/aarch64-pauth.xml: New file.
1651
1652 2019-03-20 Tom Tromey <tromey@adacore.com>
1653
1654 * infrun.c (handle_inferior_event): Rename from
1655 handle_inferior_event_1. Create a scoped_value_mark.
1656 (handle_inferior_event): Remove.
1657
1658 2019-03-19 Tom Tromey <tromey@adacore.com>
1659
1660 * mi/mi-interp.c (mi_on_normal_stop_1): Only show displays once.
1661 * infrun.h (print_stop_event): Add "displays" parameter.
1662 * infrun.c (print_stop_event): Add "displays" parameter.
1663
1664 2019-03-19 Pedro Alves <palves@redhat.com>
1665
1666 * tui/tui-out.c (tui_ui_out::do_field_string): Simplify.
1667 (tui_ui_out::do_text): Add comments. Reset M_LINE to 0 instead of
1668 to -1. Fix TABs vs spaces.
1669 (tui_ui_out::tui_ui_out): Don't initialize fields here.
1670 * tui/tui-out.h (tui_ui_out) Add intro comments.
1671 <m_line, m_start_of_line>: In-class initialize, and add describing
1672 comment.
1673
1674 2019-03-18 Alan Hayward <alan.hayward@arm.com>
1675
1676 * arm-linux-nat.c (arm_linux_insert_hw_breakpoint1): Fix
1677 variable names.
1678 (arm_linux_remove_hw_breakpoint1): Use a gdb::function_view.
1679
1680 2019-03-18 Pedro Alves <palves@redhat.com>
1681 Eli Zaretskii <eliz@gnu.org>
1682
1683 * tui/tui-out.c (tui_ui_out::tui_ui_out): Fix initialization of
1684 m_line and m_start_of_line.
1685
1686 2019-03-18 Eli Zaretskii <eliz@gnu.org>
1687
1688 * tui/tui-io.c (gdb_wgetch): Don't echo CR.
1689 (tui_getc): When gdb_wgetch returns a CR, behave the same as when
1690 it returns a newline. This fixes a regression in TU mode, whereby
1691 the next line is output on the same screen line as the user input.
1692
1693 2019-03-18 Tom Tromey <tromey@adacore.com>
1694
1695 * minsyms.c (minimal_symbol_reader::install): Remove call to
1696 obstack_blank.
1697
1698 2019-03-18 Pedro Alves <palves@redhat.com>
1699
1700 * tui/tui-io.c (reverse_mode_p, reverse_save_bg, reverse_save_fg):
1701 New globals.
1702 (apply_style): New, factored out from ...
1703 (apply_ansi_escape): ... this. Handle reverse video mode.
1704 (tui_set_reverse_mode): New function.
1705 * tui/tui-io.h (tui_set_reverse_mode): New declaration.
1706 * tui/tui-winsource.c (tui_show_source_line): Use
1707 tui_set_reverse_mode instead of setting A_STANDOUT.
1708 * ui-style.h (struct ui_file_style) <set_reverse, set_fg, set_bg>:
1709 New setter methods.
1710
1711 2019-03-18 Hannes Domani <ssbssa@yahoo.de>
1712
1713 * tui/tui-source.c (copy_source_line): Fix handling of 'column'.
1714 Handle tabs.
1715
1716 2019-03-18 Tom Tromey <tromey@adacore.com>
1717
1718 * ada-lang.c (empty_array): Add "high" parameter.
1719 (ada_evaluate_subexp): Update.
1720
1721 2019-03-17 Sergei Trofimovich <siarheit@google.com>
1722
1723 * unittests/string_view-selftests.c: Define
1724 _initialize_string_view_selftests unconditionally.
1725
1726 2019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
1727
1728 PR gdb/24350
1729 * windows-nat.c (windows_make_so): Remove unused text_vma variable.
1730
1731 2019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
1732
1733 PR gdb/24351
1734 * windows-nat.c (display_selector): Fix format specifiers.
1735
1736 2019-03-17 Eli Zaretskii <eliz@gnu.org>
1737
1738 * tui/tui-winsource.c (tui_set_is_exec_point_at): Call
1739 tui_refill_source_window instead of tui_refresh_win, to update the
1740 current execution line. This fixes redisplay of the current line
1741 when stepping through the code with "next" or "step".
1742
1743 2019-03-16 Eli Zaretskii <eliz@gnu.org>
1744
1745 * source-cache.c (source_cache::get_source_lines): Call
1746 find_source_lines to initialize s->nlines. This fixes vertical
1747 scrolling of TUI source window when the DOWN arrow is pressed.
1748
1749 2019-03-16 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1750
1751 * auto-load.c (_initialize_auto_load): Fix 'This options has'.
1752 linux-thread-db.c (_initialize_thread_db): Likewise.
1753
1754 2019-03-16 Eli Zaretskii <eliz@gnu.org>
1755
1756 * tui/tui-winsource.c (tui_show_source_line): Revert "Use
1757 wclrtoeol in tui_show_source_line". This reverts changes made in
1758 commit 4a3045920bbe4e50a0f4920b0fdc4e88ef23015c.
1759
1760 2019-03-15 Tom Tromey <tom@tromey.com>
1761
1762 * symtab.h (struct minimal_symbol): Derive from
1763 general_symbol_info.
1764 (MSYMBOL_VALUE, MSYMBOL_VALUE_RAW_ADDRESS)
1765 (MSYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_BYTES)
1766 (MSYMBOL_BLOCK_VALUE, MSYMBOL_VALUE_CHAIN, MSYMBOL_LANGUAGE)
1767 (MSYMBOL_SECTION, MSYMBOL_OBJ_SECTION, MSYMBOL_NATURAL_NAME)
1768 (MSYMBOL_LINKAGE_NAME, MSYMBOL_DEMANGLED_NAME)
1769 (MSYMBOL_SEARCH_NAME): Update.
1770 (MSYMBOL_SET_LANGUAGE, MSYMBOL_SET_NAMES): Remove.
1771 * solib.c (gdb_bfd_lookup_symbol_from_symtab): Don't use memset.
1772 * minsyms.c (minimal_symbol_reader::record_full): Update.
1773
1774 2019-03-15 Tom Tromey <tom@tromey.com>
1775
1776 * minsyms.c (minimal_symbol_reader::install): Use memcpy.
1777
1778 2019-03-15 Tom Tromey <tom@tromey.com>
1779
1780 * objfiles.h (struct objfile_per_bfd_storage) <msymbols>: Now a
1781 unique_xmalloc_ptr.
1782 (objfile::msymbols_range::begin, objfile::msymbols_range::end):
1783 Update.
1784 * minsyms.c (lookup_minimal_symbol_by_pc_section)
1785 (build_minimal_symbol_hash_tables)
1786 (minimal_symbol_reader::install): Update.
1787
1788 2019-03-15 Tom Tromey <tom@tromey.com>
1789
1790 * symtab.c (create_demangled_names_hash): Update.
1791 (symbol_set_names): Update.
1792 * objfiles.h (struct objfile_per_bfd_storage)
1793 <demangled_names_hash>: Now an htab_up.
1794 * objfiles.c (objfile_per_bfd_storage): Simplify.
1795
1796 2019-03-15 Tom Tromey <tom@tromey.com>
1797
1798 * objfiles.h (struct objfile_per_bfd_storage): Declare
1799 destructor.
1800 * objfiles.c (objfile_per_bfd_storage::~objfile_per_bfd_storage):
1801 New.
1802 (get_objfile_bfd_data): Use new. Don't initialize
1803 language_of_main.
1804 (free_objfile_per_bfd_storage): Remove.
1805 (objfile_bfd_data_free, objfile::~objfile): Use delete.
1806
1807 2019-03-15 Tom Tromey <tom@tromey.com>
1808
1809 * symfile.c (reread_symbols): Update.
1810 * objfiles.c (objfile::objfile): Update.
1811 * minsyms.h (terminate_minimal_symbol_table): Don't declare.
1812 * minsyms.c (lookup_minimal_symbol_by_pc_section): Update
1813 comment.
1814 (minimal_symbol_reader::install): Update.
1815 (terminate_minimal_symbol_table): Remove.
1816 * jit.c (jit_object_close_impl): Update.
1817
1818 2019-03-15 Tom Tromey <tom@tromey.com>
1819
1820 * minsyms.c (minimal_symbol_reader::record_full): Remove some
1821 initializations.
1822
1823 2019-03-15 Tom Tromey <tom@tromey.com>
1824
1825 * objfiles.h (struct objfile_per_bfd_storage)
1826 <demangled_hash_languages>: Now a bitset.
1827 * minsyms.c (add_minsym_to_demangled_hash_table): Update.
1828 (lookup_minimal_symbol): Update.
1829
1830 2019-03-15 Tom Tromey <tom@tromey.com>
1831
1832 * minsyms.h (class minimal_symbol_reader) <record_with_info>:
1833 Don't return the symbol.
1834 * coffread.c (record_minimal_symbol): Use record_full.
1835
1836 2019-03-14 Eli Zaretskii <eliz@gnu.org>
1837
1838 The MS-Windows port of ncurses fails to switch to a color pair if
1839 one or both of the colors are the implicit default colors. This
1840 change records the default colors when TUI is initialized, and
1841 then specifies them explicitly when a color pair uses the default
1842 colors. This allows color styling in TUI mode on MS-Windows.
1843
1844 * tui/tui-io.c [__MINGW32__]: Include windows.h. Declare
1845 ncurses_norm_attr.
1846 (tui_initialize_io) [__MINGW32__]: Record the default terminal
1847 colors in ncurses_norm_attr.
1848 (apply_ansi_escape) [__MINGW32__]: If a color in a color pair is
1849 "none", replace it with the default color recorded in
1850 ncurses_norm_attr.
1851
1852 2019-03-14 Tom Tromey <tromey@adacore.com>
1853
1854 * source-cache.h (class source_cache) <get_source_lines>: Return
1855 std::string.
1856 * source-cache.c (source_cache::extract_lines): Handle case where
1857 first_pos==npos. Return std::string.
1858 (source_cache::get_source_lines): Update.
1859
1860 2019-03-14 Tom Tromey <tromey@adacore.com>
1861
1862 * NEWS: Add item for "style sources" commands.
1863 * source-cache.c (source_cache::get_source_lines): Check
1864 source_styling.
1865 * cli/cli-style.c (source_styling): New global.
1866 (_initialize_cli_style): Add "style sources" commands.
1867 (show_style_sources): New function.
1868 * cli/cli-style.h (source_styling): Declare.
1869
1870 2019-03-14 Pedro Alves <palves@redhat.com>
1871 Tom Tromey <tromey@adacore.com>
1872
1873 * tui/tui-winsource.h (tui_refill_source_window): Declare.
1874 * tui/tui-winsource.c (tui_refill_source_window): New function,
1875 from...
1876 (tui_horizontal_source_scroll): ... here. Move some logic.
1877 * cli/cli-style.c (set_style_enabled): Notify new observable.
1878 * tui/tui-hooks.c (tui_redisplay_source): New function.
1879 (tui_attach_detach_observers): Attach or detach
1880 tui_redisplay_source.
1881 * observable.h (source_styling_changed): New observable.
1882 * observable.c: Define source_styling_changed observable.
1883
1884 2019-03-13 Tom Tromey <tromey@adacore.com>
1885
1886 * i386-gnu-nat.c (i386_gnu_nat_target::fetch_registers)
1887 (i386_gnu_nat_target::store_registers): Update.
1888 * target-debug.h (target_debug_print_std_string): New macro.
1889 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
1890 * windows-tdep.c (display_one_tib): Update.
1891 * tui/tui-stack.c (tui_make_status_line): Update.
1892 * top.c (print_inferior_quit_action): Update.
1893 * thread.c (thr_try_catch_cmd): Update.
1894 (add_thread_with_info): Update.
1895 (thread_target_id_str): Update.
1896 (thr_try_catch_cmd): Update.
1897 (thread_command): Update.
1898 (thread_find_command): Update.
1899 * record-btrace.c (record_btrace_target::info_record)
1900 (record_btrace_resume_thread, record_btrace_target::resume)
1901 (record_btrace_cancel_resume, record_btrace_step_thread)
1902 (record_btrace_target::wait, record_btrace_target::wait)
1903 (record_btrace_target::wait, record_btrace_target::stop): Update.
1904 * progspace.c (print_program_space): Update.
1905 * process-stratum-target.c
1906 (process_stratum_target::thread_address_space): Update.
1907 * linux-fork.c (linux_fork_mourn_inferior)
1908 (detach_checkpoint_command, info_checkpoints_command)
1909 (linux_fork_context): Update.
1910 (linux_fork_detach): Update.
1911 (class scoped_switch_fork_info): Update.
1912 (delete_checkpoint_command): Update.
1913 * infrun.c (follow_fork_inferior): Update.
1914 (follow_fork_inferior): Update.
1915 (proceed_after_vfork_done): Update.
1916 (handle_vfork_child_exec_or_exit): Update.
1917 (follow_exec): Update.
1918 (displaced_step_prepare_throw): Update.
1919 (displaced_step_restore): Update.
1920 (start_step_over): Update.
1921 (resume_1): Update.
1922 (clear_proceed_status_thread): Update.
1923 (proceed): Update.
1924 (print_target_wait_results): Update.
1925 (do_target_wait): Update.
1926 (context_switch): Update.
1927 (stop_all_threads): Update.
1928 (restart_threads): Update.
1929 (finish_step_over): Update.
1930 (handle_signal_stop): Update.
1931 (switch_back_to_stepped_thread): Update.
1932 (keep_going_pass_signal): Update.
1933 (print_exited_reason): Update.
1934 (normal_stop): Update.
1935 * inferior.c (inferior_pid_to_str): Change return type.
1936 (print_selected_inferior): Update.
1937 (add_inferior): Update.
1938 (detach_inferior): Update.
1939 * dummy-frame.c (fprint_dummy_frames): Update.
1940 * dcache.c (dcache_info_1): Update.
1941 * btrace.c (btrace_enable, btrace_disable, btrace_teardown)
1942 (btrace_fetch, btrace_clear): Update.
1943 * linux-tdep.c (linux_core_pid_to_str): Change return type.
1944 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Change return
1945 type.
1946 * fbsd-tdep.c (fbsd_core_pid_to_str): Change return type.
1947 * sol2-tdep.h (sol2_core_pid_to_str): Change return type.
1948 * sol2-tdep.c (sol2_core_pid_to_str): Change return type.
1949 * gdbarch.c, gdbarch.h: Rebuild.
1950 * gdbarch.sh (core_pid_to_str): Change return type.
1951 * windows-nat.c (struct windows_nat_target) <pid_to_str>: Change
1952 return type.
1953 (windows_nat_target::pid_to_str): Change return type.
1954 (windows_delete_thread): Update.
1955 (windows_nat_target::attach): Update.
1956 (windows_nat_target::files_info): Update.
1957 * target-delegates.c: Rebuild.
1958 * sol-thread.c (class sol_thread_target) <pid_to_str>: Change
1959 return type.
1960 (sol_thread_target::pid_to_str): Change return type.
1961 * remote.c (class remote_target) <pid_to_str>: Change return
1962 type.
1963 (remote_target::pid_to_str): Change return type.
1964 (extended_remote_target::attach, remote_target::remote_stop_ns)
1965 (remote_target::remote_notif_remove_queued_reply)
1966 (remote_target::push_stop_reply, remote_target::disable_btrace):
1967 Update.
1968 (extended_remote_target::attach): Update.
1969 * remote-sim.c (struct gdbsim_target) <pid_to_str>: Change return
1970 type.
1971 (gdbsim_target::pid_to_str): Change return type.
1972 * ravenscar-thread.c (struct ravenscar_thread_target)
1973 <pid_to_str>: Change return type.
1974 (ravenscar_thread_target::pid_to_str): Change return type.
1975 * procfs.c (class procfs_target) <pid_to_str>: Change return
1976 type.
1977 (procfs_target::pid_to_str): Change return type.
1978 (procfs_target::attach): Update.
1979 (procfs_target::detach): Update.
1980 (procfs_target::fetch_registers): Update.
1981 (procfs_target::store_registers): Update.
1982 (procfs_target::wait): Update.
1983 (procfs_target::files_info): Update.
1984 * obsd-nat.c (obsd_nat_target::pid_to_str): Change return type.
1985 * nto-procfs.c (struct nto_procfs_target) <pid_to_str>: Change
1986 return type.
1987 (nto_procfs_target::pid_to_str): Change return type.
1988 (nto_procfs_target::files_info, nto_procfs_target::attach): Update.
1989 * linux-thread-db.c (class thread_db_target) <pid_to_str>: Change
1990 return type.
1991 * linux-nat.c (linux_nat_target::pid_to_str): Change return type.
1992 (exit_lwp): Update.
1993 (attach_proc_task_lwp_callback, get_detach_signal)
1994 (detach_one_lwp, resume_lwp, linux_nat_target::resume)
1995 (linux_nat_target::resume, wait_lwp, stop_callback)
1996 (maybe_clear_ignore_sigint, stop_wait_callback, status_callback)
1997 (save_stop_reason, select_event_lwp, linux_nat_filter_event)
1998 (linux_nat_wait_1, resume_stopped_resumed_lwps)
1999 (linux_nat_target::wait, linux_nat_stop_lwp): Update.
2000 * inf-ptrace.c (inf_ptrace_target::pid_to_str): Change return
2001 type.
2002 (inf_ptrace_target::attach): Update.
2003 (inf_ptrace_target::files_info): Update.
2004 * go32-nat.c (struct go32_nat_target) <pid_to_str>: Change return
2005 type.
2006 (go32_nat_target::pid_to_str): Change return type.
2007 * gnu-nat.c (gnu_nat_target::pid_to_str): Change return type.
2008 (gnu_nat_target::wait): Update.
2009 (gnu_nat_target::wait): Update.
2010 (gnu_nat_target::resume): Update.
2011 * fbsd-nat.c (fbsd_nat_target::pid_to_str): Change return type.
2012 (fbsd_nat_target::wait): Update.
2013 * darwin-nat.c (darwin_nat_target::pid_to_str): Change return
2014 type.
2015 (darwin_nat_target::attach): Update.
2016 * corelow.c (class core_target) <pid_to_str>: Change return type.
2017 (core_target::pid_to_str): Change return type.
2018 * target.c (normal_pid_to_str): Change return type.
2019 (default_pid_to_str): Likewise.
2020 (target_pid_to_str): Change return type.
2021 (target_translate_tls_address): Update.
2022 (target_announce_detach): Update.
2023 * bsd-uthread.c (struct bsd_uthread_target) <pid_to_str>: Change
2024 return type.
2025 (bsd_uthread_target::pid_to_str): Change return type.
2026 * bsd-kvm.c (class bsd_kvm_target) <pid_to_str>: Change return
2027 type.
2028 (bsd_kvm_target::pid_to_str): Change return type.
2029 * aix-thread.c (class aix_thread_target) <pid_to_str>: Change
2030 return type.
2031 (aix_thread_target::pid_to_str): Change return type.
2032 * target.h (struct target_ops) <pid_to_str>: Change return type.
2033 (target_pid_to_str, normal_pid_to_str): Likewise.
2034 * obsd-nat.h (class obsd_nat_target) <pid_to_str>: Change return
2035 type.
2036 * linux-nat.h (class linux_nat_target) <pid_to_str>: Change return
2037 type.
2038 * inf-ptrace.h (struct inf_ptrace_target) <pid_to_str>: Change
2039 return type.
2040 * gnu-nat.h (struct gnu_nat_target) <pid_to_str>: Change return
2041 type.
2042 * fbsd-nat.h (class fbsd_nat_target) <pid_to_str>: Change return
2043 type.
2044 * darwin-nat.h (class darwin_nat_target) <pid_to_str>: Change
2045 return type.
2046
2047 2019-03-13 Simon Marchi <simon.marchi@ericsson.com>
2048
2049 * NEWS: Mention that the new default MI version is 3. Mention
2050 changes to the output of commands and events that deal with
2051 multi-location breakpoints.
2052 * breakpoint.c: Include "mi/mi-out.h".
2053 (print_one_breakpoint): Change output syntax if using MI version
2054 >= 3.
2055 * mi/mi-main.h (mi_cmd_fix_multi_location_breakpoint_output):
2056 New.
2057 (mi_multi_location_breakpoint_output_fixed): New.
2058 * mi/mi-main.c (fix_multi_location_breakpoint_output): New.
2059 (mi_cmd_fix_multi_location_breakpoint_output): New.
2060 (mi_multi_location_breakpoint_output_fixed): New.
2061 * mi/mi-cmds.c (mi_cmds): Register command
2062 -fix-multi-location-breakpoint-output.
2063 * mi/mi-out.c (mi_out_new): Instantiate version 3 when using
2064 interpreter "mi".
2065
2066 2019-03-13 Simon Marchi <simon.marchi@polymtl.ca>
2067
2068 * mi/mi-out.h (mi_out_new): Change parameter to const char *.
2069 * mi/mi-out.c (mi_out_new): Change parameter to const char *,
2070 instantiate mi_ui_out based on interpreter name.
2071 * mi/mi-interp.c (mi_interp::init): Use the new mi_out_new.
2072 * mi/mi-main.c (mi_load_progress): Likewise.
2073
2074 2019-03-12 John Baldwin <jhb@FreeBSD.org>
2075
2076 * NEWS: Combine separate "New targets" sections for 8.3.
2077
2078 2019-03-12 John Baldwin <jhb@FreeBSD.org>
2079
2080 * ppc-fbsd-tdep.c (ppcfbsd_get_thread_local_address): New.
2081 (ppcfbsd_init_abi): Install gdbarch
2082 "fetch_tls_load_module_address" and "get_thread_local_address"
2083 methods.
2084
2085 2019-03-12 John Baldwin <jhb@FreeBSD.org>
2086
2087 * riscv-fbsd-tdep.c (riscv_fbsd_get_thread_local_address): New.
2088 (riscv_fbsd_init_abi): Install gdbarch
2089 "fetch_tls_load_module_address" and "get_thread_local_address"
2090 methods.
2091
2092 2019-03-12 John Baldwin <jhb@FreeBSD.org>
2093
2094 * i386-fbsd-tdep.c (i386fbsd_get_thread_local_address): New.
2095 (i386fbsd_init_abi): Install gdbarch
2096 "fetch_tls_load_module_address" and "get_thread_local_address"
2097 methods.
2098
2099 2019-03-12 John Baldwin <jhb@FreeBSD.org>
2100
2101 * amd64-fbsd-tdep.c (amd64fbsd_get_thread_local_address): New.
2102 (amd64fbsd_init_abi): Install gdbarch
2103 "fetch_tls_load_module_address" and "get_thread_local_address"
2104 methods.
2105
2106 2019-03-12 John Baldwin <jhb@FreeBSD.org>
2107
2108 * fbsd-tdep.c (fbsd_pspace_data_handle): New variable.
2109 (struct fbsd_pspace_data): New type.
2110 (get_fbsd_pspace_data, fbsd_pspace_data_cleanup)
2111 (fbsd_read_integer_by_name, fbsd_fetch_rtld_offsets)
2112 (fbsd_get_tls_index, fbsd_get_thread_local_address): New function.
2113 (_initialize_fbsd_tdep): Initialize 'fbsd_pspace_data_handle'.
2114 * fbsd-tdep.c (fbsd_get_thread_local_address): New prototype.
2115
2116 2019-03-12 John Baldwin <jhb@FreeBSD.org>
2117
2118 * gdbtypes.c (lookup_struct_elt): New function.
2119 (lookup_struct_elt_type): Reimplement via lookup_struct_elt.
2120 * gdbtypes.h (struct struct_elt): New type.
2121 (lookup_struct_elt): New prototype.
2122
2123 2019-03-12 John Baldwin <jhb@FreeBSD.org>
2124
2125 * gdbtypes.c (lookup_struct_elt_type): Update comment and
2126 remove disabled code block.
2127
2128 2019-03-12 John Baldwin <jhb@FreeBSD.org>
2129
2130 * gdbarch.sh (get_thread_local_address): New method.
2131 * gdbarch.h, gdbarch.c: Regenerate.
2132 * target.c (target_translate_tls_address): Use
2133 gdbarch_get_thread_local_address if present instead of
2134 target::get_thread_local_address.
2135
2136 2019-03-12 John Baldwin <jhb@FreeBSD.org>
2137
2138 * target.h (target::get_thread_local_address): Update comment.
2139
2140 2019-03-12 John Baldwin <jhb@FreeBSD.org>
2141
2142 * solib-svr4.c (svr4_fetch_objfile_link_map): Look for
2143 objfile->separate_debug_objfile_backlink if not NULL.
2144
2145 2019-03-12 John Baldwin <jhb@FreeBSD.org>
2146
2147 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
2148 tdep->fsbase_regnum instead of constants for fs_base and gs_base.
2149 (amd64bsd_store_inferior_registers): Likewise.
2150 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
2151 Enable segment base registers.
2152 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers): Use
2153 PT_GETFSBASE and PT_GETGSBASE.
2154 (i386bsd_store_inferior_registers): Use PT_SETFSBASE and
2155 PT_SETGSBASE.
2156 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Enable
2157 segment base registers.
2158 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
2159
2160 2019-03-12 John Baldwin <jhb@FreeBSD.org>
2161
2162 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
2163 Update calls to i386_target_description to add 'segments'
2164 parameter.
2165 * amd64-tdep.c (amd64_init_abi): Set tdep->fsbase_regnum. Don't
2166 add segment base registers.
2167 * arch/i386.c (i386_create_target_description): Add 'segments'
2168 parameter to enable segment base registers.
2169 * arch/i386.h (i386_create_target_description): Likewise.
2170 * features/i386/32bit-segments.xml: New file.
2171 * features/i386/32bit-segments.c: Generate.
2172 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Update
2173 call to i386_target_description to add 'segments' parameter.
2174 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
2175 * i386-go32-tdep.c (i386_go32_init_abi): Likewise.
2176 * i386-linux-tdep.c (i386_linux_read_description): Likewise.
2177 * i386-tdep.c (i386_validate_tdesc_p): Add segment base registers
2178 if feature is present.
2179 (i386_gdbarch_init): Pass I386_NUM_REGS to set_gdbarch_num_regs.
2180 Add 'segments' parameter to call to i386_target_description.
2181 (i386_target_description): Add 'segments' parameter to enable
2182 segment base registers.
2183 (_initialize_i386_tdep) [GDB_SELF_TEST]: Add 'segments' parameter
2184 to call to i386_target_description.
2185 * i386-tdep.h (struct gdbarch_tdep): Add 'fsbase_regnum'.
2186 (enum i386_regnum): Add I386_FSBASE_REGNUM and I386_GSBASE_REGNUM.
2187 Define I386_NUM_REGS.
2188 (i386_target_description): Add 'segments' parameter to enable
2189 segment base registers.
2190
2191 2019-03-12 Eli Zaretskii <eliz@gnu.org>
2192
2193 PR/24325
2194 * source-cache.c: #undef open and close, to avoid unresolved
2195 externals during linking.
2196
2197 2019-03-12 Tom Tromey <tromey@adacore.com>
2198
2199 * remote.c (magic_null_ptid, not_sent_ptid, any_thread_ptid): Now
2200 const. Add initializers.
2201 (_initialize_remote): Don't initialize ptid globals.
2202
2203 2019-03-12 Pedro Alves <palves@redhat.com>
2204
2205 * yy-remap.h [TEST_CPNAMES] (YYFPRINTF): Don't define.
2206
2207 2019-03-12 Pedro Alves <palves@redhat.com>
2208
2209 * cp-name-parser.y (main): Remove unused 'len' variable.
2210
2211 2019-03-12 Tom Tromey <tromey@adacore.com>
2212
2213 * common/ptid.c (null_ptid, minus_one_ptid): Now const.
2214 * common/ptid.h (null_ptid, minus_one_ptid): Now const.
2215
2216 2019-03-12 Tom Tromey <tromey@adacore.com>
2217
2218 * linux-nat.c (iterate_over_lwps): Update.
2219 (stop_callback): Remove parameter.
2220 (stop_wait_callback, detach_callback, resume_set_callback)
2221 (select_singlestep_lwp_callback, set_ignore_sigint)
2222 (status_callback, resumed_callback, resume_clear_callback)
2223 (kill_callback, kill_wait_callback, linux_nat_stop_lwp): Remove
2224 data parameter.
2225 (linux_nat_target::detach, linux_nat_target::resume)
2226 (linux_stop_and_wait_all_lwps, select_event_lwp)
2227 (linux_nat_filter_event, linux_nat_wait_1)
2228 (linux_nat_target::kill, linux_nat_target::stop)
2229 (linux_nat_target::stop): Update.
2230 (linux_nat_resume_callback): Change type.
2231 (resume_stopped_resumed_lwps, count_events_callback)
2232 (select_event_lwp_callback): Likewise.
2233 (linux_stop_lwp, linux_nat_stop_lwp): Update.
2234 * arm-linux-nat.c (struct update_registers_data): Remove.
2235 (update_registers_callback): Change type.
2236 (arm_linux_insert_hw_breakpoint1): Update.
2237 * nat/x86-linux-dregs.c (update_debug_registers_callback): Remove
2238 parameter.
2239 (x86_linux_dr_set_addr): Update.
2240 (x86_linux_dr_set_control): Update.
2241 * nat/linux-nat.h (iterate_over_lwps_ftype): Remove parameter.
2242 (iterate_over_lwps): Use gdb::function_view.
2243 * nat/aarch64-linux-hw-point.c (struct
2244 aarch64_dr_update_callback_param): Remove.
2245 (debug_reg_change_callback): Change type.
2246 (aarch64_notify_debug_reg_change): Update.
2247 * s390-linux-nat.c (s390_refresh_per_info): Update.
2248
2249 2019-03-11 Tom Tromey <tromey@adacore.com>
2250
2251 * dwarf2read.c (dwarf2_find_containing_comp_unit): Remove
2252 redundant assignment to "this_cu".
2253
2254 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
2255
2256 * gdbtypes.c (rank_one_type): Remove unnecessary cases from switch.
2257
2258 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
2259
2260 * gdbtypes.c (rank_one_type_parm_set): New function extracted
2261 from...
2262 (rank_one_type): ... this.
2263
2264 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
2265
2266 * gdbtypes.c (rank_one_type_parm_struct): New function extracted
2267 from...
2268 (rank_one_type): ... this.
2269
2270 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
2271
2272 * gdbtypes.c (rank_one_type_parm_complex): New function extracted
2273 from...
2274 (rank_one_type): ... this.
2275
2276 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
2277
2278 * gdbtypes.c (rank_one_type_parm_float): New function extracted
2279 from...
2280 (rank_one_type): ... this.
2281
2282 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
2283
2284 * gdbtypes.c (rank_one_type_parm_bool): New function extracted
2285 from...
2286 (rank_one_type): ... this.
2287
2288 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
2289
2290 * gdbtypes.c (rank_one_type_parm_range): New function extracted
2291 from...
2292 (rank_one_type): ... this.
2293
2294 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
2295
2296 * gdbtypes.c (rank_one_type_parm_char): New function extracted
2297 from...
2298 (rank_one_type): ... this.
2299
2300 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
2301
2302 * gdbtypes.c (rank_one_type_parm_enum): New function extracted
2303 from...
2304 (rank_one_type): ... this.
2305
2306 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
2307
2308 * gdbtypes.c (rank_one_type_parm_int): New function extracted
2309 from...
2310 (rank_one_type): ... this.
2311
2312 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
2313
2314 * gdbtypes.c (rank_one_type_parm_func): New function extracted
2315 from...
2316 (rank_one_type): ... this.
2317
2318 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
2319
2320 * gdbtypes.c (rank_one_type_parm_array): New function extracted
2321 from...
2322 (rank_one_type): ... this.
2323
2324 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
2325
2326 * gdbtypes.c (rank_one_type_parm_ptr): New function extracted
2327 from...
2328 (rank_one_type): ... this.
2329
2330 2019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2331
2332 * inferior.c (initialize_inferiors): Ensure 'help set/show print
2333 inferior-events' shows the example events.
2334
2335 2019-03-08 Eli Zaretskii <eliz@gnu.org>
2336
2337 Support styling on native MS-Windows console
2338
2339 PR/24315
2340 * utils.c (can_emit_style_escape) [_WIN32]: Don't disable styling
2341 on MS-Windows if $TERM is not defined.
2342
2343 * cli/cli-style.c: Set cli_styling to 1 in the MinGW build.
2344
2345 * posix-hdep.c (gdb_console_fputs):
2346 * mingw-hdep.c (rgb_to_16colors, gdb_console_fputs): New
2347 functions.
2348 * ui-file.h (gdb_console_fputs): Add prototype.
2349
2350 * ui-file.c (stdio_file::puts): Call gdb_console_fputs, and fall
2351 back to fputs only if the former returns zero.
2352
2353 2019-03-07 Tom Tromey <tom@tromey.com>
2354
2355 * symmisc.c (print_symbol_bcache_statistics): Update.
2356 (print_objfile_statistics): Update.
2357 * symfile.c (allocate_symtab): Update.
2358 * stabsread.c: Don't include bcache.h.
2359 * psymtab.h (struct psymbol_bcache): Don't declare.
2360 (class psymtab_storage) <psymbol_cache>: Now a bcache.
2361 (psymbol_bcache_init, psymbol_bcache_free)
2362 (psymbol_bcache_get_bcache): Don't declare.
2363 * psymtab.c (struct psymbol_bcache): Remove.
2364 (psymtab_storage::psymtab_storage): Update.
2365 (psymtab_storage::~psymtab_storage): Update.
2366 (psymbol_bcache_init, psymbol_bcache_free)
2367 (psymbol_bcache_get_bcache, psymbol_bcache_full): Remove.
2368 (add_psymbol_to_bcache): Update.
2369 (allocate_psymtab): Update.
2370 * objfiles.h (struct objfile_per_bfd_storage) <filename_cache,
2371 macro_cache>: No longer pointers.
2372 * objfiles.c (get_objfile_bfd_data): Don't call bcache_xmalloc.
2373 (free_objfile_per_bfd_storage): Don't call bcache_xfree.
2374 * macrotab.c (macro_bcache): Update.
2375 * macroexp.c: Don't include bcache.h.
2376 * gdbtypes.c (check_types_worklist): Update.
2377 (types_deeply_equal): Remove TRY/CATCH. Update.
2378 * elfread.c (elf_symtab_read): Update.
2379 * dwarf2read.c: Don't include bcache.h.
2380 * buildsym.c (buildsym_compunit::get_macro_table): Update.
2381 * bcache.h (bcache, bcache_full, bcache_xffree, bcache_xmalloc)
2382 (print_bcache_statistics, bcache_memory_used): Don't declare.
2383 (struct bcache): Move from bcache.c. Add constructor, destructor,
2384 methods. Rename all data members.
2385 * bcache.c (struct bcache): Move to bcache.h.
2386 (bcache::expand_hash_table): Rename from expand_hash_table.
2387 (bcache): Remove.
2388 (bcache::insert): Rename from bcache_full.
2389 (bcache::compare): Rename from bcache_compare.
2390 (bcache_xmalloc): Remove.
2391 (bcache::~bcache): Rename from bcache_xfree.
2392 (bcache::print_statistics): Rename from print_bcache_statistics.
2393 (bcache::memory_used): Rename from bcache_memory_used.
2394
2395 2019-03-07 Pedro Alves <palves@redhat.com>
2396
2397 * infrun.c (normal_stop): Also check for
2398 TARGET_WAITKIND_NO_RESUMED before referring to inferior_thread().
2399
2400 2019-03-07 Andrew Burgess <andrew.burgess@embecosm.com>
2401
2402 * f-lang.c (value_from_host_double): Moved to...
2403 * value.c (value_from_host_double): ...here.
2404 * value.h (value_from_host_double): Declare.
2405 * guile/scm-math.c (vlscm_convert_typed_number): Use
2406 value_from_host_double.
2407 (vlscm_convert_number): Likewise.
2408 * guile/scm-value.c (gdbscm_value_to_real): Likewise.
2409 * python/py-value.c (convert_value_from_python): Likewise.
2410
2411 2019-03-06 Tom Tromey <tom@tromey.com>
2412
2413 * gcore.c (write_gcore_file): Use SCOPE_EXIT.
2414
2415 2019-03-06 Tom Tromey <tom@tromey.com>
2416
2417 * utils.h (free_current_contents): Don't declare.
2418 * utils.c (free_current_contents): Remove.
2419
2420 2019-03-06 Tom Tromey <tom@tromey.com>
2421
2422 * top.c (quit_force): Update.
2423 * main.c (captured_command_loop): Update.
2424 * common/new-op.c (operator new): Update.
2425 * common/common-exceptions.c (struct catcher)
2426 <save_cleanup_chain>: Remove member.
2427 (exceptions_state_mc_init): Update.
2428 (exception_try_scope_entry): Return nullptr.
2429 (exception_try_scope_exit, exception_rethrow)
2430 (throw_exception_sjlj, throw_exception_cxx): Update.
2431 * common/cleanups.h (make_cleanup, make_cleanup_dtor)
2432 (all_cleanups, do_cleanups, discard_cleanups)
2433 (discard_final_cleanups, save_cleanups, save_final_cleanups)
2434 (restore_cleanups, restore_final_cleanups): Don't declare.
2435 (do_final_cleanups): Remove parameter.
2436 * common/cleanups.c (cleanup_chain, make_cleanup)
2437 (make_cleanup_dtor, all_cleanups, do_cleanups)
2438 (discard_my_cleanups, discard_cleanups)
2439 (discard_final_cleanups, save_my_cleanups, save_cleanups)
2440 (save_final_cleanups, restore_my_cleanups, restore_cleanups)
2441 (null_cleanup): Remove.
2442 (do_final_cleanups): Remove parameter.
2443
2444 2019-03-06 Tom Tromey <tom@tromey.com>
2445
2446 * remote.c (remote_target::remote_parse_stop_reply): Use
2447 unique_xmalloc_ptr.
2448
2449 2019-03-06 Tom Tromey <tom@tromey.com>
2450
2451 * stabsread.c (struct stabs_field_info): Rename from field_info.
2452 <list, fnlist>: Add initializers.
2453 <obstack>: New member.
2454 (read_member_functions, read_struct_fields, read_baseclasses):
2455 Allocate on obstack. Don't use cleanups.
2456 (read_one_struct_field, read_member_functions, read_struct_fields)
2457 (read_baseclasses, read_tilde_fields, attach_fn_fields_to_type)
2458 (attach_fields_to_type, read_cpp_abbrev, read_member_functions)
2459 (read_struct_type): Update.
2460
2461 2019-03-06 Tom Tromey <tom@tromey.com>
2462
2463 * nat/linux-namespaces.c (linux_mntns_access_fs): Use SCOPE_EXIT.
2464 * common/filestuff.h (make_cleanup_close): Don't declare.
2465 * common/filestuff.c (do_close_cleanup, make_cleanup_close):
2466 Remove.
2467
2468 2019-03-06 Tom Tromey <tom@tromey.com>
2469
2470 * solib-aix.c: Use make_scope_exit.
2471
2472 2019-03-06 Tom Tromey <tom@tromey.com>
2473
2474 * solib-svr4.c (svr4_parse_libraries, svr4_current_sos_direct):
2475 Use make_scope_exit.
2476
2477 2019-03-06 Tom Tromey <tom@tromey.com>
2478
2479 * solib-svr4.c (disable_probes_interface): Remove parameter.
2480 (svr4_handle_solib_event): Use make_scope_exit.
2481
2482 2019-03-06 Tom Tromey <tom@tromey.com>
2483
2484 * remote.c (struct stop_reply_deleter): Remove.
2485 (stop_reply_up): Update.
2486 (struct stop_reply): Derive from notif_event. Don't typedef.
2487 <regcache>: Now a std::vector.
2488 (stop_reply_xfree): Remove.
2489 (stop_reply::~stop_reply): Rename from stop_reply_dtr.
2490 (remote_notif_stop_alloc_reply): Return a unique_ptr. Use new.
2491 (remote_target::discard_pending_stop_replies): Use delete.
2492 (remote_target::remote_parse_stop_reply): Update.
2493 (remote_target::process_stop_reply): Update.
2494 * remote-notif.h (struct notif_event): Add virtual destructor.
2495 Remove "dtr" member.
2496 (struct notif_client) <alloc_event>: Return a unique_ptr.
2497 (notif_event_xfree): Don't declare.
2498 (notif_event_up): New typedef.
2499 * remote-notif.c (remote_notif_ack, remote_notif_parse): Update.
2500 (notif_event_xfree, do_notif_event_xfree): Remove.
2501 (remote_notif_state_xfree): Update.
2502
2503 2019-03-06 Tom Tromey <tom@tromey.com>
2504
2505 * infrun.c (displaced_step_clear_cleanup): Now a
2506 forward_scope_exit type.
2507 (displaced_step_prepare_throw): Update.
2508 (displaced_step_fixup): Update.
2509
2510 2019-03-06 Tom Tromey <tom@tromey.com>
2511
2512 * inferior.h (class inferior): Update comment.
2513 * gdbthread.h (class thread_info): Update comment.
2514
2515 2019-03-06 Joel Brobecker <brobecker@adacore.com>
2516 Tom Tromey <tom@tromey.com>
2517
2518 * stabsread.h (struct stab_section_list): Remove.
2519 (coffstab_build_psymtabs): Update.
2520 * dbxread.c (symbuf_sections): Now a std::vector.
2521 (sect_idx): New global.
2522 (fill_symbuf): Update.
2523 (coffstab_build_psymtabs): Change type of stabsects parameter.
2524 Update.
2525 * coffread.c (struct coff_symfile_info) <stabsects>: Now a
2526 std::vector.
2527 (linetab, linetab_offset, linetab_size, stringtab): Move earlier.
2528 (coff_locate_sections): Update.
2529 (coff_symfile_read): Remove cleanups. Update.
2530 (init_stringtab): Add storage parameter.
2531 (free_stringtab, free_stringtab_cleanup): Remove.
2532 (init_lineno): Add storage parameter.
2533 (free_linetab, free_linetab_cleanup): Remove.
2534
2535 2019-03-06 Pedro Alves <palves@redhat.com>
2536
2537 * linux-fork.c (fork_info::clobber_regs): Delete.
2538 (fork_load_infrun_state): Remove reference to 'clobber_regs'.
2539 (fork_save_infrun_state): Remove 'clobber_regs' parameter. Update
2540 comment. Adjust.
2541 (scoped_switch_fork_info::scoped_switch_fork_info)
2542 (checkpoint_command, linux_fork_context): Adjust
2543 fork_save_infrun_state calls.
2544
2545 2019-03-06 Pedro Alves <palves@redhat.com>
2546
2547 * linux-fork.c (inf_has_multiple_thread_cb): Delete.
2548 (inf_has_multiple_threads): Return 'bool' and rewrite using
2549 inferior_info::threads().
2550
2551 2019-03-06 Pedro Alves <palves@redhat.com>
2552
2553 * linux-fork.c: Include <list>.
2554 (fork_list): Now a std::list instance.
2555 (fork_info): Add ctor, dtor, and in-class initialize all fields.
2556 (forks_exist_p, find_last_fork): Adjust.
2557 (new_fork): Delete.
2558 (one_fork_p): New.
2559 (add_fork): Adjust.
2560 (free_fork): Delete, folded into fork_info::~fork_info().
2561 (delete_fork, find_fork_ptid, find_fork_id, find_fork_pid):
2562 Adjust.
2563 (init_fork_list): Delete.
2564 (linux_fork_killall, linux_fork_mourn_inferior)
2565 (linux_fork_detach, info_checkpoints_command): Adjust.
2566 (_initialize_linux_fork): No longer call init_fork_list.
2567
2568 2019-03-06 Pedro Alves <palves@redhat.com>
2569
2570 * linux-fork.c (new_fork): New, split out of ...
2571 (add_fork): ... this. Return void. Move "first fork" special
2572 case from here, to ...
2573 (checkpoint_command): ... here.
2574 * linux-linux.h (add_fork): Return void.
2575
2576 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
2577
2578 * f-exp.y (direct_abs_decl): Handle TYPE*SIZE type names.
2579
2580 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
2581 Chris January <chris.january@arm.com>
2582 David Lecomber <david.lecomber@arm.com>
2583
2584 * f-exp.y: New token, UNOP_INTRINSIC.
2585 (exp): New pattern using UNOP_INTRINSIC token.
2586 (f77_keywords): Add 'abs' keyword.
2587 * f-lang.c: Add 'target-float.h' and 'math.h' includes.
2588 (value_from_host_double): New function.
2589 (evaluate_subexp_f): Support UNOP_ABS.
2590
2591 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
2592
2593 * f-lang.c (build_fortran_types): Use TYPE_CODE_CHAR for character
2594 types.
2595
2596 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
2597
2598 * f-exp.y (convert_to_kind_type): Handle integer (kind=8).
2599 * f-lang.c (build_fortran_types): Setup builtin_integer_s8.
2600 * f-lang.h (struct builtin_f_type): Add builtin_integer_s8 field.
2601
2602 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
2603
2604 * f-exp.y (convert_to_kind_type): Handle more type kinds.
2605
2606 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
2607 Chris January <chris.january@arm.com>
2608
2609 * expprint.c (dump_subexp_body_standard): Support UNOP_KIND.
2610 * f-exp.y: Define 'KIND' token.
2611 (exp): New pattern for KIND expressions.
2612 (ptype): Handle types with a kind extension.
2613 (direct_abs_decl): Extend to spot kind extensions.
2614 (f77_keywords): Add 'kind' to the list.
2615 (push_kind_type): New function.
2616 (convert_to_kind_type): New function.
2617 * f-lang.c (evaluate_subexp_f): Support UNOP_KIND.
2618 * parse.c (operator_length_standard): Likewise.
2619 * parser-defs.h (enum type_pieces): Add tp_kind.
2620 * std-operator.def: Add UNOP_KIND.
2621
2622 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
2623
2624 * f-exp.y (f_parse): Set yydebug.
2625
2626 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
2627
2628 * f-lang.c (evaluate_subexp_f): New function.
2629 (exp_descriptor_f): New global.
2630 (f_language_defn): Use exp_descriptor_f instead of
2631 exp_descriptor_standard.
2632
2633 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
2634
2635 * f-exp.y (struct token): Add comments.
2636 (dot_ops): Remove uppercase versions and the end marker.
2637 (f77_keywords): Likewise.
2638 (yylex): Use ARRAY_SIZE to iterate over dot_ops, assert all
2639 entries in the dot_ops array are case insensitive, and use
2640 strncasecmp to compare strings. Also some whitespace cleanup in
2641 this area. Similar for the f77_keywords array, except entries in
2642 this list might be case sensitive.
2643
2644 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
2645
2646 * f-exp.y (struct f77_boolean_val): Add comments.
2647 (boolean_values): Remove uppercase versions, and end marker.
2648 (yylex): Use ARRAY_SIZE for iterating over boolean_values array,
2649 and use strncasecmp to achieve case insensitivity. Additionally,
2650 perform whitespace cleanup around this code.
2651
2652 2019-03-06 Tom Tromey <tromey@adacore.com>
2653
2654 * remote-sim.c (gdbsim_target_open): Use result of
2655 gdb_argv::release.
2656
2657 2019-03-06 Richard Bunt <richard.bunt@arm.com>
2658 Dirk Schubert <dirk.schubert@arm.com>
2659 Chris January <chris.january@arm.com>
2660
2661 * eval.c (evaluate_subexp_standard): Call Fortran argument
2662 wrapping logic.
2663 * f-lang.c (struct value): A value which can be passed into a
2664 Fortran function call.
2665 (fortran_argument_convert): Wrap Fortran arguments in a pointer
2666 where appropriate.
2667 (struct type): Value ready for a Fortran function call.
2668 (fortran_preserve_arg_pointer): Undo check_typedef, the pointer
2669 is needed.
2670 * f-lang.h (fortran_argument_convert): Declaration.
2671 (fortran_preserve_arg_pointer): Declaration.
2672 * infcall.c (value_arg_coerce): Call Fortran argument logic.
2673
2674 2019-03-05 Tom Tromey <tromey@adacore.com>
2675
2676 * python/py-prettyprint.c (print_string_repr): Remove #if.
2677 * python/py-utils.c (unicode_to_encoded_string): Remove #if.
2678
2679 2019-03-05 Tom Tromey <tromey@adacore.com>
2680
2681 * target.c (the_dummy_target): Move later. Change type to
2682 "dummy_target".
2683 (initialize_targets): Don't initialize the_dummy_target.
2684
2685 2019-03-05 Tom Tromey <tromey@adacore.com>
2686
2687 * gdb_bfd.c (gdb_bfd_fdopenr): Remove.
2688 * gdb_bfd.h (gdb_bfd_fdopenr): Don't declare.
2689
2690 2019-03-05 Tom Tromey <tromey@adacore.com>
2691
2692 * windows-nat.c (windows_nat_target::attach)
2693 (windows_nat_target::detach): Don't call gdb_flush.
2694 * valprint.c (generic_val_print, val_print, val_print_string):
2695 Don't call gdb_flush.
2696 * utils.c (defaulted_query): Don't call gdb_flush.
2697 * typeprint.c (print_type_scalar): Don't call gdb_flush.
2698 * target.c (target_announce_detach): Don't call gdb_flush.
2699 * sparc64-tdep.c (adi_print_versions): Don't call gdb_flush.
2700 * remote.c (extended_remote_target::attach): Don't call
2701 gdb_flush.
2702 * procfs.c (procfs_target::detach): Don't call gdb_flush.
2703 * printcmd.c (do_examine): Don't call gdb_flush.
2704 (info_display_command): Don't call gdb_flush.
2705 * p-valprint.c (pascal_val_print): Don't call gdb_flush.
2706 * nto-procfs.c (nto_procfs_target::attach): Don't call gdb_flush.
2707 * memattr.c (info_mem_command): Don't call gdb_flush.
2708 * mdebugread.c (mdebug_build_psymtabs): Don't call gdb_flush.
2709 * m2-valprint.c (m2_val_print): Don't call gdb_flush.
2710 * infrun.c (follow_exec, handle_command): Don't call gdb_flush.
2711 * inf-ptrace.c (inf_ptrace_target::attach): Don't call gdb_flush.
2712 * hppa-tdep.c (unwind_command): Don't call gdb_flush.
2713 * gnu-nat.c (gnu_nat_target::attach): Don't call gdb_flush.
2714 (gnu_nat_target::detach): Don't call gdb_flush.
2715 * f-valprint.c (f_val_print): Don't call gdb_flush.
2716 * darwin-nat.c (darwin_nat_target::attach): Don't call gdb_flush.
2717 * cli/cli-script.c (read_command_lines): Don't call gdb_flush.
2718 * cli/cli-cmds.c (shell_escape, print_disassembly): Don't call
2719 gdb_flush.
2720 * c-valprint.c (c_val_print): Don't call gdb_flush.
2721 * ada-valprint.c (ada_print_scalar): Don't call gdb_flush.
2722
2723 2019-03-05 Tom Tromey <tromey@adacore.com>
2724
2725 * varobj.c (update_dynamic_varobj_children): Update.
2726 (install_default_visualizer): Use reset, not release.
2727 * value.c (set_internalvar): Update.
2728 * dwarf2loc.c (value_of_dwarf_reg_entry): Update.
2729 * common/gdb_ref_ptr.h (class ref_ptr) <release>: Add
2730 ATTRIBUTE_UNUSED_RESULT.
2731
2732 2019-03-05 Tom Tromey <tromey@adacore.com>
2733
2734 * remote.c (class scoped_remote_fd) <release>: Add
2735 ATTRIBUTE_UNUSED_RESULT.
2736
2737 2019-03-05 Tom Tromey <tromey@adacore.com>
2738
2739 * macroexp.c (struct macro_buffer) <release>: Add
2740 ATTRIBUTE_UNUSED_RESULT.
2741
2742 2019-03-05 Tom Tromey <tromey@adacore.com>
2743
2744 * nat/linux-btrace.c (linux_enable_bts, linux_enable_pt): Update.
2745 * common/scoped_mmap.h (class scoped_mmap) <release>: Add
2746 ATTRIBUTE_UNUSED_RESULT.
2747
2748 2019-03-05 Tom Tromey <tromey@adacore.com>
2749
2750 * common/scoped_fd.h (class scoped_fd) <release>: Add
2751 ATTRIBUTE_UNUSED_RESULT.
2752
2753 2019-03-05 Tom Tromey <tromey@adacore.com>
2754
2755 * parser-defs.h (struct parser_state) <release>: Add
2756 ATTRIBUTE_UNUSED_RESULT.
2757
2758 2019-03-05 Tom Tromey <tromey@adacore.com>
2759
2760 * utils.h (class gdb_argv) <release>: Add
2761 ATTRIBUTE_UNUSED_RESULT.
2762 * common/common-defs.h (ATTRIBUTE_UNUSED_RESULT): Define.
2763
2764 2019-03-02 Eli Zaretskii <eliz@gnu.org>
2765
2766 * xml-syscall.c (xml_list_syscalls_by_group): Drop 'struct' from
2767 for-loop range, to avoid compiler warnings.
2768
2769 * tui/tui.c (tui_enable) [__MINGW32__]: Don't declare 'cap', to
2770 avoid compiler warnings about unused variables.
2771
2772 * NEWS: Mention end of support for native debugging on MS-Windows
2773 before XP.
2774
2775 PR gdb/24292
2776 * common/netstuff.c:
2777 * gdbserver/gdbreplay.c
2778 * gdbserver/remote-utils.c:
2779 * ser-tcp.c:
2780 * unittests/parse-connection-spec-selftests.c [USE_WIN32API]:
2781 Include ws2tcpip.h instead of wsiapi.h and winsock2.h. Redefine
2782 _WIN32_WINNT to 0x0501 if defined to a smaller value, as
2783 'getaddrinfo' and 'freeaddrinfo' were not available before
2784 Windows XP, and mingw.org's MinGW headers by default define
2785 _WIN32_WINNT to 0x500.
2786
2787 2019-03-01 Gary Benson <gbenson@redhat.com>
2788
2789 * coffread.c (coff_start_symtab): Remove unnecessary xstrdup.
2790
2791 2019-02-28 Brian Vandenberg <phantall@gmail.com>
2792 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2793
2794 PR gdb/8527
2795 * procfs.c (proc_wait_for_stop): Wrap write of PCWSTOP in
2796 set_sigint_trap, clear_sigint_trap.
2797
2798 2019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2799
2800 * target.c (target_detach): Clear the regcache and the
2801 frame cache.
2802
2803 2019-02-27 Pedro Alves <palves@redhat.com>
2804
2805 * utils.c (set_screen_size): When we cap the height/width sizes,
2806 tweak the corresponding command variable to show "unlimited":
2807
2808 2019-02-27 Saagar Jha <saagar@saagarjha.com>
2809 Pedro Alves <palves@redhat.com>
2810
2811 * utils.c (set_screen_size): Reduce "infinite" rows and columns
2812 before calling rl_set_screen_size.
2813
2814 2019-02-27 Tom Tromey <tromey@adacore.com>
2815
2816 * configure.ac (HAVE_LIBPYTHON2_4, HAVE_LIBPYTHON2_5): Never
2817 define.
2818 * python/py-value.c: Remove Python 2.4 workaround.
2819 * python/py-utils.c (gdb_pymodule_addobject): Remove Python 2.4
2820 workaround.
2821 * python/py-type.c (convert_field, gdbpy_initialize_types): Remove
2822 Python 2.4 workaround.
2823 * python/python-internal.h: Remove Python 2.4 comment.
2824 (Py_ssize_t): Don't define.
2825 (PyVarObject_HEAD_INIT, Py_TYPE): Don't define.
2826 (gdb_Py_DECREF): Remove Python 2.4 workaround.
2827 (gdb_PyObject_GetAttrString, PyObject_GetAttrString): Remove.
2828 (gdb_PyObject_HasAttrString, PyObject_HasAttrString): Remove.
2829 * python/python.c (do_start_initialization): Remove Python 2.4
2830 workaround.
2831 * python/py-prettyprint.c (class dummy_python_frame): Remove.
2832 (print_children): Remove Python 2.4 workaround.
2833 * python/py-inferior.c (buffer_procs): Remove Python 2.4
2834 workaround.
2835 (CHARBUFFERPROC_NAME): Remove.
2836 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Remove
2837 Python 2.4 workaround.
2838
2839 2019-02-27 Kevin Buettner <kevinb@redhat.com>
2840
2841 * NEWS: Note minimum Python version.
2842
2843 2019-02-27 Kevin Buettner <kevinb@redhat.com>
2844
2845 * python/py-inferior.c (infpy_write_memory): Remove non-IS_PY3K
2846 code from these functions. Remove corresponding ifdefs. Use
2847 Py_buffer_up instead of explicit calls to PyBuffer_Release.
2848 Remove gotos and target of gotos.
2849 (infpy_search_memory): Likewise.
2850
2851 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
2852
2853 * gdb/hppa-tdep.c (hppa_dummy_id): Delete.
2854 (hppa_gdbarch_init): Don't register deleted functions with
2855 gdbarch.
2856
2857 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
2858
2859 * gdb/h8300-tdep.c (h8300_unwind_pc): Delete.
2860 (h8300_unwind_sp): Delete.
2861 (h8300_dummy_id): Delete.
2862 (h8300_gdbarch_init): Don't register deleted functions with
2863 gdbarch.
2864
2865 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
2866
2867 * gdb/ft32-tdep.c (ft32_dummy_id): Delete.
2868 (ft32_unwind_pc): Delete.
2869 (ft32_unwind_sp): Delete.
2870 (ft32_gdbarch_init): Don't register deleted functions with
2871 gdbarch.
2872
2873 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
2874
2875 * gdb/frv-tdep.c (frv_dummy_id): Delete.
2876 (frv_unwind_pc): Delete.
2877 (frv_unwind_sp): Delete.
2878 (frv_gdbarch_init): Don't register deleted functions with
2879 gdbarch.
2880
2881 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
2882
2883 * gdb/riscv-tdep.c (riscv_dummy_id): Delete.
2884 (riscv_unwind_pc): Delete.
2885 (riscv_unwind_sp): Delete.
2886 (riscv_gdbarch_init): Don't register deleted functions with
2887 gdbarch.
2888
2889 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
2890
2891 * gdb/csky-tdep.c (csky_dummy_id): Delete.
2892 (csky_unwind_pc): Delete.
2893 (csky_unwind_sp): Delete.
2894 (csky_gdbarch_init): Don't register deleted functions with
2895 gdbarch.
2896
2897 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
2898
2899 * gdb/cris-tdep.c (cris_dummy_id): Delete.
2900 (cris_unwind_pc): Delete.
2901 (cris_unwind_sp): Delete.
2902 (cris_gdbarch_init): Don't register deleted functions with
2903 gdbarch.
2904
2905 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
2906
2907 * gdb/bfin-tdep.c (bfin_dummy_id): Delete.
2908 (bfin_unwind_pc): Delete.
2909 (bfin_gdbarch_init): Don't register deleted functions with gdbarch.
2910
2911 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
2912
2913 * gdb/arm-tdep.c (arm_dummy_id): Delete.
2914 (arm_unwind_pc): Delete.
2915 (arm_unwind_sp): Delete.
2916 (arm_gdbarch_init): Don't register deleted functions with gdbarch.
2917
2918 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
2919
2920 * gdb/arc-tdep.c (arc_dummy_id): Delete.
2921 (arc_unwind_pc): Delete.
2922 (arc_unwind_sp): Delete.
2923 (arc_gdbarch_init): Don't register deleted functions with gdbarch.
2924
2925 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
2926
2927 * gdb/alpha-tdep.c (alpha_dummy_id): Delete.
2928 (alpha_unwind_pc): Delete.
2929 (alpha_gdbarch_init): Don't register deleted functions with
2930 gdbarch.
2931
2932 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
2933
2934 * gdb/aarch64-tdep.c (aarch64_dummy_id): Delete.
2935 (aarch64_unwind_pc): Delete.
2936 (aarch64_unwind_sp): Delete.
2937 (aarch64_gdbarch_init): Don't register deleted functions with
2938 gdbarch.
2939
2940 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
2941
2942 * gdbtypes.c (type_align): Don't consider static members when
2943 computing structure alignment.
2944
2945 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
2946
2947 * arc-tdep.c (arc_type_align): Provide alignment for basic types,
2948 return 0 for other types.
2949 * arch-utils.c (default_type_align): Always return 0.
2950 * gdbarch.h: Regenerate.
2951 * gdbarch.sh (type_align): Extend comment.
2952 * gdbtypes.c (type_align): Add additional comments, always call
2953 gdbarch_type_align before applying the default rules.
2954 * i386-tdep.c (i386_type_align): Return 0 as the default rule,
2955 generic code will then apply a suitable default.
2956 * nios2-tdep.c (nios2_type_align): Provide alignment for basic
2957 types, return 0 for other types.
2958
2959 2019-02-27 Joel Brobecker <brobecker@adacore.com>
2960
2961 * NEWS: Create a new section for the next release branch.
2962 Rename the section of the current branch, now that it has
2963 been cut.
2964
2965 2019-02-27 Joel Brobecker <brobecker@adacore.com>
2966
2967 GDB 8.3 branch created (143420fb0d5ae54323ba9953f0818c194635228d):
2968 * version.in: Bump version to 8.3.50.DATE-git.
2969
2970 2019-02-26 Simon Marchi <simon.marchi@efficios.com>
2971
2972 * aix-thread.c (ptid_cmp): Remove unused variable.
2973 (get_signaled_thread): Likewise.
2974 (store_regs_user_thread): Likewise.
2975 (store_regs_kernel_thread): Likewise.
2976 (fetch_regs_kernel_thread): Remove shadowed variable.
2977
2978 2019-02-26 Andrew Burgess <andrew.burgess@embecosm.com>
2979
2980 * features/riscv/32bit-cpu.xml: Add register numbers.
2981 * features/riscv/32bit-fpu.c: Regenerate.
2982 * features/riscv/32bit-fpu.xml: Add register numbers.
2983 * features/riscv/64bit-cpu.xml: Add register numbers.
2984 * features/riscv/64bit-fpu.c: Regenerate.
2985 * features/riscv/64bit-fpu.xml: Add register numbers.
2986
2987 2019-02-26 Kevin Buettner <kevinb@redhat.com>
2988
2989 * NEWS: Mention two argument form of gdb.Value constructor.
2990 * python/py-value.c (convert_buffer_and_type_to_value): New
2991 function.
2992 (valpy_new): Parse arguments via gdb_PyArg_ParseTupleAndKeywords.
2993 Add support for handling an optional second argument. Call
2994 convert_buffer_and_type_to_value as appropriate.
2995 * python/python-internal.h (Py_buffer_deleter): New struct.
2996 (Py_buffer_up): New typedef.
2997
2998 2019-02-25 John Baldwin <jhb@FreeBSD.org>
2999
3000 * dwarf2read.c (dwarf2_get_dwz_file): Reset dwz_bfd to nullptr
3001 instead of releasing ownership.
3002
3003 2019-02-25 Jordan Rupprecht <rupprecht@google.com>
3004
3005 * dwarf2read.c (open_and_init_dwp_file): Call
3006 elf_numsections instead of bfd_count_sections to initialize
3007 dwp_file->num_sections.
3008
3009 2019-02-25 Tom Tromey <tromey@adacore.com>
3010
3011 * solib-darwin.c (darwin_get_dyld_bfd): Don't release dyld_bfd.
3012
3013 2019-02-23 Sergio Durigan Junior <sergiodj@redhat.com>
3014
3015 * gcore.in: Add '--readnever' option when invoking GDB.
3016
3017 2019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
3018
3019 * MAINTAINERS: Update my email address.
3020
3021 2019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
3022
3023 * build-id.c (build_id_to_debug_bfd_1): New function.
3024 (build_id_to_debug_bfd): Look for separate debug file in
3025 sysroot.
3026
3027 2019-02-22 Andrew Burgess <andrew.burgess@embecosm.com>
3028
3029 * gdbarch.sh: Update the copyright year range that is placed into
3030 generated files.
3031
3032 2019-02-22 Keith Seitz <keiths@redhat.com>
3033
3034 PR symtab/23853
3035 * linespec.c (create_sals_line_offset): Search for the default
3036 symtab's filename instead of its fullname.
3037
3038 2019-02-21 Alan Hayward <alan.hayward@arm.com>
3039
3040 * NEWS: Update style defaults.
3041
3042 2019-02-21 Alan Hayward <alan.hayward@arm.com>
3043
3044 * main.c (captured_main_1): Disable styling in batch mode.
3045
3046 2019-02-20 Tom Tromey <tom@tromey.com>
3047
3048 * symtab.c (symtab_symbol_info): Fix typos.
3049
3050 2019-02-20 Tom Tromey <tromey@adacore.com>
3051
3052 * findcmd.c (_initialize_mem_search): Use upper case for
3053 metasyntactic variables.
3054
3055 2019-02-20 Alan Hayward <alan.hayward@arm.com>
3056
3057 * aarch64-tdep.c (aarch64_add_reggroups): New function.
3058 (aarch64_gdbarch_init): Call aarch64_add_reggroups.
3059
3060 2019-02-19 Simon Marchi <simon.marchi@polymtl.ca>
3061
3062 * top.h (source_file_name): Change to std::string.
3063 * top.c (source_file_name): Likewise.
3064 (command_line_input): Adjust.
3065 * cli/cli-script.c (script_from_file): Adjust.
3066
3067 2019-02-19 Tom Tromey <tromey@adacore.com>
3068
3069 * ravenscar-thread.c
3070 (ravenscar_thread_target::update_thread_list): Don't call
3071 ada_build_task_list.
3072 * ada-lang.h (ada_build_task_list): Don't declare.
3073 * ada-tasks.c (struct ada_tasks_inferior_data)
3074 <task_list_valid_p>: Now bool.
3075 (read_known_tasks, ada_task_list_changed)
3076 (ada_tasks_invalidate_inferior_data): Update.
3077 (read_known_tasks_array): Return bool.
3078 (read_known_tasks_list): Likewise.
3079 (read_known_tasks): Return void.
3080 (ada_build_task_list): Now static.
3081
3082 2019-02-18 Andrew Burgess <andrew.burgess@embecosm.com>
3083
3084 * gdbtypes.c (type_align): Allow alignment of TYPE_CODE_METHODPTR
3085 and TYPE_CODE_MEMBERPTR to be overridden by the gdbarch.
3086
3087 2019-02-18 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3088
3089 * ada-task.c (_initialize_tasks): Use 'with_cleanup' register
3090 variant for ada_tasks_pspace_data_handle and
3091 ada_tasks_inferior_data_handle.
3092 (ada_tasks_pspace_data_cleanup): New function.
3093 (ada_tasks_inferior_data_cleanup): New function.
3094
3095 2019-02-17 Tom Tromey <tom@tromey.com>
3096
3097 * macrotab.h (macro_source_fullname): Return a std::string.
3098 * macrotab.c (macro_include, check_for_redefinition)
3099 (macro_undef, macro_lookup_definition, foreach_macro)
3100 (foreach_macro_in_scope): Update.
3101 (macro_source_fullname): Return a std::string.
3102 * macrocmd.c (show_pp_source_pos): Update.
3103
3104 2019-02-17 Tom Tromey <tom@tromey.com>
3105
3106 * macrocmd.c (show_pp_source_pos): Style the file names.
3107
3108 2019-02-17 Tom Tromey <tom@tromey.com>
3109
3110 PR tui/24197:
3111 * tui/tui-source.c (tui_set_source_content_nil): Rewrite.
3112
3113 2019-02-17 Tom Tromey <tom@tromey.com>
3114
3115 * ada-lang.c (user_select_syms): Use filtered printing.
3116 * utils.c (wrap_style): New global.
3117 (desired_style): Remove.
3118 (emit_style_escape): Add stream parameter.
3119 (set_output_style, reset_terminal_style, prompt_for_continue):
3120 Update.
3121 (flush_wrap_buffer): Only flush gdb_stdout.
3122 (wrap_here): Set wrap_style.
3123 (fputs_maybe_filtered): Clear the wrap buffer on exception. Don't
3124 treat escape sequences as a character. Change when wrap buffer is
3125 flushed.
3126 (fputs_styled): Do not set the output style when the default is
3127 requested.
3128 * ui-style.h (struct ui_file_style) <is_default>: New method.
3129 * source.c (print_source_lines_base): Emit escape sequences in one
3130 piece.
3131
3132 2019-02-17 Joel Brobecker <brobecker@adacore.com>
3133
3134 * gdbtypes.c (type_align): Handle TYPE_CODE_RANGE the same as
3135 integers and enumeration types.
3136
3137 2019-02-17 Joel Brobecker <brobecker@adacore.com>
3138
3139 * ada-lang.c (standard_lookup): Use ada_lookup_encoded_symbol
3140 instead of lookup_symbol_in_language
3141 (do_exact_match): New function.
3142 (ada_get_symbol_name_matcher): Return do_exact_match when
3143 doing a verbatim match.
3144
3145 2019-02-15 Tom Tromey <tromey@adacore.com>
3146
3147 * ravenscar-thread.c (ravenscar_thread_target::resume)
3148 (ravenscar_thread_target::wait): Special case wildcard requests.
3149
3150 2019-02-15 Tom Tromey <tromey@adacore.com>
3151
3152 * ravenscar-thread.c (base_ptid): Remove.
3153 (struct ravenscar_thread_target) <close>: New method.
3154 <m_base_ptid>: New member.
3155 <update_inferior_ptid, active_task, task_is_currently_active,
3156 runtime_initialized>: Declare methods.
3157 <ravenscar_thread_target>: Add constructor.
3158 (ravenscar_thread_target::task_is_currently_active)
3159 (ravenscar_thread_target::update_inferior_ptid)
3160 (ravenscar_runtime_initialized): Rename. Now methods.
3161 (ravenscar_thread_target::resume, ravenscar_thread_target::wait)
3162 (ravenscar_thread_target::update_thread_list): Update.
3163 (ravenscar_thread_target::active_task): Now method.
3164 (ravenscar_thread_target::store_registers)
3165 (ravenscar_thread_target::prepare_to_store)
3166 (ravenscar_thread_target::prepare_to_store)
3167 (ravenscar_thread_target::mourn_inferior): Update.
3168 (ravenscar_inferior_created): Use "new" to create target.
3169 (ravenscar_thread_target::get_ada_task_ptid): Update.
3170 (_initialize_ravenscar): Don't initialize base_ptid.
3171 (ravenscar_ops): Remove global.
3172
3173 2019-02-15 Tom Tromey <tromey@adacore.com>
3174
3175 * target.h (push_target): Declare new overload.
3176 * target.c (push_target): New overload, taking an rvalue reference.
3177 * remote.c (remote_target::open_1): Use push_target overload.
3178 * corelow.c (core_target_open): Use push_target overload.
3179
3180 2019-02-15 Tom Tromey <tromey@adacore.com>
3181
3182 * ravenscar-thread.c (is_ravenscar_task)
3183 (ravenscar_task_is_currently_active): Return bool.
3184 (ravenscar_update_inferior_ptid, get_running_thread_msymbol)
3185 (_initialize_ravenscar): Remove "(void)".
3186 (has_ravenscar_runtime, ravenscar_runtime_initialized): Likewise.
3187 Return bool.
3188
3189 2019-02-15 Tom Tromey <tromey@adacore.com>
3190
3191 * ravenscar-thread.c (ravenscar_runtime_initializer)
3192 (has_ravenscar_runtime, get_running_thread_id)
3193 (ravenscar_thread_target::resume): Fix indentation.
3194
3195 2019-02-15 Tom Tromey <tromey@adacore.com>
3196
3197 * sparc-ravenscar-thread.c (struct sparc_ravenscar_ops): Derive
3198 from ravenscar_arch_ops.
3199 (sparc_ravenscar_ops::fetch_registers)
3200 (sparc_ravenscar_ops::store_registers): Now methods.
3201 (sparc_ravenscar_prepare_to_store): Remove.
3202 (sparc_ravenscar_ops): Redefine.
3203 * ravenscar-thread.h (struct ravenscar_arch_ops): Add virtual
3204 methods and destructor. Remove members.
3205 * ravenscar-thread.c (ravenscar_thread_target::fetch_registers)
3206 (ravenscar_thread_target::store_registers)
3207 (ravenscar_thread_target::prepare_to_store): Update.
3208 * ppc-ravenscar-thread.c (ppc_ravenscar_generic_prepare_to_store):
3209 Remove.
3210 (struct ppc_ravenscar_powerpc_ops): Derive from
3211 ravenscar_arch_ops.
3212 (ppc_ravenscar_powerpc_ops::fetch_registers)
3213 (ppc_ravenscar_powerpc_ops::store_registers): Now methods.
3214 (ppc_ravenscar_powerpc_ops): Redefine.
3215 (struct ppc_ravenscar_e500_ops): Derive from ravenscar_arch_ops.
3216 (ppc_ravenscar_e500_ops::fetch_registers)
3217 (ppc_ravenscar_e500_ops::store_registers): Now methods.
3218 (ppc_ravenscar_e500_ops): Redefine.
3219 * aarch64-ravenscar-thread.c
3220 (aarch64_ravenscar_generic_prepare_to_store): Remove.
3221 (struct aarch64_ravenscar_ops): Derive from ravenscar_arch_ops.
3222 (aarch64_ravenscar_fetch_registers)
3223 (aarch64_ravenscar_store_registers): Now methods.
3224 (aarch64_ravenscar_ops): Redefine.
3225
3226 2019-02-15 Tom Tromey <tromey@adacore.com>
3227
3228 * ravenscar-thread.c (ravenscar_thread_target::stopped_by_sw_breakpoint)
3229 (ravenscar_thread_target::stopped_by_hw_breakpoint)
3230 (ravenscar_thread_target::stopped_by_watchpoint)
3231 (ravenscar_thread_target::stopped_data_address)
3232 (ravenscar_thread_target::core_of_thread): Use scoped_restore.
3233
3234 2019-02-15 Tom Tromey <tromey@adacore.com>
3235
3236 * ravenscar-thread.c: Fix some typos.
3237
3238 2019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3239 Tom Tromey <tromey@adacore.com>
3240
3241 * ada-lang.c (ada_exception_sal): Change addr_string to a
3242 std::string.
3243 (create_ada_exception_catchpoint): Update.
3244
3245 2019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3246 Tom Tromey <tromey@adacore.com>
3247
3248 * breakpoint.c (~bp_location): Rename from bp_location_dtor.
3249 (bp_location_ops): Remove.
3250 (base_breakpoint_allocate_location): Update.
3251 (free_bp_location): Update.
3252 * ada-lang.c (class ada_catchpoint_location)
3253 <ada_catchpoint_location>: Remove ops parameter.
3254 (ada_catchpoint_location_dtor): Remove.
3255 (ada_catchpoint_location_ops): Remove.
3256 (allocate_location_exception): Update.
3257 * breakpoint.h (struct bp_location_ops): Remove.
3258 (class bp_location) <bp_location>: Remove bp_location_ops
3259 parameter.
3260 <~bp_location>: Add destructor.
3261 <ops>: Remove.
3262
3263 2019-02-14 Thomas Schwinge <thomas@codesourcery.com>
3264 Pedro Alves <palves@redhat.com>
3265
3266 * remote.c (remote_target::remote_parse_stop_reply): Avoid using
3267 'PATH_MAX'.
3268
3269 2019-02-14 David Michael <fedora.dm0@gmail.com>
3270 Samuel Thibault <samuel.thibault@gnu.org>
3271 Thomas Schwinge <thomas@codesourcery.com>
3272
3273 * gnu-nat.c (S_proc_getmsgport_reply, S_proc_task2proc_reply)
3274 (S_proc_pid2proc_reply): Adjust to Hurd "proc" interface changes.
3275
3276 2019-02-14 Thomas Schwinge <thomas@codesourcery.com>
3277
3278 * gnu-nat.c (gnu_write_inferior, parse_int_arg, _parse_bool_arg)
3279 (check_empty): Use "const char *".
3280
3281 * gnu-nat.c (gnu_nat_target::detach): Instead of
3282 'detach_inferior (pid)' call
3283 'detach_inferior (find_inferior_pid (pid))'.
3284
3285 * configure.nat [gdb_host == i386gnu] (NATDEPFILES): Add
3286 'nat/fork-inferior.o'.
3287 * gnu-nat.c: #include "nat/fork-inferior.h".
3288
3289 * gnu-nat.c (gnu_nat_target::detach): Instead of
3290 'inf_child_maybe_unpush_target (ops)' call 'maybe_unpush_target'.
3291 * gnu-nat.h: #include "inf-child.h".
3292 * i386-gnu-nat.c (gnu_fetch_registers): Rename/move to
3293 'i386_gnu_nat_target::fetch_registers'.
3294 (gnu_store_registers): Rename/move to
3295 'i386_gnu_nat_target::store_registers'.
3296
3297 * config/i386/nm-i386gnu.h: Don't "#include" any files.
3298 * gnu-nat.h (mach_thread_info): New function.
3299 * gnu-nat.c (thread_takeover_sc_cmd): Use it.
3300
3301 * config/i386/nm-i386gnu.h (gnu_target_pid_to_str): Remove.
3302
3303 2019-02-14 Frederic Konrad <konrad@adacore.com>
3304
3305 * riscv-rdep.c (riscv_type_alignment): Handle TYPE_CODE_RANGE.
3306
3307 2019-02-14 Joel Brobecker <brobecker@adacore.com>
3308
3309 * windows-nat.c (windows_add_thread): Add new parameter
3310 "main_thread_p" with default value set to false. Update
3311 function documentation as well as all callers.
3312 (windows_delete_thread): Likewise.
3313 (fake_create_process): Update call to windows_add_thread.
3314 (get_windows_debug_event) <CREATE_THREAD_DEBUG_EVENT>
3315 <CREATE_PROCESS_DEBUG_EVENT>: Likewise.
3316 <EXIT_THREAD_DEBUG_EVENT, EXIT_PROCESS_DEBUG_EVENT>: Update
3317 call to windows_delete_thread.
3318
3319 2019-02-13 Simon Marchi <simon.marchi@ericsson.com>
3320
3321 * MAINTAINERS: Add Andrew Burgess as global maintainer.
3322
3323 2019-02-12 John Baldwin <jhb@FreeBSD.org>
3324
3325 * symfile.c (find_separate_debug_file): Use canonical path of
3326 sysroot with child_path instead of gdb_sysroot if it is valid.
3327
3328 2019-02-12 John Baldwin <jhb@FreeBSD.org>
3329
3330 * symfile.c (find_separate_debug_file): Use child_path to
3331 determine if an object file is under a sysroot.
3332
3333 2019-02-12 John Baldwin <jhb@FreeBSD.org>
3334
3335 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
3336 unittests/child-path-selftests.c.
3337 * common/pathstuff.c (child_path): New function.
3338 * common/pathstuff.h (child_path): New prototype.
3339 * unittests/child-path-selftests.c: New file.
3340
3341 2019-02-12 John Baldwin <jhb@FreeBSD.org>
3342
3343 * symfile.c (find_separate_debug_file): Look for separate debug
3344 files in debug directories under the sysroot.
3345
3346 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3347
3348 * symtab.h (struct minimal_symbol data_p): New const method.
3349 (struct minimal_symbol text_p): Likewise.
3350 * symtab.c (output_source_filename): Use file name style
3351 to print file name.
3352 (print_symbol_info): Likewise.
3353 (print_msymbol_info): Use address style to print addresses.
3354 Use function name style to print executable text symbols.
3355 (expand_symtab_containing_pc): Use data_p.
3356 (find_pc_sect_compunit_symtab): Likewise.
3357
3358 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3359
3360 * breakpoint.c (describe_other_breakpoints): Use address style
3361 to print addresses.
3362 (say_where): Likewise.
3363
3364 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3365
3366 * ada-typeprint.c (print_func_type): Print function name
3367 style to print function name.
3368 * c-typeprint.c (c_print_type_1): Likewise.
3369
3370 2019-02-11 Alan Hayward <alan.hayward@arm.com>
3371
3372 * aarch64-linux-tdep.c (aarch64_linux_get_syscall_number): Check
3373 for execve.
3374
3375 2019-02-10 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3376
3377 * c-exp.y (direct_abs_decl): Use emplace_back to record the
3378 type_stack.
3379
3380 2019-02-10 Joel Brobecker <brobecker@adacore.com>
3381
3382 * ada-varobj.c (ada_value_is_changeable_p): Add handling of
3383 TYPE_CODE_REF types.
3384
3385 2019-02-08 Jim Wilson <jimw@sifive.com>
3386
3387 * riscv-linux-tdep.c (riscv_linux_fregmap): New.
3388 (riscv_linux_fregset): New.
3389 (riscv_linux_iterate_over_regset_sections): Call cb for .reg2 section.
3390
3391 2019-02-07 Tom Tromey <tom@tromey.com>
3392
3393 * thread.c (thread_cancel_execution_command): Update.
3394 * thread-fsm.h (struct thread_fsm): Add constructor, destructor,
3395 methods.
3396 (struct thread_fsm_ops): Remove.
3397 (thread_fsm_ctor, thread_fsm_delete, thread_fsm_clean_up)
3398 (thread_fsm_should_stop, thread_fsm_return_value)
3399 (thread_fsm_set_finished, thread_fsm_finished_p)
3400 (thread_fsm_async_reply_reason, thread_fsm_should_notify_stop):
3401 Don't declare.
3402 * mi/mi-interp.c (mi_on_normal_stop_1): Update.
3403 * infrun.c (clear_proceed_status_thread)
3404 (clean_up_just_stopped_threads_fsms, fetch_inferior_event)
3405 (print_stop_event): Update.
3406 * infcmd.c (struct step_command_fsm): Inherit from thread_fsm.
3407 Add constructor.
3408 (step_command_fsm_ops): Remove.
3409 (new_step_command_fsm): Remove.
3410 (step_1): Update.
3411 (step_command_fsm::should_stop): Rename from
3412 step_command_fsm_should_stop.
3413 (step_command_fsm::clean_up): Rename from
3414 step_command_fsm_clean_up.
3415 (step_command_fsm::do_async_reply_reason): Rename from
3416 step_command_fsm_async_reply_reason.
3417 (struct until_next_fsm): Inherit from thread_fsm. Add
3418 constructor.
3419 (until_next_fsm_ops): Remove.
3420 (new_until_next_fsm): Remove.
3421 (until_next_fsm::should_stop): Rename from
3422 until_next_fsm_should_stop.
3423 (until_next_fsm::clean_up): Rename from until_next_fsm_clean_up.
3424 (until_next_fsm::do_async_reply_reason): Rename from
3425 until_next_fsm_async_reply_reason.
3426 (struct finish_command_fsm): Inherit from thread_fsm. Add
3427 constructor. Change type of breakpoint.
3428 (finish_command_fsm_ops): Remove.
3429 (new_finish_command_fsm): Remove.
3430 (finish_command_fsm::should_stop): Rename from
3431 finish_command_fsm_should_stop.
3432 (finish_command_fsm::clean_up): Rename from
3433 finish_command_fsm_clean_up.
3434 (finish_command_fsm::return_value): Rename from
3435 finish_command_fsm_return_value.
3436 (finish_command_fsm::do_async_reply_reason): Rename from
3437 finish_command_fsm_async_reply_reason.
3438 (finish_command): Update.
3439 * infcall.c (struct call_thread_fsm): Inherit from thread_fsm.
3440 Add constructor.
3441 (call_thread_fsm_ops): Remove.
3442 (call_thread_fsm::call_thread_fsm): Rename from
3443 new_call_thread_fsm.
3444 (call_thread_fsm::should_stop): Rename from
3445 call_thread_fsm_should_stop.
3446 (call_thread_fsm::should_notify_stop): Rename from
3447 call_thread_fsm_should_notify_stop.
3448 (run_inferior_call, call_function_by_hand_dummy): Update.
3449 * cli/cli-interp.c (should_print_stop_to_console): Update.
3450 * breakpoint.c (struct until_break_fsm): Inherit from thread_fsm.
3451 Add constructor. Change type of location_breakpoint,
3452 caller_breakpoint.
3453 (until_break_fsm_ops): Remove.
3454 (new_until_break_fsm): Remove.
3455 (until_break_fsm::should_stop): Rename from
3456 until_break_fsm_should_stop.
3457 (until_break_fsm::clean_up): Rename from
3458 until_break_fsm_clean_up.
3459 (until_break_fsm::do_async_reply_reason): Rename from
3460 until_break_fsm_async_reply_reason.
3461 (until_break_command): Update.
3462 * thread-fsm.c: Remove.
3463 * Makefile.in (COMMON_SFILES): Remove thread-fsm.c.
3464
3465 2019-02-07 Tom Tromey <tom@tromey.com>
3466
3467 * yy-remap.h: Add include guard.
3468 * xtensa-tdep.h: Add include guard.
3469 * xcoffread.h: Rename include guard.
3470 * varobj-iter.h: Add include guard.
3471 * tui/tui.h: Rename include guard.
3472 * tui/tui-winsource.h: Rename include guard.
3473 * tui/tui-wingeneral.h: Rename include guard.
3474 * tui/tui-windata.h: Rename include guard.
3475 * tui/tui-win.h: Rename include guard.
3476 * tui/tui-stack.h: Rename include guard.
3477 * tui/tui-source.h: Rename include guard.
3478 * tui/tui-regs.h: Rename include guard.
3479 * tui/tui-out.h: Rename include guard.
3480 * tui/tui-layout.h: Rename include guard.
3481 * tui/tui-io.h: Rename include guard.
3482 * tui/tui-hooks.h: Rename include guard.
3483 * tui/tui-file.h: Rename include guard.
3484 * tui/tui-disasm.h: Rename include guard.
3485 * tui/tui-data.h: Rename include guard.
3486 * tui/tui-command.h: Rename include guard.
3487 * tic6x-tdep.h: Add include guard.
3488 * target/waitstatus.h: Rename include guard.
3489 * target/wait.h: Rename include guard.
3490 * target/target.h: Rename include guard.
3491 * target/resume.h: Rename include guard.
3492 * target-float.h: Rename include guard.
3493 * stabsread.h: Add include guard.
3494 * rs6000-tdep.h: Add include guard.
3495 * riscv-fbsd-tdep.h: Add include guard.
3496 * regformats/regdef.h: Rename include guard.
3497 * record.h: Rename include guard.
3498 * python/python.h: Rename include guard.
3499 * python/python-internal.h: Rename include guard.
3500 * python/py-stopevent.h: Rename include guard.
3501 * python/py-ref.h: Rename include guard.
3502 * python/py-record.h: Rename include guard.
3503 * python/py-record-full.h: Rename include guard.
3504 * python/py-record-btrace.h: Rename include guard.
3505 * python/py-instruction.h: Rename include guard.
3506 * python/py-events.h: Rename include guard.
3507 * python/py-event.h: Rename include guard.
3508 * procfs.h: Add include guard.
3509 * proc-utils.h: Add include guard.
3510 * p-lang.h: Add include guard.
3511 * or1k-tdep.h: Rename include guard.
3512 * observable.h: Rename include guard.
3513 * nto-tdep.h: Rename include guard.
3514 * nat/x86-linux.h: Rename include guard.
3515 * nat/x86-linux-dregs.h: Rename include guard.
3516 * nat/x86-gcc-cpuid.h: Add include guard.
3517 * nat/x86-dregs.h: Rename include guard.
3518 * nat/x86-cpuid.h: Rename include guard.
3519 * nat/ppc-linux.h: Rename include guard.
3520 * nat/mips-linux-watch.h: Rename include guard.
3521 * nat/linux-waitpid.h: Rename include guard.
3522 * nat/linux-ptrace.h: Rename include guard.
3523 * nat/linux-procfs.h: Rename include guard.
3524 * nat/linux-osdata.h: Rename include guard.
3525 * nat/linux-nat.h: Rename include guard.
3526 * nat/linux-namespaces.h: Rename include guard.
3527 * nat/linux-btrace.h: Rename include guard.
3528 * nat/glibc_thread_db.h: Rename include guard.
3529 * nat/gdb_thread_db.h: Rename include guard.
3530 * nat/gdb_ptrace.h: Rename include guard.
3531 * nat/fork-inferior.h: Rename include guard.
3532 * nat/amd64-linux-siginfo.h: Rename include guard.
3533 * nat/aarch64-sve-linux-sigcontext.h: Rename include guard.
3534 * nat/aarch64-sve-linux-ptrace.h: Rename include guard.
3535 * nat/aarch64-linux.h: Rename include guard.
3536 * nat/aarch64-linux-hw-point.h: Rename include guard.
3537 * mn10300-tdep.h: Add include guard.
3538 * mips-linux-tdep.h: Add include guard.
3539 * mi/mi-parse.h: Rename include guard.
3540 * mi/mi-out.h: Rename include guard.
3541 * mi/mi-main.h: Rename include guard.
3542 * mi/mi-interp.h: Rename include guard.
3543 * mi/mi-getopt.h: Rename include guard.
3544 * mi/mi-console.h: Rename include guard.
3545 * mi/mi-common.h: Rename include guard.
3546 * mi/mi-cmds.h: Rename include guard.
3547 * mi/mi-cmd-break.h: Rename include guard.
3548 * m2-lang.h: Add include guard.
3549 * location.h: Rename include guard.
3550 * linux-record.h: Rename include guard.
3551 * linux-nat.h: Add include guard.
3552 * linux-fork.h: Add include guard.
3553 * i386-darwin-tdep.h: Rename include guard.
3554 * hppa-linux-offsets.h: Add include guard.
3555 * guile/guile.h: Rename include guard.
3556 * guile/guile-internal.h: Rename include guard.
3557 * gnu-nat.h: Rename include guard.
3558 * gdb-stabs.h: Rename include guard.
3559 * frv-tdep.h: Add include guard.
3560 * f-lang.h: Add include guard.
3561 * event-loop.h: Add include guard.
3562 * darwin-nat.h: Rename include guard.
3563 * cp-abi.h: Rename include guard.
3564 * config/sparc/nm-sol2.h: Rename include guard.
3565 * config/nm-nto.h: Rename include guard.
3566 * config/nm-linux.h: Add include guard.
3567 * config/i386/nm-i386gnu.h: Rename include guard.
3568 * config/djgpp/nl_types.h: Rename include guard.
3569 * config/djgpp/langinfo.h: Rename include guard.
3570 * compile/gcc-cp-plugin.h: Add include guard.
3571 * compile/gcc-c-plugin.h: Add include guard.
3572 * compile/compile.h: Rename include guard.
3573 * compile/compile-object-run.h: Rename include guard.
3574 * compile/compile-object-load.h: Rename include guard.
3575 * compile/compile-internal.h: Rename include guard.
3576 * compile/compile-cplus.h: Rename include guard.
3577 * compile/compile-c.h: Rename include guard.
3578 * common/xml-utils.h: Rename include guard.
3579 * common/x86-xstate.h: Rename include guard.
3580 * common/version.h: Rename include guard.
3581 * common/vec.h: Rename include guard.
3582 * common/tdesc.h: Rename include guard.
3583 * common/selftest.h: Rename include guard.
3584 * common/scoped_restore.h: Rename include guard.
3585 * common/scoped_mmap.h: Rename include guard.
3586 * common/scoped_fd.h: Rename include guard.
3587 * common/safe-iterator.h: Rename include guard.
3588 * common/run-time-clock.h: Rename include guard.
3589 * common/refcounted-object.h: Rename include guard.
3590 * common/queue.h: Rename include guard.
3591 * common/ptid.h: Rename include guard.
3592 * common/print-utils.h: Rename include guard.
3593 * common/preprocessor.h: Rename include guard.
3594 * common/pathstuff.h: Rename include guard.
3595 * common/observable.h: Rename include guard.
3596 * common/netstuff.h: Rename include guard.
3597 * common/job-control.h: Rename include guard.
3598 * common/host-defs.h: Rename include guard.
3599 * common/gdb_wait.h: Rename include guard.
3600 * common/gdb_vecs.h: Rename include guard.
3601 * common/gdb_unlinker.h: Rename include guard.
3602 * common/gdb_unique_ptr.h: Rename include guard.
3603 * common/gdb_tilde_expand.h: Rename include guard.
3604 * common/gdb_sys_time.h: Rename include guard.
3605 * common/gdb_string_view.h: Rename include guard.
3606 * common/gdb_splay_tree.h: Rename include guard.
3607 * common/gdb_setjmp.h: Rename include guard.
3608 * common/gdb_ref_ptr.h: Rename include guard.
3609 * common/gdb_optional.h: Rename include guard.
3610 * common/gdb_locale.h: Rename include guard.
3611 * common/gdb_assert.h: Rename include guard.
3612 * common/filtered-iterator.h: Rename include guard.
3613 * common/filestuff.h: Rename include guard.
3614 * common/fileio.h: Rename include guard.
3615 * common/environ.h: Rename include guard.
3616 * common/common-utils.h: Rename include guard.
3617 * common/common-types.h: Rename include guard.
3618 * common/common-regcache.h: Rename include guard.
3619 * common/common-inferior.h: Rename include guard.
3620 * common/common-gdbthread.h: Rename include guard.
3621 * common/common-exceptions.h: Rename include guard.
3622 * common/common-defs.h: Rename include guard.
3623 * common/common-debug.h: Rename include guard.
3624 * common/cleanups.h: Rename include guard.
3625 * common/buffer.h: Rename include guard.
3626 * common/btrace-common.h: Rename include guard.
3627 * common/break-common.h: Rename include guard.
3628 * cli/cli-utils.h: Rename include guard.
3629 * cli/cli-style.h: Rename include guard.
3630 * cli/cli-setshow.h: Rename include guard.
3631 * cli/cli-script.h: Rename include guard.
3632 * cli/cli-interp.h: Rename include guard.
3633 * cli/cli-decode.h: Rename include guard.
3634 * cli/cli-cmds.h: Rename include guard.
3635 * charset-list.h: Add include guard.
3636 * buildsym-legacy.h: Rename include guard.
3637 * bfin-tdep.h: Add include guard.
3638 * ax.h: Rename include guard.
3639 * arm-linux-tdep.h: Add include guard.
3640 * arm-fbsd-tdep.h: Add include guard.
3641 * arch/xtensa.h: Rename include guard.
3642 * arch/tic6x.h: Add include guard.
3643 * arch/i386.h: Add include guard.
3644 * arch/arm.h: Rename include guard.
3645 * arch/arm-linux.h: Rename include guard.
3646 * arch/arm-get-next-pcs.h: Rename include guard.
3647 * arch/amd64.h: Add include guard.
3648 * arch/aarch64-insn.h: Rename include guard.
3649 * arch-utils.h: Rename include guard.
3650 * annotate.h: Add include guard.
3651 * amd64-darwin-tdep.h: Rename include guard.
3652 * aarch64-linux-tdep.h: Add include guard.
3653 * aarch64-fbsd-tdep.h: Add include guard.
3654 * aarch32-linux-nat.h: Add include guard.
3655
3656 2019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3657
3658 * macrotab.c (macro_define_internal): New function that
3659 factorizes macro_define_object_internal and macro_define_function
3660 code.
3661 (macro_define_object_internal): Use macro_define_internal.
3662 (macro_define_function): Likewise.
3663
3664 2019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3665
3666 * macrocmd.c (extract_identifier): Return
3667 a gdb::unique_xmalloc_ptr<char> instead of a char *, and update
3668 callers.
3669
3670 2019-02-06 John Baldwin <jhb@FreeBSD.org>
3671
3672 * fbsd-nat.c (fbsd_fetch_cmdline): Join arguments with spaces.
3673
3674 2019-02-05 Tom Tromey <tom@tromey.com>
3675
3676 * target.c (target_stack::unpush): Move assertion earlier.
3677
3678 2019-01-30 Tom Tromey <tom@tromey.com>
3679
3680 PR python/23615:
3681 * python/python.c (execute_gdb_command): Use gdbpy_allow_threads.
3682 (gdbpy_parse_and_eval): Likewise.
3683 * python/python-internal.h (gdbpy_allow_threads): New class.
3684
3685 2019-01-28 John Baldwin <jhb@FreeBSD.org>
3686
3687 * aarch64-fbsd-tdep.c (aarch64_fbsd_gregmap)
3688 (aarch64_fbsd_fpregmap): Move earlier.
3689 (AARCH64_MCONTEXT_REG_SIZE, AARCH64_MCONTEXT_FPREG_SIZE): Delete.
3690 (aarch64_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
3691 instead of individual calls to trad_frame_set_reg_addr.
3692 * arm-fbsd-tdep.c (arm_fbsd_gregmap, arm_fbsd_vfpregmap): Move
3693 earlier.
3694 (ARM_MCONTEXT_REG_SIZE, ARM_MCONTEXT_VFP_REG_SIZE): Delete.
3695 (arm_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
3696 instead of individual calls to trad_frame_set_reg_addr.
3697
3698 2019-01-28 Alan Hayward <alan.hayward@arm.com>
3699
3700 * CONTRIBUTE: Replace contribution list with wiki link.
3701
3702 2019-01-25 Tom Tromey <tom@tromey.com>
3703
3704 * Makefile.in (GDB_CFLAGS): Don't add -I for common.
3705
3706 2019-01-25 Tom Tromey <tom@tromey.com>
3707
3708 * xtensa-linux-nat.c: Fix common/ includes.
3709 * xml-support.h: Fix common/ includes.
3710 * xml-support.c: Fix common/ includes.
3711 * x86-linux-nat.c: Fix common/ includes.
3712 * windows-nat.c: Fix common/ includes.
3713 * varobj.h: Fix common/ includes.
3714 * varobj.c: Fix common/ includes.
3715 * value.c: Fix common/ includes.
3716 * valops.c: Fix common/ includes.
3717 * utils.c: Fix common/ includes.
3718 * unittests/xml-utils-selftests.c: Fix common/ includes.
3719 * unittests/utils-selftests.c: Fix common/ includes.
3720 * unittests/unpack-selftests.c: Fix common/ includes.
3721 * unittests/tracepoint-selftests.c: Fix common/ includes.
3722 * unittests/style-selftests.c: Fix common/ includes.
3723 * unittests/string_view-selftests.c: Fix common/ includes.
3724 * unittests/scoped_restore-selftests.c: Fix common/ includes.
3725 * unittests/scoped_mmap-selftests.c: Fix common/ includes.
3726 * unittests/scoped_fd-selftests.c: Fix common/ includes.
3727 * unittests/rsp-low-selftests.c: Fix common/ includes.
3728 * unittests/parse-connection-spec-selftests.c: Fix common/
3729 includes.
3730 * unittests/optional-selftests.c: Fix common/ includes.
3731 * unittests/offset-type-selftests.c: Fix common/ includes.
3732 * unittests/observable-selftests.c: Fix common/ includes.
3733 * unittests/mkdir-recursive-selftests.c: Fix common/ includes.
3734 * unittests/memrange-selftests.c: Fix common/ includes.
3735 * unittests/memory-map-selftests.c: Fix common/ includes.
3736 * unittests/lookup_name_info-selftests.c: Fix common/ includes.
3737 * unittests/function-view-selftests.c: Fix common/ includes.
3738 * unittests/environ-selftests.c: Fix common/ includes.
3739 * unittests/copy_bitwise-selftests.c: Fix common/ includes.
3740 * unittests/common-utils-selftests.c: Fix common/ includes.
3741 * unittests/cli-utils-selftests.c: Fix common/ includes.
3742 * unittests/array-view-selftests.c: Fix common/ includes.
3743 * ui-file.c: Fix common/ includes.
3744 * tui/tui-io.c: Fix common/ includes.
3745 * tracepoint.h: Fix common/ includes.
3746 * tracepoint.c: Fix common/ includes.
3747 * tracefile-tfile.c: Fix common/ includes.
3748 * top.h: Fix common/ includes.
3749 * top.c: Fix common/ includes.
3750 * thread.c: Fix common/ includes.
3751 * target/waitstatus.h: Fix common/ includes.
3752 * target/waitstatus.c: Fix common/ includes.
3753 * target.h: Fix common/ includes.
3754 * target.c: Fix common/ includes.
3755 * target-memory.c: Fix common/ includes.
3756 * target-descriptions.c: Fix common/ includes.
3757 * symtab.h: Fix common/ includes.
3758 * symfile.c: Fix common/ includes.
3759 * stap-probe.c: Fix common/ includes.
3760 * spu-linux-nat.c: Fix common/ includes.
3761 * sparc-nat.c: Fix common/ includes.
3762 * source.c: Fix common/ includes.
3763 * solib.c: Fix common/ includes.
3764 * solib-target.c: Fix common/ includes.
3765 * ser-unix.c: Fix common/ includes.
3766 * ser-tcp.c: Fix common/ includes.
3767 * ser-pipe.c: Fix common/ includes.
3768 * ser-base.c: Fix common/ includes.
3769 * selftest-arch.c: Fix common/ includes.
3770 * s12z-tdep.c: Fix common/ includes.
3771 * rust-exp.y: Fix common/ includes.
3772 * rs6000-aix-tdep.c: Fix common/ includes.
3773 * riscv-tdep.c: Fix common/ includes.
3774 * remote.c: Fix common/ includes.
3775 * remote-notif.h: Fix common/ includes.
3776 * remote-fileio.h: Fix common/ includes.
3777 * remote-fileio.c: Fix common/ includes.
3778 * regcache.h: Fix common/ includes.
3779 * regcache.c: Fix common/ includes.
3780 * record-btrace.c: Fix common/ includes.
3781 * python/python.c: Fix common/ includes.
3782 * python/py-type.c: Fix common/ includes.
3783 * python/py-inferior.c: Fix common/ includes.
3784 * progspace.h: Fix common/ includes.
3785 * producer.c: Fix common/ includes.
3786 * procfs.c: Fix common/ includes.
3787 * proc-api.c: Fix common/ includes.
3788 * printcmd.c: Fix common/ includes.
3789 * ppc-linux-nat.c: Fix common/ includes.
3790 * parser-defs.h: Fix common/ includes.
3791 * osdata.c: Fix common/ includes.
3792 * obsd-nat.c: Fix common/ includes.
3793 * nat/x86-linux.c: Fix common/ includes.
3794 * nat/x86-linux-dregs.c: Fix common/ includes.
3795 * nat/x86-dregs.h: Fix common/ includes.
3796 * nat/x86-dregs.c: Fix common/ includes.
3797 * nat/ppc-linux.c: Fix common/ includes.
3798 * nat/mips-linux-watch.h: Fix common/ includes.
3799 * nat/mips-linux-watch.c: Fix common/ includes.
3800 * nat/linux-waitpid.c: Fix common/ includes.
3801 * nat/linux-ptrace.h: Fix common/ includes.
3802 * nat/linux-ptrace.c: Fix common/ includes.
3803 * nat/linux-procfs.c: Fix common/ includes.
3804 * nat/linux-personality.c: Fix common/ includes.
3805 * nat/linux-osdata.c: Fix common/ includes.
3806 * nat/linux-namespaces.c: Fix common/ includes.
3807 * nat/linux-btrace.h: Fix common/ includes.
3808 * nat/linux-btrace.c: Fix common/ includes.
3809 * nat/fork-inferior.c: Fix common/ includes.
3810 * nat/amd64-linux-siginfo.c: Fix common/ includes.
3811 * nat/aarch64-sve-linux-ptrace.c: Fix common/ includes.
3812 * nat/aarch64-linux.c: Fix common/ includes.
3813 * nat/aarch64-linux-hw-point.h: Fix common/ includes.
3814 * nat/aarch64-linux-hw-point.c: Fix common/ includes.
3815 * namespace.h: Fix common/ includes.
3816 * mips-linux-tdep.c: Fix common/ includes.
3817 * minsyms.c: Fix common/ includes.
3818 * mi/mi-parse.h: Fix common/ includes.
3819 * mi/mi-main.c: Fix common/ includes.
3820 * mi/mi-cmd-env.c: Fix common/ includes.
3821 * memrange.h: Fix common/ includes.
3822 * memattr.c: Fix common/ includes.
3823 * maint.h: Fix common/ includes.
3824 * maint.c: Fix common/ includes.
3825 * main.c: Fix common/ includes.
3826 * machoread.c: Fix common/ includes.
3827 * location.c: Fix common/ includes.
3828 * linux-thread-db.c: Fix common/ includes.
3829 * linux-nat.c: Fix common/ includes.
3830 * linux-fork.c: Fix common/ includes.
3831 * inline-frame.c: Fix common/ includes.
3832 * infrun.c: Fix common/ includes.
3833 * inflow.c: Fix common/ includes.
3834 * inferior.h: Fix common/ includes.
3835 * inferior.c: Fix common/ includes.
3836 * infcmd.c: Fix common/ includes.
3837 * inf-ptrace.c: Fix common/ includes.
3838 * inf-child.c: Fix common/ includes.
3839 * ia64-linux-nat.c: Fix common/ includes.
3840 * i387-tdep.c: Fix common/ includes.
3841 * i386-tdep.c: Fix common/ includes.
3842 * i386-linux-tdep.c: Fix common/ includes.
3843 * i386-linux-nat.c: Fix common/ includes.
3844 * i386-go32-tdep.c: Fix common/ includes.
3845 * i386-fbsd-tdep.c: Fix common/ includes.
3846 * i386-fbsd-nat.c: Fix common/ includes.
3847 * guile/scm-type.c: Fix common/ includes.
3848 * guile/guile.c: Fix common/ includes.
3849 * go32-nat.c: Fix common/ includes.
3850 * gnu-nat.c: Fix common/ includes.
3851 * gdbthread.h: Fix common/ includes.
3852 * gdbarch-selftests.c: Fix common/ includes.
3853 * gdb_usleep.c: Fix common/ includes.
3854 * gdb_select.h: Fix common/ includes.
3855 * gdb_bfd.c: Fix common/ includes.
3856 * gcore.c: Fix common/ includes.
3857 * fork-child.c: Fix common/ includes.
3858 * findvar.c: Fix common/ includes.
3859 * fbsd-nat.c: Fix common/ includes.
3860 * event-top.c: Fix common/ includes.
3861 * event-loop.c: Fix common/ includes.
3862 * dwarf2read.c: Fix common/ includes.
3863 * dwarf2loc.c: Fix common/ includes.
3864 * dwarf2-frame.c: Fix common/ includes.
3865 * dwarf-index-cache.c: Fix common/ includes.
3866 * dtrace-probe.c: Fix common/ includes.
3867 * disasm-selftests.c: Fix common/ includes.
3868 * defs.h: Fix common/ includes.
3869 * csky-tdep.c: Fix common/ includes.
3870 * cp-valprint.c: Fix common/ includes.
3871 * cp-support.h: Fix common/ includes.
3872 * cp-support.c: Fix common/ includes.
3873 * corelow.c: Fix common/ includes.
3874 * completer.h: Fix common/ includes.
3875 * completer.c: Fix common/ includes.
3876 * compile/compile.c: Fix common/ includes.
3877 * compile/compile-loc2c.c: Fix common/ includes.
3878 * compile/compile-cplus-types.c: Fix common/ includes.
3879 * compile/compile-cplus-symbols.c: Fix common/ includes.
3880 * command.h: Fix common/ includes.
3881 * cli/cli-dump.c: Fix common/ includes.
3882 * cli/cli-cmds.c: Fix common/ includes.
3883 * charset.c: Fix common/ includes.
3884 * build-id.c: Fix common/ includes.
3885 * btrace.h: Fix common/ includes.
3886 * btrace.c: Fix common/ includes.
3887 * breakpoint.h: Fix common/ includes.
3888 * breakpoint.c: Fix common/ includes.
3889 * ax.h:
3890 (enum agent_op): Fix common/ includes.
3891 * ax-general.c (struct aop_map): Fix common/ includes.
3892 * ax-gdb.c: Fix common/ includes.
3893 * auxv.c: Fix common/ includes.
3894 * auto-load.c: Fix common/ includes.
3895 * arm-tdep.c: Fix common/ includes.
3896 * arch/riscv.c: Fix common/ includes.
3897 * arch/ppc-linux-common.c: Fix common/ includes.
3898 * arch/i386.c: Fix common/ includes.
3899 * arch/arm.c: Fix common/ includes.
3900 * arch/arm-linux.c: Fix common/ includes.
3901 * arch/arm-get-next-pcs.c: Fix common/ includes.
3902 * arch/amd64.c: Fix common/ includes.
3903 * arch/aarch64.c: Fix common/ includes.
3904 * arch/aarch64-insn.c: Fix common/ includes.
3905 * arch-utils.c: Fix common/ includes.
3906 * amd64-windows-tdep.c: Fix common/ includes.
3907 * amd64-tdep.c: Fix common/ includes.
3908 * amd64-sol2-tdep.c: Fix common/ includes.
3909 * amd64-obsd-tdep.c: Fix common/ includes.
3910 * amd64-nbsd-tdep.c: Fix common/ includes.
3911 * amd64-linux-tdep.c: Fix common/ includes.
3912 * amd64-linux-nat.c: Fix common/ includes.
3913 * amd64-fbsd-tdep.c: Fix common/ includes.
3914 * amd64-fbsd-nat.c: Fix common/ includes.
3915 * amd64-dicos-tdep.c: Fix common/ includes.
3916 * amd64-darwin-tdep.c: Fix common/ includes.
3917 * agent.c: Fix common/ includes.
3918 * ada-lang.h: Fix common/ includes.
3919 * ada-lang.c: Fix common/ includes.
3920 * aarch64-tdep.c: Fix common/ includes.
3921
3922 2019-01-25 Tom Tromey <tom@tromey.com>
3923
3924 * common/create-version.sh: Use common/version.h.
3925
3926 2019-01-24 Pedro Alves <palves@redhat.com>
3927
3928 * infrun.c (signal_stop, signal_print, signal_program)
3929 (signal_catch, signal_pass): Now arrays instead of pointers.
3930 (update_signals_program_target, do_target_resume)
3931 (signal_catch_update, handle_command, _initialize_infrun): Adjust.
3932 * linux-nat.c (linux_nat_target::pass_signals)
3933 (linux_nat_target::create_inferior, linux_nat_target::attach):
3934 Adjust.
3935 * linux-nat.h (linux_nat_target::pass_signals): Adjust.
3936 * nto-procfs.c (nto_procfs_target::pass_signals): Adjust.
3937 * procfs.c (procfs_target::pass_signals): Adjust.
3938 * record-full.c (record_full_target::resume): Adjust.
3939 * remote.c (remote_target::pass_signals)
3940 (remote_target::program_signals): Adjust.
3941 * target-debug.h (target_debug_print_signals): Now takes a
3942 gdb::array_view as parameter. Adjust.
3943 * target.h (target_ops) <pass_signals, program_signals>: Replace
3944 pointer and length parameters with gdb::array_view.
3945 (target_pass_signals, target_program_signals): Likewise.
3946 * target-delegates.c: Regenerate.
3947
3948 2019-01-24 Pedro Alves <palves@redhat.com>
3949
3950 * common/forward-scope-exit.h
3951 (forward_scope_exit::forward_scope_exit): Pass arguments to
3952 m_bind_function directly, instead of creating a std::bind and
3953 copying that.
3954
3955 2019-01-24 Alan Hayward <alan.hayward@arm.com>
3956
3957 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
3958 for static members.
3959 (pass_in_v_vfp_candidate): Likewise.
3960
3961 2019-01-23 Tom Tromey <tom@tromey.com>
3962 Pedro Alves <palves@redhat.com>
3963
3964 * regcache.c (class regcache_invalidator): Remove.
3965 (regcache::raw_write): Use make_scope_exit.
3966
3967 2019-01-23 Tom Tromey <tom@tromey.com>
3968
3969 * ui-out.h (class ui_out_emit_type): Update comment.
3970
3971 2019-01-23 Tom Tromey <tom@tromey.com>
3972
3973 * infrun.c (fetch_inferior_event): Update comment.
3974
3975 2019-01-23 Tom Tromey <tom@tromey.com>
3976 Pedro Alves <palves@redhat.com>
3977
3978 * infrun.c (reinstall_readline_callback_handler_cleanup): Remove
3979 parameter.
3980 (fetch_inferior_event): Use SCOPE_EXIT.
3981
3982
3983 2019-01-23 Tom Tromey <tom@tromey.com>
3984 Pedro Alves <palves@redhat.com>
3985
3986 * infrun.c (disable_thread_events): Delete.
3987 (stop_all_threads): Use SCOPE_EXIT.
3988
3989 2019-01-23 Tom Tromey <tom@tromey.com>
3990 Pedro Alves <palves@redhat.com>
3991
3992 * symfile.c: Include forward-scope-exit.h.
3993 (clear_symtab_users_cleanup): Replace forward declaration with
3994 a FORWARD_SCOPE_EXIT.
3995 (syms_from_objfile_1): Use the forward_scope_exit and
3996 gdb::optional instead of cleanup_function.
3997 (reread_symbols): Use the forward_scope_exit instead of
3998 cleanup_function.
3999 (clear_symtab_users_cleanup): Remove function.
4000
4001 2019-01-23 Tom Tromey <tom@tromey.com>
4002 Pedro Alves <palves@redhat.com>
4003
4004 * linux-nat.c: Include scope-exit.h.
4005 (cleanup_target_stop): Remove.
4006 (linux_nat_target::static_tracepoint_markers_by_strid): Use
4007 SCOPE_EXIT.
4008
4009 2019-01-23 Tom Tromey <tom@tromey.com>
4010 Pedro Alves <palves@redhat.com>
4011
4012 * infcall.c (cleanup_delete_std_terminate_breakpoint): Remove.
4013 (call_function_by_hand_dummy): Use SCOPE_EXIT.
4014
4015 2019-01-23 Tom Tromey <tom@tromey.com>
4016 Andrew Burgess <andrew.burgess@embecosm.com>
4017 Pedro Alves <palves@redhat.com>
4018
4019 * infrun.c (fetch_inferior_event): Use scope_exit.
4020 * utils.h (make_bpstat_clear_actions_cleanup): Don't declare.
4021 * top.c (execute_command): Use scope_exit.
4022 * breakpoint.c (bpstat_do_actions): Use scope_exit.
4023 * utils.c (do_bpstat_clear_actions_cleanup)
4024 (make_bpstat_clear_actions_cleanup): Remove.
4025
4026 2019-01-23 Tom Tromey <tom@tromey.com>
4027 Pedro Alves <palves@redhat.com>
4028
4029 * infrun.c: Include "common/scope-exit.h"
4030 (delete_just_stopped_threads_infrun_breakpoints_cleanup): Remove.
4031 (wait_for_inferior): Use SCOPE_EXIT.
4032 (fetch_inferior_event): Use scope_exit.
4033
4034 2019-01-23 Tom Tromey <tom@tromey.com>
4035 Pedro Alves <palves@redhat.com>
4036
4037 * breakpoint.c (create_breakpoint): Remove cleanup.
4038
4039 2019-01-23 Tom Tromey <tom@tromey.com>
4040 Andrew Burgess <andrew.burgess@embecosm.com>
4041 Pedro Alves <palves@redhat.com>
4042
4043 2019-01-23 Pedro Alves <palves@redhat.com>
4044
4045 * gdbarch-selftests.c (struct on_exit): Use SCOPE_EXIT.
4046
4047 2019-01-23 Pedro Alves <palves@redhat.com>
4048 Andrew Burgess <andrew.burgess@embecosm.com>
4049
4050 * gdbthread.h: Include "common/forward-scope-exit.h".
4051 (scoped_finish_thread_state): Redefine custom class in terms of
4052 forward_scope_exit.
4053
4054 2019-01-23 Pedro Alves <palves@redhat.com>
4055 Andrew Burgess <andrew.burgess@embecosm.com>
4056
4057 * common/forward-scope-exit.h: New file.
4058
4059 2019-01-23 Pedro Alves <palves@redhat.com>
4060 Andrew Burgess <andrew.burgess@embecosm.com>
4061 Tom Tromey <tom@tromey.com>
4062
4063 * common/scope-exit.h: New file.
4064
4065 2019-01-23 Pedro Alves <palves@redhat.com>
4066
4067 * common/preprocessor.h (ESC): Rename to ...
4068 (ESC_PARENS): ... this.
4069 * common/valid-expr.h (CHECK_VALID_EXPR_1, CHECK_VALID_EXPR_2)
4070 (CHECK_VALID_EXPR_3, CHECK_VALID_EXPR_4): Adjust.
4071
4072 2019-01-23 Tom Tromey <tom@tromey.com>
4073
4074 * language.h (class scoped_switch_to_sym_language_if_auto):
4075 Initialize m_lang in both cases.
4076
4077 2019-01-23 Alan Hayward <alan.hayward@arm.com>
4078
4079 * nat/aarch64-linux.c (aarch64_linux_new_thread): Replace XNEW
4080 with XCNEW.
4081
4082 2019-01-22 Tom Tromey <tom@tromey.com>
4083
4084 * corelow.c: Do not include sys/file.h.
4085
4086 2019-01-22 Tom Tromey <tom@tromey.com>
4087
4088 * tui/tui-wingeneral.h: Include gdb_curses.h.
4089
4090 2019-01-22 Tom Tromey <tom@tromey.com>
4091
4092 * source-cache.h (class source_cache) <get_source_lines,
4093 get_plain_source_lines, extract_lines>: Rename "lines" parameter.
4094
4095 2019-01-22 Tom Tromey <tom@tromey.com>
4096
4097 * remote-fileio.h (struct remote_target): Declare.
4098
4099 2019-01-22 Tom Tromey <tom@tromey.com>
4100
4101 * python/py-arch.c: Do not include py-ref.h.
4102 * python/py-bpevent.c: Do not include py-ref.h.
4103 * python/py-cmd.c: Do not include py-ref.h.
4104 * python/py-continueevent.c: Do not include py-ref.h.
4105 * python/py-event.h: Do not include py-ref.h.
4106 * python/py-evtregistry.c: Do not include py-ref.h.
4107 * python/py-finishbreakpoint.c: Do not include py-ref.h.
4108 * python/py-frame.c: Do not include py-ref.h.
4109 * python/py-framefilter.c: Do not include py-ref.h.
4110 * python/py-function.c: Do not include py-ref.h.
4111 * python/py-infevents.c: Do not include py-ref.h.
4112 * python/py-linetable.c: Do not include py-ref.h.
4113 * python/py-objfile.c: Do not include py-ref.h.
4114 * python/py-param.c: Do not include py-ref.h.
4115 * python/py-prettyprint.c: Do not include py-ref.h.
4116 * python/py-progspace.c: Do not include py-ref.h.
4117 * python/py-symbol.c: Do not include py-ref.h.
4118 * python/py-symtab.c: Do not include py-ref.h.
4119 * python/py-type.c: Do not include py-ref.h.
4120 * python/py-unwind.c: Do not include py-ref.h.
4121 * python/py-utils.c: Do not include py-ref.h.
4122 * python/py-value.c: Do not include py-ref.h.
4123 * python/py-varobj.c: Do not include py-ref.h.
4124 * python/py-xmethods.c: Do not include py-ref.h.
4125 * python/python.c: Do not include py-ref.h.
4126 * varobj.c: Do not include py-ref.h.
4127
4128 2019-01-22 Tom Tromey <tom@tromey.com>
4129
4130 * objfiles.h (struct objfile_per_bfd_storage): Use "struct"
4131 keyword for bcache.
4132
4133 2019-01-22 Tom Tromey <tom@tromey.com>
4134
4135 * compile/compile-cplus-types.c: Remove a comment by #include.
4136
4137 2019-01-22 Tom Tromey <tom@tromey.com>
4138
4139 * compile/gcc-c-plugin.h: Include compile-internal.h.
4140
4141 2019-01-22 Tom Tromey <tom@tromey.com>
4142
4143 * stabsread.c (EXTERN): Do not define.
4144 (symnum, next_symbol_text_func, processing_gcc_compilation)
4145 (within_function, global_sym_chain, global_stabs)
4146 (previous_stab_code, this_object_header_files)
4147 (n_this_object_header_files)
4148 (n_allocated_this_object_header_files): Define.
4149 * stabsread.h (EXTERN): Never define. Use "extern".
4150
4151 2019-01-22 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4152
4153 * event-top.c (handle_line_of_input): use unique_xmalloc_ptr for
4154 history_value.
4155
4156 2019-01-21 Tom Tromey <tom@tromey.com>
4157
4158 * ui-out.c: Fix includes.
4159 * tui/tui-source.c: Fix includes.
4160 * target.c: Fix includes.
4161 * remote.c: Fix includes.
4162 * regcache.c: Fix includes.
4163 * python/py-block.c: Fix includes.
4164 * printcmd.c: Fix includes.
4165 * or1k-tdep.c: Fix includes.
4166 * mi/mi-main.c: Fix includes.
4167 * m32r-tdep.c: Fix includes.
4168 * csky-tdep.c: Fix includes.
4169 * compile/compile-cplus-types.c: Fix includes.
4170 * cli/cli-interp.c: Fix includes.
4171
4172 2019-01-21 Alan Hayward <alan.hayward@arm.com>
4173
4174 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
4175 for padding.
4176
4177 2019-01-16 Tom Tromey <tom@tromey.com>
4178
4179 * objfiles.h (struct minimal_symbol_iterator): Rename. Move
4180 earlier.
4181 (struct objfile) <msymbols_range>: Move from top level.
4182 <msymbols>: New method.
4183 (class objfile_msymbols): Remove.
4184 * symtab.c (default_collect_symbol_completion_matches_break_on):
4185 Update.
4186 * symmisc.c (dump_msymbols): Update.
4187 * stabsread.c (scan_file_globals): Update.
4188 * objc-lang.c (info_selectors_command, info_classes_command)
4189 (find_methods): Update.
4190 * minsyms.c (find_solib_trampoline_target): Update.
4191 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Update.
4192 * coffread.c (coff_symfile_read): Update.
4193 * ada-lang.c (ada_lookup_simple_minsym)
4194 (ada_collect_symbol_completion_matches): Update.
4195
4196 2019-01-16 Tom Tromey <tom@tromey.com>
4197
4198 * objfiles.h (class objfile_msymbols) <iterator>: Change argument
4199 type. Remove no-argument constructor.
4200 <iterator::operator++>: Simplify.
4201 <begin>: Update.
4202 <end>: Use minimal_symbol_count.
4203
4204 2019-01-16 Tom Tromey <tom@tromey.com>
4205
4206 * objfiles.h (struct objfile) <psymtabs>: New method.
4207 (class objfile_psymtabs): Remove.
4208 * psymtab.h (class psymtab_storage) <partial_symtab_range>: New
4209 typedef.
4210 <range>: New method.
4211 (require_partial_symbols): Change return type.
4212 * psymtab.c (require_partial_symbols)
4213 (psym_expand_symtabs_matching): Update.
4214 * mdebugread.c (parse_partial_symbols): Update.
4215 * dbxread.c (dbx_end_psymtab): Update.
4216
4217 2019-01-15 Tom Tromey <tom@tromey.com>
4218
4219 * symtab.c (lookup_objfile_from_block)
4220 (lookup_symbol_in_objfile_symtabs)
4221 (basic_lookup_transparent_type_1, find_pc_sect_compunit_symtab)
4222 (find_line_symtab, info_sources_command)
4223 (default_collect_symbol_completion_matches_break_on)
4224 (make_source_files_completion_list): Update.
4225 * symmisc.c (print_objfile_statistics, dump_objfile)
4226 (maintenance_print_symbols, maintenance_info_symtabs)
4227 (maintenance_check_symtabs, maintenance_info_line_tables):
4228 Update.
4229 * source.c (select_source_symtab)
4230 (forget_cached_source_info_for_objfile): Update.
4231 * objfiles.h (class objfile_compunits): Remove.
4232 (struct objfile) <compunits_range>: New typedef.
4233 (compunits): New method.
4234 * objfiles.c (objfile_relocate1): Update.
4235 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
4236 * maint.c (count_symtabs_and_blocks): Update.
4237 * linespec.c (iterate_over_all_matching_symtabs): Update.
4238 * cp-support.c (add_symbol_overload_list_qualified): Update.
4239 * coffread.c (coff_symtab_read): Update.
4240 * ada-lang.c (add_nonlocal_symbols)
4241 (ada_collect_symbol_completion_matches)
4242 (ada_add_global_exceptions): Update.
4243
4244 2019-01-15 Tom Tromey <tom@tromey.com>
4245
4246 * progspace.h (program_space) <objfiles_safe_range>: New
4247 typedef.
4248 <objfiles_safe>: New method.
4249 * objfiles.h (class all_objfiles_safe): Remove.
4250 * objfiles.c (free_all_objfiles, objfile_purge_solibs): Update.
4251 * jit.c (jit_inferior_exit_hook): Update.
4252
4253 2019-01-17 Tom Tromey <tom@tromey.com>
4254
4255 * progspace.h (program_space) <objfiles_range>: New typedef.
4256 <objfiles>: New method.
4257 <objfiles_head>: Rename from objfiles.
4258 (object_files): Update.
4259 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Update.
4260 * guile/scm-pretty-print.c
4261 (ppscm_find_pretty_printer_from_objfiles): Update.
4262 * guile/scm-objfile.c (gdbscm_objfiles): Update.
4263 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers):
4264 Update.
4265 * python/py-progspace.c (pspy_get_objfiles): Update.
4266 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
4267 Update.
4268 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
4269 (objfpy_lookup_objfile_by_build_id): Update.
4270 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
4271 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
4272 Update.
4273 * symtab.c (iterate_over_symtabs, matching_obj_sections)
4274 (expand_symtab_containing_pc, lookup_objfile_from_block)
4275 (lookup_static_symbol, basic_lookup_transparent_type)
4276 (find_pc_sect_compunit_symtab, find_symbol_at_address)
4277 (find_line_symtab, info_sources_command)
4278 (default_collect_symbol_completion_matches_break_on)
4279 (make_source_files_completion_list, find_main_name): Update.
4280 * symmisc.c (print_symbol_bcache_statistics)
4281 (print_objfile_statistics, maintenance_print_symbols)
4282 (maintenance_print_msymbols, maintenance_print_objfiles)
4283 (maintenance_info_symtabs, maintenance_check_symtabs)
4284 (maintenance_expand_symtabs, maintenance_info_line_tables):
4285 Update.
4286 * symfile.c (remove_symbol_file_command, overlay_invalidate_all)
4287 (find_pc_overlay, find_pc_mapped_section, list_overlays_command)
4288 (map_overlay_command, unmap_overlay_command)
4289 (simple_overlay_update, expand_symtabs_matching)
4290 (map_symbol_filenames): Update.
4291 * symfile-debug.c (set_debug_symfile): Update.
4292 * spu-tdep.c (spu_overlay_update, spu_objfile_from_frame):
4293 Update.
4294 * source.c (select_source_symtab, forget_cached_source_info):
4295 Update.
4296 * solib.c (solib_read_symbols): Update.
4297 * solib-spu.c (append_ocl_sos): Update.
4298 * psymtab.c (maintenance_print_psymbols)
4299 (maintenance_info_psymtabs, maintenance_check_psymtabs): Update.
4300 * probe.c (parse_probes_in_pspace, find_probe_by_pc): Update.
4301 * printcmd.c (info_symbol_command): Update.
4302 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created):
4303 Update.
4304 * objfiles.h (class all_objfiles): Remove.
4305 * objfiles.c (have_partial_symbols, have_full_symbols)
4306 (have_minimal_symbols, qsort_cmp, update_section_map)
4307 (shared_objfile_contains_address_p)
4308 (default_iterate_over_objfiles_in_search_order): Update.
4309 * objc-lang.c (info_selectors_command, info_classes_command)
4310 (find_methods): Update.
4311 * minsyms.c (find_solib_trampoline_target): Update.
4312 * maint.c (maintenance_info_sections)
4313 (maintenance_translate_address, count_symtabs_and_blocks):
4314 Update.
4315 * main.c (captured_main_1): Update.
4316 * linux-thread-db.c (try_thread_db_load_from_pdir)
4317 (has_libpthread): Update.
4318 * linespec.c (iterate_over_all_matching_symtabs)
4319 (search_minsyms_for_name): Update.
4320 * jit.c (jit_find_objf_with_entry_addr): Update.
4321 * hppa-tdep.c (find_unwind_entry)
4322 (hppa_lookup_stub_minimal_symbol): Update.
4323 * gcore.c (gcore_create_callback, objfile_find_memory_regions):
4324 Update.
4325 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
4326 (elf_gnu_ifunc_resolve_by_got): Update.
4327 * dwarf2-frame.c (dwarf2_frame_find_fde): Update.
4328 * dwarf-index-write.c (save_gdb_index_command): Update.
4329 * cp-support.c (add_symbol_overload_list_qualified): Update.
4330 * breakpoint.c (create_overlay_event_breakpoint)
4331 (create_longjmp_master_breakpoint)
4332 (create_std_terminate_master_breakpoint)
4333 (create_exception_master_breakpoint): Update.
4334 * blockframe.c (find_pc_partial_function): Update.
4335 * ada-lang.c (ada_lookup_simple_minsym, add_nonlocal_symbols)
4336 (ada_collect_symbol_completion_matches)
4337 (ada_add_global_exceptions): Update.
4338
4339 2019-01-17 Tom Tromey <tom@tromey.com>
4340
4341 * solib-target.c (lm_info_target_p): Remove typedef. Don't
4342 declare VEC.
4343 (solib_target_parse_libraries): Change return type.
4344 (library_list_start_segment, library_list_start_section)
4345 (library_list_end_library, library_list_start_library); Update.
4346 (solib_target_free_library_list): Remove.
4347 (solib_target_parse_libraries): Remove cleanup. Change return
4348 type.
4349 (solib_target_current_sos): Update.
4350
4351 2019-01-17 Tom Tromey <tromey@bapiya>
4352
4353 * valprint.c: Replace "the the" with "the".
4354 * symtab.c: Replace "the the" with "the".
4355 * solib.c: Replace "the the" with "the".
4356 * solib-dsbt.c: Replace "the the" with "the".
4357 * linespec.c: Replace "the the" with "the".
4358 * dwarf2loc.h: Replace "the the" with "the".
4359 * amd64-windows-tdep.c: Replace "the the" with "the".
4360 * aarch64-tdep.c: Replace "the the" with "the".
4361
4362 2019-01-16 Keith Seitz <keiths@redhat.com>
4363
4364 PR gdb/23773
4365 * dwarf2read.c (dwarf2_cu) <ancestor>: New field.
4366 <builder>: Rename to ..
4367 <m_builder>: ... this and make private.
4368 (dwarf2_cu::get_builder): New method. Change all users of
4369 `builder' to use this method.
4370 (dwarf2_start_symtab): Move to ...
4371 (dwarf2_cu::start_symtab): ... here. Update all callers
4372 (setup_type_unit_groups): Move to ...
4373 (dwarf2_cu::setup_type_unit_groups): ... here. Update all
4374 callers.
4375 (dwarf2_cu::reset_builder): New method.
4376 (process_full_compunit, process_full_type_unit): Use
4377 dwarf2_cu::reset_builder.
4378 (follow_die_offset): Record the ancestor CU if it is different
4379 from the followed DIE's CU.
4380 (follow_die_sig_1): Likewise.
4381
4382 2019-01-15 Tom Tromey <tom@tromey.com>
4383
4384 * remote.c (class remote_state) <buf>: Now a char_vector.
4385 <buf_size>: Remove.
4386 (remote_target::getpkt): Change type of buf. Remove sizeof_buf
4387 parameter.
4388 (remote_target::getpkt_or_notif_sane_1)
4389 (remote_target::getpkt_sane)
4390 (remote_target::getpkt_or_notif_sane): Likewise.
4391 (class remote_target) <putpkt>: New overload.
4392 (remote_target::read_frame): Change type of "buf_p". Remove
4393 sizeof_p parameter.
4394 (packet_ok): New overload.
4395 (packet_check_result): New overload.
4396 Update all uses.
4397
4398 2019-01-14 Tom Tromey <tom@tromey.com>
4399
4400 * remote-notif.c (handle_notification, remote_notif_ack)
4401 (remote_notif_parse): Make "buf" const.
4402 * remote-notif.h (struct notif_client) <parse, ack>: Make "buf"
4403 const.
4404 (remote_notif_parse, remote_notif_ack, handle_notification):
4405 Likewise.
4406 * remote.c (remote_notif_stop_parse): Make "buf" const.
4407 (remote_target::remote_parse_stop_reply): Make "buf" const.
4408 (remote_notif_stop_ack): Make "buf" const.
4409
4410 2019-01-14 Tom Tromey <tom@tromey.com>
4411
4412 * remote.c (remote_console_output): Make parameter const.
4413
4414 2019-01-14 Tom Tromey <tom@tromey.com>
4415
4416 * target-debug.h (target_debug_print_signals): Constify.
4417 * nto-procfs.c (nto_procfs_target::pass_signals): Update.
4418 * procfs.c (procfs_target::pass_signals): Update.
4419 * linux-nat.c (linux_nat_target::pass_signals): Update.
4420 * linux-nat.h (class linux_nat_target) <pass_signals>: Update.
4421 * target-delegates.c: Rebuild.
4422 * remote.c (remote_target::program_signals): Update.
4423 (remote_target::pass_signals): Update.
4424 * target.c (target_pass_signals): Constify argument.
4425 (target_program_signals): Likewise.
4426 * target.h (struct target_ops) <pass_signals, program_signals>:
4427 Constify argument.
4428 (target_pass_signals, target_program_signals): Constify argument.
4429
4430 2019-01-14 Tom Tromey <tom@tromey.com>
4431
4432 PR tui/28819:
4433 * tui/tui-io.c (gdb_wgetch): Print \r when needed.
4434
4435 2019-01-14 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
4436
4437 * ppc-tdep.h (struct gdbarch_tdep) <ppc_v0_alias_regnum>: New
4438 field.
4439 * rs6000-tdep.c: Include reggroups.h.
4440 (IS_V_ALIAS_PSEUDOREG): Define.
4441 (rs6000_register_name): Return names for the "vX" aliases.
4442 (rs6000_pseudo_register_type): Return type for the "vX" aliases.
4443 (rs6000_pseudo_register_reggroup_p): Restore. Handle "vX"
4444 aliases. Call default_register_reggroup_p for all other
4445 pseudo-registers.
4446 (v_alias_pseudo_register_read, v_alias_pseudo_register_write):
4447 New functions.
4448 (rs6000_pseudo_register_read, rs6000_pseudo_register_write):
4449 Handle "vX" aliases.
4450 (v_alias_pseudo_register_collect): New function.
4451 (rs6000_ax_pseudo_register_collect): Handle "vX" aliases.
4452 (rs6000_gdbarch_init): Initialize "vX" aliases as
4453 pseudo-registers. Restore registration of
4454 rs6000_pseudo_register_reggroup_p with
4455 set_tdesc_pseudo_register_reggroup_p.
4456
4457 2019-01-13 Max Filippov <jcmvbkbc@gmail.com>
4458
4459 * xtensa-linux-tdep.c (xtensa_linux_init_abi): Update
4460 tdep->num_pseudo_regs. Add calls to set_gdbarch_num_regs and
4461 set_gdbarch_num_pseudo_regs.
4462
4463 2019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4464
4465 * cli/cli-style.h (class cli_style_option): <add_setshow_commands>
4466 Remove arg prefixname, add do_set and do_show.
4467 Add member functions set_list and show_list.
4468 * cli/cli-style.c (class cli_style_option): Update accordingly.
4469 (style_set_list): Move to file scope.
4470 (style_show_list): Likewise.
4471 (set_style): Call help_list.
4472 (show_style): Call cmd_show_list.
4473 (_initialize_cli_style): New macro STYLE_ADD_SETSHOW_COMMANDS.
4474 Update to use the new macro.
4475
4476 2019-10-12 Joel Brobecker <brobecker@adacore.com>
4477
4478 * ada-lang.c (_initialize_ada_language): Expand the help text
4479 for the "catch exception" command.
4480
4481 2019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4482
4483 * symtab.c (matching_obj_sections): Initialize obj,
4484 declare it closer to its usage.
4485
4486 2019-01-10 Tom Tromey <tom@tromey.com>
4487
4488 * thread-iter.h (inf_threads_iterator): Use next_iterator.
4489 (basic_inf_threads_range): Remove.
4490 (inf_threads_range, inf_non_exited_threads_range)
4491 (safe_inf_threads_range): Use next_adapter.
4492
4493 2019-01-10 Keith Seitz <keiths@redhat.com>
4494
4495 PR gdb/23712
4496 PR symtab/23010
4497 * dwarf2read.c (dw2_add_symbol_to_list): Remove.
4498 (fixup_go_packaging, new_symbol): Use add_symbol_to_list.
4499
4500 2019-01-10 Keith Seitz <keiths@redhat.com>
4501
4502 PR gdb/23712
4503 PR symtab/23010
4504 * dictionary.c (pending_to_vector): Remove.
4505 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
4506 Remove _1 suffix, replacing functions of the same name. Update
4507 all callers.
4508 (dict_create_hashed, dict_create_hashed_expandable)
4509 (dict_create_linear, dict_create_linear_expandable, dict_free)
4510 (dict_add_symbol, dict_add_pending, dict_size, dict_empty):
4511 Make functions static.
4512
4513 2019-01-10 Keith Seitz <keiths@redhat.com>
4514
4515 PR gdb/23712
4516 PR symtab/23010
4517 * dictionary.h (struct dictionary): Replace declaration with
4518 multidictionary.
4519 (dict_create_hashed, dict_create_hashed_expandable)
4520 (dict_create_linear, dict_create_linear_expandable)
4521 (dict_free, dict_add_symbol, dict_add_pending, dict_empty)
4522 (dict_iterator_first, dict_iterator_next, dict_iter_match_first)
4523 (dict_iter_match_next, dict_size): Rename to "mdict_" versions
4524 taking multidictionary argument.
4525 [ALL_DICT_SYMBOLS]: Update for multidictionary.
4526 * block.h (struct block) <dict>: Change to multidictionary
4527 and rename `multidict'.
4528 * block.c, buildsym.c, jit.c, mdebugread.c, objfiles.c,
4529 symmisc.c: Update all dictionary references to multidictionary.
4530
4531 2019-01-10 Keith Seitz <keiths@redhat.com>
4532
4533 PR gdb/23712
4534 PR symtab/23010
4535 * dictionary.c: Include unordered_map.
4536 (pending_to_vector): New function.
4537 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
4538 Rewrite the non-"_1" functions to take vector instead
4539 of linked list.
4540 (dict_create_hashed, dict_create_linear, dict_add_pending): Use the
4541 "new" _1 versions of the same name.
4542 (multidictionary): Define.
4543 (std::hash<enum language): New definition.
4544 (collate_pending_symbols_by_language, mdict_create_hashed)
4545 (mdict_create_hashed_expandable, mdict_create_linear)
4546 (mdict_create_linear_expandable, mdict_free)
4547 (find_language_dictionary, create_new_language_dictionary)
4548 (mdict_add_symbol, mdict_add_pending, mdict_iterator_first)
4549 (mdict_iterator_next, mdict_iter_match_first, mdict_iter_match_next)
4550 (mdict_size, mdict_empty): New functions.
4551 * dictionary.h (mdict_iterator): Define.
4552
4553 2019-01-10 Pedro Alves <palves@redhat.com>
4554
4555 * breakpoint.c (read_uploaded_action)
4556 (create_tracepoint_from_upload): Adjust to use
4557 gdb::unique_xmalloc_ptr.
4558 * ctf.c (ctf_write_uploaded_tp):
4559 (SET_ARRAY_FIELD): Use emplace_back.
4560 (SET_STRING_FIELD): Adjust to use gdb::unique_xmalloc_ptr.
4561 * tracefile-tfile.c (tfile_write_uploaded_tp):
4562 * tracepoint.c (parse_tracepoint_definition): Adjust to use
4563 gdb::unique_xmalloc_ptr.
4564 * tracepoint.h (struct uploaded_tp) <cond, actions, step_actions,
4565 at_string, cond_string, cmd_strings>: Replace char pointers
4566 with gdb::unique_xmalloc_ptr.
4567
4568 2019-01-10 Pedro Alves <palves@redhat.com>
4569
4570 * solib-target.c (library_list_start_library): Don't xstrdup name.
4571
4572 2019-01-10 Pedro Alves <palves@redhat.com>
4573
4574 * mdebugread.c (parse_partial_symbols): Use
4575 gdb::unique_xmalloc_ptr to manage heap-allocated 'stabsstring'.
4576
4577 2019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
4578
4579 * linux-fork.c (scoped_switch_fork_info)
4580 <~scoped_switch_fork_info>: Fix incorrect variable name.
4581
4582 2019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
4583
4584 * linux-fork.c (scoped_switch_fork_info)
4585 <scoped_switch_fork_info>: Make explicit.
4586 <~scoped_switch_fork_info>: Wrap core in TRY/CATCH.
4587
4588 2019-01-10 Tom Tromey <tom@tromey.com>
4589
4590 * objfiles.h (objfile::reset_psymtabs): Update.
4591 * objfiles.c (objfile::objfile): Update.
4592 * psymtab.h (psymtab_storage::obstack): Update.
4593 (psymtab_storage::m_obstack): Use gdb::optional.
4594 (class psymtab_storage): Update comment. Remove objfile
4595 parameter.
4596 * psymtab.c (psymtab_storage::psymtab_storage): Update.
4597
4598 2019-01-10 Tom Tromey <tom@tromey.com>
4599
4600 * psymtab.h (psymtab_storage::allocate_psymtab): New method.
4601 <free_psymtabs>: Now private.
4602 * psymtab.c (psymtab_storage::allocate_psymtab): Implement.
4603 (allocate_psymtab): Use new method.
4604
4605 2019-01-10 Tom Tromey <tom@tromey.com>
4606
4607 * xcoffread.c (xcoff_end_psymtab): Use allocate_dependencies.
4608 * psymtab.h (psymtab_storage::allocate_dependencies): New method.
4609 * mdebugread.c (parse_partial_symbols): Use
4610 allocate_dependencies.
4611 * dwarf2read.c (dwarf2_create_include_psymtab): Use
4612 allocate_dependencies.
4613 (process_psymtab_comp_unit_reader)
4614 (build_type_psymtab_dependencies): Likewise.
4615 * dbxread.c (dbx_end_psymtab): Use allocate_dependencies.
4616
4617 2019-01-10 Tom Tromey <tom@tromey.com>
4618
4619 * psymtab.c (add_psymbol_to_bcache): Pass psymtab obstack to
4620 PSYMBOL_SET_LANGUAGE.
4621 (allocate_psymtab): Allocate psymtab on the psymtab obstack.
4622
4623 2019-01-10 Tom Tromey <tom@tromey.com>
4624
4625 * psymtab.h (psymtab_storage::obstack): New method.
4626 <m_obstack>: Rename from obstack; now private.
4627 * psymtab.c (psymtab_storage): Update.
4628 * dwarf2read.c (create_addrmap_from_index)
4629 (create_addrmap_from_aranges, dwarf2_build_psymtabs_hard):
4630 Update.
4631
4632 2019-01-10 Tom Tromey <tom@tromey.com>
4633
4634 * symfile.c (reread_symbols): Call objfile->reset_psymtabs.
4635 * objfiles.h (objfile::reset_psymtabs): New method.
4636
4637 2019-01-10 Tom Tromey <tom@tromey.com>
4638
4639 * symmisc.c (print_symbol_bcache_statistics): Update.
4640 (print_objfile_statistics): Update.
4641 * symfile.c (reread_symbols): Update.
4642 * psymtab.h (class psymtab_storage): New.
4643 * psymtab.c (psymtab_storage): New constructor.
4644 (~psymtab_storage): New destructor.
4645 (require_partial_symbols): Update.
4646 (ALL_OBJFILE_PSYMTABS_REQUIRED): Rewrite.
4647 (find_pc_sect_psymtab, find_pc_sect_psymbol)
4648 (match_partial_symbol, lookup_partial_symbol, dump_psymtab)
4649 (psym_dump, recursively_search_psymtabs, psym_has_symbols)
4650 (psym_find_compunit_symtab_by_address, sort_pst_symbols)
4651 (start_psymtab_common, end_psymtab_common)
4652 (add_psymbol_to_bcache, add_psymbol_to_list, init_psymbol_list)
4653 (allocate_psymtab): Update.
4654 (psymtab_storage::discard_psymtab): Rename from discard_psymtab.
4655 Update.
4656 (dump_psymtab_addrmap, maintenance_print_psymbols)
4657 (maintenance_check_psymtabs): Update.
4658 (class objfile_psymtabs): Move to objfiles.h.
4659 * psympriv.h (discard_psymtab): Now inline.
4660 (psymtab_discarder::psymtab_discarder): Update.
4661 (psymtab_discarder::~psymtab_discarder): Update.
4662 (ALL_OBJFILE_PSYMTABS): Rewrite.
4663 * objfiles.h (struct objfile) <psymtabs, psymtabs_addrmap,
4664 free_psymtabs, psymbol_cache, global_psymbols, static_psymbols>:
4665 Remove fields.
4666 <partial_symtabs>: New field.
4667 (class objfile_psymtabs): Move from psymtab.h. Update.
4668 * objfiles.c (objfile::objfile): Initialize partial_symtabs, not
4669 psymbol_cache.
4670 (objfile::~objfile): Don't destroy psymbol_cache.
4671 * mdebugread.c (parse_partial_symbols): Update.
4672 * dwarf2read.c (create_addrmap_from_index)
4673 (create_addrmap_from_aranges, dw2_find_pc_sect_compunit_symtab)
4674 (process_psymtab_comp_unit_reader, dwarf2_build_psymtabs_hard)
4675 (add_partial_subprogram, dwarf2_ranges_read): Update.
4676 * dwarf-index-write.c (write_address_map)
4677 (write_one_signatured_type, recursively_write_psymbols)
4678 (class debug_names, class debug_names, write_psymtabs_to_index):
4679 Update.
4680
4681 2019-01-10 Tom Tromey <tom@tromey.com>
4682
4683 * symtab.h (SYMBOL_SET_NAMES): Update.
4684 (symbol_set_names): Update.
4685 (MSYMBOL_SET_NAMES): Update.
4686 * symtab.c (symbol_set_names): Change argument to be an
4687 objfile_per_bfd_storage.
4688 * psymtab.c (add_psymbol_to_bcache): Update.
4689 * psympriv.h (PSYMBOL_SET_NAMES): Take per_bfd argument.
4690
4691 2019-01-10 Tom Tromey <tom@tromey.com>
4692
4693 * symtab.c (create_demangled_names_hash): Change argument to be an
4694 objfile_per_bfd_storage.
4695 (symbol_set_names): Update.
4696
4697 2019-01-10 Tom Tromey <tom@tromey.com>
4698
4699 * xcoffread.c (xcoff_initial_scan): Unconditionally call
4700 init_psymbol_list.
4701 * psymtab.c (init_psymbol_list): Do nothing if already called.
4702 * psympriv.h (init_psymbol_list): Add comment.
4703 * dwarf2read.c (dwarf2_build_psymtabs): Unconditionally call
4704 init_psymbol_list.
4705 * dbxread.c (dbx_symfile_read): Unconditionally call
4706 init_psymbol_list.
4707
4708 2019-01-10 Tom Tromey <tom@tromey.com>
4709
4710 * xcoffread.c (scan_xcoff_symtab): Update.
4711 * psymtab.c (add_psymbol_to_list): Replace "list" parameter with
4712 "where".
4713 * mdebugread.c (parse_partial_symbols)
4714 (handle_psymbol_enumerators): Update.
4715 * dwarf2read.c (add_partial_symbol, load_partial_dies): Update.
4716 * dbxread.c (read_dbx_symtab): Update.
4717 * psympriv.h (psymbol_placement): New enum.
4718 (add_psymbol_to_list): Update.
4719
4720 2019-01-10 Tom Tromey <tom@tromey.com>
4721
4722 * xcoffread.c (xcoff_start_psymtab): Remove global_psymbols and
4723 static_psymbols parameters.
4724 (scan_xcoff_symtab): Update.
4725 * psymtab.c (start_psymtab_common): Remove global_psymbols and
4726 static_psymbols parameters.
4727 * psympriv.h (start_psymtab_common): Update.
4728 * mdebugread.c (parse_partial_symbols): Update.
4729 * dwarf2read.c (create_partial_symtab): Update.
4730 * dbxread.c (read_dbx_symtab): Update.
4731 (start_psymtab): Remove global_psymbols and static_psymbols
4732 parameters.
4733
4734 2019-01-10 Tom Tromey <tom@tromey.com>
4735
4736 * xcoffread.c (xcoff_end_psymtab): Remove some initializations.
4737 * psymtab.c (allocate_psymtab): Add comment.
4738 * psympriv.h (allocate_psymtab): Add comment.
4739 * dwarf2read.c (dwarf2_create_include_psymtab): Remove some
4740 initializations.
4741 * dbxread.c (dbx_end_psymtab): Remove some initializations.
4742
4743 2019-01-10 Tom Tromey <tom@tromey.com>
4744
4745 * symfile.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
4746 Don't declare.
4747 * mipsread.c: Include mdebugread.h.
4748 * mdebugread.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
4749 Declare.
4750 * elfread.c: Include mdebugread.h.
4751
4752 2019-01-09 Tom Tromey <tom@tromey.com>
4753
4754 * dbxread.c (dbx_end_psymtab): Use objfile_psymtabs.
4755 * mdebugread.c (parse_partial_symbols): Use objfile_psymtabs.
4756 * psymtab.c (ALL_OBJFILE_PSYMTABS_REQUIRED): Remove.
4757 (psym_map_symtabs_matching_filename, find_pc_sect_psymtab)
4758 (psym_lookup_symbol, psym_find_last_source_symtab)
4759 (psym_forget_cached_source_info, psym_print_stats)
4760 (psym_expand_symtabs_for_function, psym_expand_all_symtabs)
4761 (psym_expand_symtabs_with_fullname, psym_map_symbol_filenames)
4762 (psym_map_matching_symbols, psym_expand_symtabs_matching)
4763 (psym_find_compunit_symtab_by_address)
4764 (maintenance_print_psymbols, maintenance_info_psymtabs)
4765 (maintenance_check_psymtabs): Use ranged for.
4766 * psymtab.h (class objfile_psymtabs): New.
4767 (require_partial_symbols): Return objfile_psymtabs.
4768 * psympriv.h (ALL_OBJFILE_PSYMTABS): Remove.
4769
4770 2019-01-09 Tom Tromey <tom@tromey.com>
4771
4772 * symfile.c (overlay_invalidate_all, find_pc_overlay)
4773 (find_pc_mapped_section, list_overlays_command)
4774 (map_overlay_command, unmap_overlay_command)
4775 (simple_overlay_update): Use all_objfiles.
4776 * spu-tdep.c (spu_overlay_update): Use all_objfiles.
4777 * printcmd.c (info_symbol_command): Use all_objfiles.
4778 * objfiles.h (ALL_OBJSECTIONS): Remove.
4779 * maint.c (maintenance_translate_address): Use all_objfiles.
4780 * gcore.c (gcore_create_callback): Use all_objfiles.
4781 (objfile_find_memory_regions): Likewise.
4782
4783 2019-01-09 Tom Tromey <tom@tromey.com>
4784
4785 * symtab.c (find_line_symtab, info_sources_command)
4786 (make_source_files_completion_list): Use objfile_compunits.
4787 * source.c (select_source_symtab): Use objfile_compunits.
4788 * objfiles.h (struct objfile): Update comment.
4789 (ALL_OBJFILES): Remove.
4790 (ALL_FILETABS): Remove.
4791 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Use
4792 objfile_compunits.
4793
4794 2019-01-09 Tom Tromey <tom@tromey.com>
4795
4796 * symmisc.c (print_objfile_statistics, dump_objfile)
4797 (maintenance_print_symbols): Use compunit_filetabs.
4798 * source.c (forget_cached_source_info_for_objfile): Use
4799 compunit_filetabs.
4800 * objfiles.h (ALL_OBJFILE_FILETABS): Remove.
4801 (ALL_FILETABS): Use compunit_filetabs.
4802 * objfiles.c (objfile_relocate1): Use compunit_filetabs.
4803 * coffread.c (coff_symtab_read): Use compunit_filetabs.
4804
4805 2019-01-09 Tom Tromey <tom@tromey.com>
4806
4807 * symtab.h (ALL_COMPUNIT_FILETABS): Remove.
4808 (compunit_filetabs): New.
4809 * symtab.c (iterate_over_some_symtabs, find_pc_sect_line): Use
4810 compunit_filetabs.
4811 (info_sources_command, make_source_files_completion_list): Remove
4812 declaration.
4813 * symmisc.c (print_objfile_statistics, dump_objfile)
4814 (maintenance_print_symbols): Remove declaration.
4815 (maintenance_info_symtabs): Use compunit_filetabs.
4816 (maintenance_info_line_tables): Likewise.
4817 * source.c (select_source_symtab): Change local variable name.
4818 (forget_cached_source_info_for_objfile): Remove declaration.
4819 * objfiles.h (ALL_OBJFILE_FILETABS): Use compunit_filetabs.
4820 * objfiles.c (objfile_relocate1): Remove declaration.
4821 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
4822 declaration.
4823 * maint.c (count_symtabs_and_blocks): Use compunit_filetabs.
4824 * coffread.c (coff_symtab_read): Remove declaration.
4825 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
4826 compunit_filetabs.
4827
4828 2019-01-09 Tom Tromey <tom@tromey.com>
4829
4830 * symtab.c (lookup_objfile_from_block)
4831 (find_pc_sect_compunit_symtab, search_symbols)
4832 (default_collect_symbol_completion_matches_break_on): Use
4833 objfile_compunits.
4834 * objfiles.h (ALL_COMPUNITS): Remove.
4835 * maint.c (count_symtabs_and_blocks): Use objfile_compunits.
4836 * cp-support.c (add_symbol_overload_list_qualified): Use
4837 objfile_compunits.
4838 * ada-lang.c (ada_collect_symbol_completion_matches)
4839 (ada_add_global_exceptions): Use objfile_compunits.
4840
4841 2019-01-09 Tom Tromey <tom@tromey.com>
4842
4843 * source.c (select_source_symtab)
4844 (forget_cached_source_info_for_objfile): Remove declaration.
4845 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
4846 declaration.
4847 * maint.c (count_symtabs_and_blocks): Remove declaration.
4848 * cp-support.c (add_symbol_overload_list_qualified): Remove
4849 declaration.
4850 * coffread.c (coff_symtab_read): Remove declaration.
4851 * symtab.c (lookup_symbol_in_objfile_symtabs)
4852 (basic_lookup_transparent_type_1): Use objfile_compunits.
4853 (lookup_objfile_from_block, find_pc_sect_compunit_symtab)
4854 (info_sources_command, search_symbols)
4855 (default_collect_symbol_completion_matches_break_on)
4856 (make_source_files_completion_list): Remove declaration.
4857 * ada-lang.c (add_nonlocal_symbols): Use objfile_compunits.
4858 (ada_collect_symbol_completion_matches)
4859 (ada_add_global_exceptions): Remove declaration.
4860 * linespec.c (iterate_over_all_matching_symtabs): Use
4861 objfile_compunits.
4862 * objfiles.h (ALL_OBJFILE_COMPUNITS): Remove.
4863 (class objfile_compunits): New.
4864 (ALL_COMPUNITS): Use objfile_compunits.
4865 * symmisc.c (print_objfile_statistics, maintenance_info_symtabs)
4866 (maintenance_check_symtabs, maintenance_info_line_tables): Use
4867 objfile_compunits.
4868 * objfiles.c (objfile_relocate1): Use objfile_compunits.
4869
4870 2019-01-09 Tom Tromey <tom@tromey.com>
4871
4872 * symtab.c (search_symbols)
4873 (default_collect_symbol_completion_matches_break_on): Use
4874 objfile_msymbols.
4875 * ada-lang.c (ada_lookup_simple_minsym)
4876 (ada_collect_symbol_completion_matches): Use objfile_msymbols.
4877 * minsyms.c (find_solib_trampoline_target): Use objfile_msymbols.
4878 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Use
4879 objfile_msymbols.
4880 * coffread.c (coff_symfile_read): Use objfile_msymbols.
4881 * symmisc.c (dump_msymbols): Use objfile_msymbols.
4882 * objc-lang.c (find_methods): Use objfile_msymbols.
4883 (info_selectors_command, info_classes_command): Likewise.
4884 * stabsread.c (scan_file_globals): Use objfile_msymbols.
4885 * objfiles.h (class objfile_msymbols): New.
4886 (ALL_OBJFILE_MSYMBOLS): Remove.
4887 (ALL_MSYMBOLS): Remove.
4888
4889 2019-01-09 Tom Tromey <tom@tromey.com>
4890
4891 * common/next-iterator.h (next_adapter): Add Iterator template
4892 parameter.
4893 * objfiles.h (ALL_OBJFILES_SAFE): Remove.
4894 (class all_objfiles_safe): New.
4895 * jit.c (jit_inferior_exit_hook): Use all_objfiles_safe.
4896 * objfiles.c (put_objfile_before): Update comment.
4897 (add_separate_debug_objfile): Likewise.
4898 (free_all_objfiles): Use all_objfiles_safe.
4899 (objfile_purge_solibs): Likewise.
4900
4901 2019-01-09 Tom Tromey <tom@tromey.com>
4902
4903 * symtab.c (iterate_over_symtabs, matching_obj_sections)
4904 (expand_symtab_containing_pc, lookup_static_symbol)
4905 (basic_lookup_transparent_type, find_pc_sect_compunit_symtab)
4906 (find_symbol_at_address, find_line_symtab, find_main_name): Use
4907 all_objfiles.
4908 * probe.c (find_probe_by_pc, collect_probes): Use all_objfiles.
4909 * breakpoint.c (create_overlay_event_breakpoint)
4910 (create_longjmp_master_breakpoint)
4911 (create_std_terminate_master_breakpoint)
4912 (create_exception_master_breakpoint): Use all_objfiles.
4913 * linux-thread-db.c (try_thread_db_load_from_pdir)
4914 (has_libpthread): Use all_objfiles.
4915 * ada-lang.c (add_nonlocal_symbols): Use all_objfiles.
4916 * linespec.c (iterate_over_all_matching_symtabs)
4917 (search_minsyms_for_name): Use all_objfiles.
4918 * maint.c (maintenance_info_sections): Use all_objfiles.
4919 * main.c (captured_main_1): Use all_objfiles.
4920 * spu-tdep.c (spu_objfile_from_frame): Use all_objfiles.
4921 * guile/scm-objfile.c (gdbscm_objfiles): Use all_objfiles.
4922 * guile/scm-pretty-print.c
4923 (ppscm_find_pretty_printer_from_objfiles): Use all_objfiles.
4924 * solib-spu.c (append_ocl_sos): Use all_objfiles.
4925 * symmisc.c (maintenance_print_symbols): Use all_objfiles.
4926 (maintenance_print_msymbols): Use all_objfiles.
4927 * source.c (select_source_symtab): Use all_objfiles.
4928 * jit.c (jit_find_objf_with_entry_addr): Use all_objfiles.
4929 * symfile.c (remove_symbol_file_command)
4930 (expand_symtabs_matching, map_symbol_filenames): Use
4931 all_objfiles.
4932 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created): Use
4933 all_objfiles.
4934 * dwarf2-frame.c (dwarf2_frame_find_fde): Use all_objfiles.
4935 * objc-lang.c (find_methods): Use all_objfiles.
4936 * objfiles.c (have_partial_symbols, have_full_symbols)
4937 (have_minimal_symbols, qsort_cmp)
4938 (default_iterate_over_objfiles_in_search_order): Use
4939 all_objfiles.
4940 * hppa-tdep.c (find_unwind_entry): Use all_objfiles.
4941 * psymtab.c (maintenance_print_psymbols): Use all_objfiles.
4942 (maintenance_check_psymtabs): Use all_objfiles.
4943 (ALL_PSYMTABS): Remove.
4944 * compile/compile-object-run.c (do_module_cleanup): Use
4945 all_objfiles.
4946 * blockframe.c (find_pc_partial_function): Use all_objfiles.
4947 * cp-support.c (add_symbol_overload_list_qualified): Use
4948 all_objfiles.
4949 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
4950 Use all_objfiles.
4951 * dwarf-index-write.c (save_gdb_index_command): Use all_objfiles.
4952 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): Use
4953 all_objfiles.
4954 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
4955 (objfpy_lookup_objfile_by_build_id): Use all_objfiles.
4956 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
4957 Uses all_objfiles.
4958 * solib.c (solib_read_symbols): Use all_objfiles
4959
4960 2019-01-09 Tom Tromey <tom@tromey.com>
4961
4962 * probe.c (parse_probes_in_pspace): Use all_objfiles.
4963 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Use
4964 all_objfiles.
4965 * objfiles.h (ALL_PSPACE_OBJFILES): Remove.
4966 * symmisc.c (print_symbol_bcache_statistics)
4967 (print_objfile_statistics, maintenance_print_objfiles)
4968 (maintenance_info_symtabs, maintenance_check_symtabs)
4969 (maintenance_expand_symtabs, maintenance_info_line_tables): Use
4970 all_objfiles.
4971 * source.c (forget_cached_source_info): Use all_objfiles.
4972 * symfile-debug.c (set_debug_symfile): Use all_objfiles.
4973 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
4974 (elf_gnu_ifunc_resolve_by_got): Use all_objfiles.
4975 * objfiles.c (update_section_map): Use all_objfiles.
4976 (shared_objfile_contains_address_p): Likewise.
4977 * psymtab.c (maintenance_info_psymtabs): Use all_objfiles.
4978 * python/py-progspace.c (pspy_get_objfiles): Use all_objfiles.
4979
4980 2019-01-09 Tom Tromey <tom@tromey.com>
4981
4982 * common/next-iterator.h: New file.
4983 * objfiles.h (class all_objfiles): New.
4984 (struct objfile_iterator): New.
4985
4986 2019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4987
4988 * NEWS: Move the description of the changed "frame", "select-frame",
4989 and "info frame" commands to the Changed commands section.
4990
4991 2019-01-09 Simon Marchi <simon.marchi@ericsson.com>
4992
4993 * gdbtypes.c (check_stub_method_group): Remove handling of old
4994 mangling schemes.
4995 * linespec.c (find_methods): Likewise.
4996 * stabsread.c (read_member_functions): Likewise.
4997 * valops.c (search_struct_method): Likewise.
4998 (value_struct_elt_for_reference): Likewise.
4999 * NEWS: Mention this change.
5000
5001 2019-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
5002
5003 * cli/cli-cmds.c (list_command): Pass a source_lines_range to
5004 print_source_lines.
5005 * source.c (print_source_lines_base): Update line number check.
5006 (print_source_lines): New function.
5007 (source_lines_range::source_lines_range): New function.
5008 * source.h (class source_lines_range): New class.
5009 (print_source_lines): New declaration.
5010
5011 2019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5012
5013 * linespec.c (linespec_state_destructor): Free self->canonical_names.
5014
5015 2019-01-08 Tom Tromey <tom@tromey.com>
5016 Simon Marchi <simon.marchi@ericsson.com>
5017
5018 PR gdb/24060
5019 * ada-exp.y (DOLLAR_VARIABLE): Rename from SPECIAL_VARIABLE.
5020 * ada-lex.l (DOLLAR_VARIABLE): Likewise.
5021 * c-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
5022 * f-exp.y (DOLLAR_VARIABLE): Likewise.
5023 * m2-exp.y (DOLLAR_VARIABLE): Rename from INTERNAL_VAR.
5024 * p-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
5025
5026 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
5027
5028 * source.c (select_source_symtab): Move header comment to
5029 declaration in source.h.
5030 (forget_cached_source_info_for_objfile): Likewise.
5031 (forget_cached_source_info): Likewise.
5032 (identify_source_line): Likewise.
5033 * source.h (identify_source_line): Move declaration from symtab.h
5034 and add comment from source.c
5035 (print_source_lines): Likewise.
5036 (forget_cached_source_info_for_objfile): Likewise.
5037 (forget_cached_source_info): Likewise.
5038 (select_source_symtab): Likewise.
5039 (enum print_source_lines_flag): Move definition from symtab.h.
5040 * symtab.h (identify_source_line): Move declaration to source.h.
5041 (print_source_lines): Likewise.
5042 (forget_cached_source_info_for_objfile): Likewise.
5043 (forget_cached_source_info): Likewise.
5044 (select_source_symtab): Likewise.
5045 (enum print_source_lines_flag): Move definition to source.h.
5046 * tui/tui-hooks.c: Add 'source.h' include.
5047
5048 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
5049
5050 * source.c (print_source_lines_base): Handle requests to print
5051 reverse line number sequences, and guard against empty lines
5052 string.
5053
5054 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
5055
5056 * source.c (print_source_lines_base): Fix skip of '\r' if next
5057 character is '\n'.
5058
5059 2019-01-06 Tom Tromey <tom@tromey.com>
5060
5061 * c-exp.y (struct c_parse_state) <macro_original_text,
5062 expansion_obstack>: New member.
5063 (macro_original_text, expansion_obstack): Remove globals.
5064 (scan_macro_expansion, scanning_macro_expansion)
5065 (finished_macro_expansion): Update.
5066 (scan_macro_cleanup): Remove.
5067 (yylex, c_parse): Update.
5068
5069 2019-01-06 Tom Tromey <tom@tromey.com>
5070
5071 * c-exp.y (struct c_parse_state) <strings>: New member.
5072 (operator_stoken): Update.
5073
5074 2019-01-06 Tom Tromey <tom@tromey.com>
5075
5076 * parser-defs.h (type_ptr): Remove typedef. Don't declare VEC.
5077 (union type_stack_elt) <typelist_val>: Now a pointer to
5078 std::vector.
5079 (type_stack_cleanup): Don't declare.
5080 (push_typelist): Update.
5081 * parse.c (pop_typelist): Return a std::vector.
5082 (push_typelist): Take a std::vector.
5083 (follow_types): Update. Do not free args.
5084 (type_stack_cleanup): Remove.
5085 * c-exp.y (struct c_parse_state): New.
5086 (cpstate): New global.
5087 (type_aggregate_p, exp, ptr_operator, parameter_typelist)
5088 (nonempty_typelist): Update.
5089 (func_mod): Create a new vector.
5090 (c_parse): Create a c_parse_state.
5091 (check_parameter_typelist): Do not delete params.
5092 (function_method): Update. Do not delete type_list.
5093
5094 2019-01-06 Tom Tromey <tom@tromey.com>
5095
5096 PR gdb/28155:
5097 * python/py-finishbreakpoint.c (bpfinishpy_init): Use
5098 check_typedef.
5099 * infcmd.c (finish_command_fsm_should_stop): Use check_typedef.
5100 (print_return_value): Likewise.
5101
5102 2019-01-05 Tom Tromey <tom@tromey.com>
5103
5104 * contrib/cleanup_check.py: Remove.
5105 * contrib/gcc-with-excheck: Remove.
5106 * contrib/exsummary.py: Remove.
5107 * contrib/excheck.py: Remove.
5108
5109 2019-01-05 Joel Brobecker <brobecker@adacore.com>
5110
5111 * thread.c (delete_thread_1): Add gdb_assert that THR is not
5112 NULL. Initialize tpprev to NULL instead of assigning it
5113 to NULL on the next statement.
5114 * windows-nat.c (windows_delete_thread): Remove check for
5115 main_thread_id before printing thread exit notifications.
5116 (get_windows_debug_event) <EXIT_THREAD_DEBUG_EVENT>:
5117 Remove thread ID check against main_thread_id.
5118 <CREATE_PROCESS_DEBUG_EVENT>: Remove call to
5119 windows_delete_thread.
5120 <EXIT_PROCESS_DEBUG_EVENT>: Add call to windows_delete_thread.
5121
5122 2019-01-04 Tom Tromey <tom@tromey.com>
5123
5124 * compile/compile.c (_initialize_compile): Use upper case for
5125 metasyntactic variables.
5126 * symmisc.c (_initialize_symmisc): Use upper case for
5127 metasyntactic variables.
5128 * psymtab.c (_initialize_psymtab): Use upper case for
5129 metasyntactic variables.
5130 * demangle.c (demangle_command): Use upper case for metasyntactic
5131 variables.
5132 (_initialize_demangler): Likewise.
5133 * ax-gdb.c (_initialize_ax_gdb): Use upper case for metasyntactic
5134 variables.
5135
5136 2019-01-03 Tom Tromey <tom@tromey.com>
5137
5138 * tui/tui-source.c (tui_set_source_content): Use xstrdup.
5139
5140 2019-01-03 Tom Tromey <tom@tromey.com>
5141
5142 * python/py-symtab.c (salpy_str): Update.
5143 (struct salpy_sal_object) <symtab>: Now a PyObject.
5144 (salpy_dealloc): Update.
5145 (del_objfile_sal): Use gdbpy_ref.
5146
5147 2019-01-03 Tom Tromey <tom@tromey.com>
5148
5149 * python/py-type.c (convert_field): Use new_reference. Return
5150 gdbpy_ref.
5151 (make_fielditem): Return gdbpy_ref.
5152 (typy_fields): Update.
5153 (typy_getitem): Update.
5154 (field_name): Return gdbpy_ref. Use new_reference.
5155 (typy_iterator_iternext): Update.
5156
5157 2019-01-03 Tom Tromey <tom@tromey.com>
5158
5159 * python/py-record.c (gdbpy_stop_recording): Use Py_RETURN_NONE.
5160
5161 2019-01-03 Tom Tromey <tom@tromey.com>
5162
5163 * python/py-value.c (valpy_dealloc): Use Py_XDECREF.
5164 * python/py-type.c (typy_fields_items): Use gdbpy_ref.
5165 * python/py-progspace.c (pspy_set_printers): Use gdbpy_ref.
5166 (pspy_set_frame_filters, pspy_set_frame_unwinders)
5167 (pspy_set_type_printers): Likewise.
5168 * python/py-function.c (fnpy_init): Use gdbpy_ref.
5169 * python/py-cmd.c (cmdpy_init): Use gdbpy_ref.
5170 * python/py-objfile.c (objfpy_set_printers): Use gdbpy_ref.
5171 (objfpy_set_frame_filters, objfpy_set_frame_unwinders)
5172 (objfpy_set_type_printers): Likewise.
5173
5174 2019-01-03 Tom Tromey <tom@tromey.com>
5175
5176 * python/python.c (gdbpy_enter, ~gdbpy_enter): Update.
5177 (gdbpy_print_stack): Use gdbpy_err_fetch.
5178 * python/python-internal.h (class gdbpy_err_fetch): New class.
5179 (class gdbpy_enter) <m_error_type, m_error_value,
5180 m_error_traceback>: Remove.
5181 <m_error>: New member.
5182 (gdbpy_exception_to_string): Don't declare.
5183 * python/py-varobj.c (py_varobj_iter_next): Use gdbpy_err_fetch.
5184 * python/py-value.c (convert_value_from_python): Use
5185 gdbpy_err_fetch.
5186 * python/py-utils.c (gdbpy_err_fetch::to_string): Rename from
5187 gdbpy_exception_to_string.
5188 (gdbpy_handle_exception): Use gdbpy_err_fetch.
5189 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
5190 gdbpy_err_fetch.
5191
5192 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
5193
5194 * linux-nat.c (delete_lwp_cleanup): Delete.
5195 (struct lwp_deleter): New struct.
5196 (lwp_info_up): New typedef.
5197 (linux_nat_target::follow_fork): Delete cleanup, and make use of
5198 lwp_info_up.
5199
5200 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
5201
5202 * linux-fork.c (class scoped_switch_fork_info): New class.
5203 (inferior_call_waitpid): Update to use scoped_switch_fork_info.
5204
5205 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
5206
5207 * valops.c (find_overload_match): Remove use of null_cleanup, and
5208 calls to do_cleanups.
5209
5210 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
5211
5212 * compile/compile-cplus-types.c
5213 (compile_cplus_instance::decl_name): Handle changes to
5214 cp_func_name.
5215 * cp-support.c (cp_func_name): Update header comment, update
5216 return type.
5217 * cp-support.h (cp_func_name): Update return type in declaration.
5218 * valops.c (find_overload_match): Move temp_func local to top
5219 level of function and change its type. Use temp_func to hold and
5220 delete temporary string obtained from cp_func_name.
5221
5222 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
5223
5224 * remote.c (remote_target::remote_check_symbols): Convert `msg` to
5225 gdb::char_vector, remove cleanup, and update uses of `msg`.
5226
5227 2019-01-03 Jim Wilson <jimw@sifive.com>
5228
5229 * riscv-tdep.c (riscv_freg_feature): Drop s0 name from f8.
5230
5231 2019-01-02 Tom Tromey <tom@tromey.com>
5232
5233 * xml-tdesc.c (xml_cache): Hold a target_desc_up.
5234 (tdesc_parse_xml): Remove cleanups.
5235 * target-descriptions.h (make_cleanup_free_target_description):
5236 Don't declare.
5237 (target_desc_deleter): New struct.
5238 (target_desc_up): New typedef.
5239 * target-descriptions.c (target_desc_deleter::operator()): Rename
5240 from free_target_description.
5241 (make_cleanup_free_target_description): Remove.
5242
5243 2019-01-02 Tom Tromey <tom@tromey.com>
5244
5245 * linespec.c (struct linespec_parser): Rename from ls_parser. Add
5246 constructor, destructor.
5247 (linespec_parser): Remove typedef.
5248 (~linespec_parser): Rename from linespec_parser_delete.
5249 (linespec_lex_to_end, linespec_complete_label)
5250 (linespec_complete): Update.
5251 (decode_line_full): Remove cleanups.
5252 (decode_line_1): Update.
5253
5254 2019-01-02 Tom Tromey <tom@tromey.com>
5255
5256 * python/python-internal.h (inferior_to_inferior_object): Change
5257 return type.
5258 * python/py-exitedevent.c (create_exited_event_object): Update.
5259 * python/py-inferior.c (inferior_to_inferior_object): Return
5260 gdbpy_ref.
5261 (python_new_inferior, python_inferior_deleted)
5262 (thread_to_thread_object, delete_thread_object)
5263 (build_inferior_list, gdbpy_selected_inferior): Update.
5264 * python/py-infthread.c (create_thread_object): Update. Also fail
5265 if inferior_to_inferior_object fails.
5266
5267 2019-01-02 Simon Marchi <simon.marchi@ericsson.com>
5268
5269 * inferior.h (class inferior) <displaced_step_state>: New field.
5270 * infrun.h (struct displaced_step_state): Move here from
5271 infrun.c. Initialize fields, add constructor.
5272 <inf>: Remove field.
5273 <reset>: New method.
5274 * infrun.c (struct displaced_step_inferior_state): Move to
5275 infrun.h.
5276 (displaced_step_inferior_states): Remove.
5277 (get_displaced_stepping_state): Adust.
5278 (displaced_step_in_progress_any_inferior): Adjust.
5279 (displaced_step_in_progress_thread): Adjust.
5280 (displaced_step_in_progress): Adjust.
5281 (add_displaced_stepping_state): Remove.
5282 (get_displaced_step_closure_by_addr): Adjust.
5283 (remove_displaced_stepping_state): Remove.
5284 (infrun_inferior_exit): Call displaced_step_state.reset.
5285 (use_displaced_stepping): Don't check for NULL.
5286 (displaced_step_prepare_throw): Call
5287 get_displaced_stepping_state.
5288 (displaced_step_fixup): Don't check for NULL.
5289 (prepare_for_detach): Don't check for NULL.
5290
5291 2019-01-02 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5292
5293 * infcall.c (call_function_by_hand_dummy): cleanup/destroy sm
5294 in case of call that did not complete.
5295
5296 2019-01-02 Andrey Utkin <autkin@undo.io>
5297
5298 * symfile.c (find_separate_debug_file): Fix search of debug files for
5299 remote debuggee.
5300
5301 2019-01-02 Tom Tromey <tom@tromey.com>
5302
5303 * python/py-inferior.c (gdbpy_initialize_inferior): Fix
5304 indentation.
5305 * python/py-frame.c (frapy_older): Remove cast.
5306 (frapy_newer): Likewise.
5307 * python/py-breakpoint.c (local_setattro): Remove cast.
5308 * python/py-arch.c (archpy_name): Remove local variable.
5309 * python/py-type.c (gdbpy_lookup_type): Remove cast.
5310
5311 2019-01-02 Joel Brobecker <brobecker@adacore.com>
5312
5313 * unittests/basic_string_view/element_access/char/empty.cc:
5314 Fix year range in copyright header.
5315
5316 2019-01-01 Andrew Burgess <andrew.burgess@embecosm.com>
5317
5318 * arch/riscv.h (struct riscv_gdbarch_features) <hw_float_abi>:
5319 Delete.
5320 <operator==>: Update with for removed field.
5321 <hash>: Likewise.
5322 * riscv-tdep.h (struct gdbarch_tdep) <features>: Renamed to...
5323 <isa_features>: ...this.
5324 <abi_features>: New field.
5325 (riscv_isa_flen): Update comment.
5326 (riscv_abi_xlen): New declaration.
5327 (riscv_abi_flen): New declaration.
5328 * riscv-tdep.c (riscv_isa_xlen): Update to get answer from
5329 isa_features.
5330 (riscv_abi_xlen): New function.
5331 (riscv_isa_flen): Update to get answer from isa_features.
5332 (riscv_abi_flen): New function.
5333 (riscv_has_fp_abi): Update to get answer from abi_features.
5334 (riscv_call_info::riscv_call_info): Use abi xlen and flen, not isa
5335 xlen and flen.
5336 (riscv_call_info) <xlen, flen>: Update comment.
5337 (riscv_call_arg_struct): Remove invalid assertions
5338 (riscv_features_from_gdbarch_info): Update now hw_float_abi field
5339 is removed.
5340 (riscv_gdbarch_init): Gather isa features and abi features
5341 separately, ensure both match on the gdbarch when reusing an old
5342 gdbarch. Relax an error check to allow 32-bit abi float to run on
5343 a target with 64-bit float hardware.
5344
5345 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5346
5347 * source.c (search_command_helper): Stop reverse search
5348 when line 1 has been searched.
5349
5350 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5351
5352 * record-full.c (record_full_base_target::close): Rewrite
5353 record_full_core_buf_list free logic.
5354
5355 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5356
5357 * break-catch-syscall.c (print_one_catch_syscall): xfree
5358 the last text.
5359
5360 2019-01-01 Joel Brobecker <brobecker@adacore.com>
5361
5362 * top.c (print_gdb_version): Update Copyright year in version
5363 message.
5364
5365 2019-01-01 Joel Brobecker <brobecker@adacore.com>
5366
5367 Update copyright year range in all GDB files.
5368
5369 2019-01-01, 19 Joel Brobecker <brobecker@adacore.com>
5370
5371 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2018.
5372
5373 For older changes see ChangeLog-2018.
5374 \f
5375 Local Variables:
5376 mode: change-log
5377 left-margin: 8
5378 fill-column: 74
5379 version-control: never
5380 coding: utf-8
5381 End:
5382
This page took 0.149929 seconds and 4 git commands to generate.