gdb/18947: [aarch64]Step into shared library is very slow.
[external/binutils.git] / gdb / ChangeLog
1 2015-09-11  Mihail-Marian Nistor  <mihail.nistor@freescale.com>
2
3         PR gdb/18947
4         * aarch64-linux-tdep.c: (aarch64_linux_init_abi): Install
5         glibc_skip_solib_resolver as gdbarch_skip_solib_resolver callback.
6
7 2015-09-10  Simon Marchi  <simon.marchi@ericsson.com>
8
9         * ada-lang.c (scan_discrim_bound): Factor out arithmetic
10         operations.
11
12 2015-09-10  Simon Marchi  <simon.marchi@ericsson.com>
13
14         * ada-lang.c (ada_search_struct_field): Constify parameters
15         and/or variables..
16         (xget_renaming_scope): Likewise.
17         (ada_is_redundant_range_encoding): Likewise.
18         (scan_discrim_bound): Likewise.
19         (to_fixed_range_type): Likewise.
20
21 2015-09-10  Yao Qi  <yao.qi@linaro.org>
22
23         * breakpoint.c (download_tracepoint_locations): New local
24         can_download_tracepoint.  Check the result of
25         target_can_download_tracepoint and save it in
26         can_download_tracepoint if there are tracepoints to download.
27         * linux-nat.h (enum tribool): Move it to ...
28         * common/common-types.h: ... here.
29
30 2015-09-09  Pedro Alves  <palves@redhat.com>
31
32         * inf-loop.c (inferior_event_handler): Delete INF_TIMER case.
33         * target.h (enum inferior_event_type) <INF_TIMER>: Delete.
34
35 2015-09-09  Pedro Alves  <palves@redhat.com>
36
37         * continuations.c (add_continuation, restore_thread_cleanup)
38         (do_all_continuations_ptid, do_all_continuations_thread_callback)
39         (do_all_continuations_thread, do_all_continuations)
40         (discard_all_continuations_thread_callback)
41         (discard_all_continuations_thread, discard_all_continuations)
42         (add_intermediate_continuation)
43         (do_all_intermediate_continuations_thread_callback)
44         (do_all_intermediate_continuations_thread)
45         (do_all_intermediate_continuations)
46         (discard_all_intermediate_continuations_thread_callback)
47         (discard_all_intermediate_continuations_thread)
48         (discard_all_intermediate_continuations): Delete.
49         * continuations.h (add_continuation, do_all_continuations)
50         (do_all_continuations_thread, discard_all_continuations)
51         (discard_all_continuations_thread, add_intermediate_continuation)
52         (do_all_intermediate_continuations)
53         (do_all_intermediate_continuations_thread)
54         (discard_all_intermediate_continuations)
55         (discard_all_intermediate_continuations_thread): Delete
56         declarations.
57         * event-top.c (stdin_event_handler): Delete references to
58         continuations.
59         * gdbthread.h (struct thread_info): Delete continuations and
60         intermediate_continuations fields.
61         * inf-loop.c (inferior_event_handler): Remove references to
62         continuations.
63         * infrun.c (infrun_thread_stop_requested_callback): Remove
64         references to continuations.
65         * target.h (enum inferior_event_type) <INF_EXEC_CONTINUE>: Delete.
66         * thread.c: Don't include "continuations.h".
67         (clear_thread_inferior_resources): Remove references to
68         continuations.
69
70 2015-09-09  Pedro Alves  <palves@redhat.com>
71
72         * infcall.c (struct dummy_frame_context_saver): Delete.
73         (dummy_frame_context_saver_free, dummy_frame_context_saver_dtor)
74         (dummy_frame_context_saver_drop)
75         (dummy_frame_context_saver_cleanup)
76         (dummy_frame_context_saver_get_regs)
77         (dummy_frame_context_saver_setup): Delete.
78         * infcall.h (dummy_frame_context_saver_drop)
79         (dummy_frame_context_saver_cleanup)
80         (dummy_frame_context_saver_get_regs, dummy_frame_context_saver):
81         Delete.
82         (get_return_value): Remove 'ctx_saver' paremeter.  Adjust.
83         * inferior.h (get_return_value): Remove 'ctx_saver' paremeter.
84         * python/py-finishbreakpoint.c (bpfinishpy_pre_stop_hook): Adjust.
85
86 2015-09-09  Pedro Alves  <palves@redhat.com>
87
88         * breakpoint.c: Include "thread-fsm.h".
89         (struct until_break_command_continuation_args): Delete.
90         (struct until_break_fsm): New.
91         (until_break_fsm_ops): New global.
92         (new_until_break_fsm, until_break_fsm_should_stop): New functions.
93         (until_break_command_continuation): Delete.
94         (until_break_fsm_clean_up): New function.
95         (until_break_fsm_async_reply_reason): New function.
96         (until_break_command): Adjust to create an until_break_fsm instead
97         of a continuation.
98         (momentary_bkpt_print_it): No longer print MI's async-stop-reason
99         here.
100         * infcmd.c (struct until_next_fsm): New.
101         (until_next_fsm_ops): New global.
102         (new_until_next_fsm, until_next_fsm_should_stop): New function.
103         (until_next_continuation): Delete.
104         (until_next_fsm_clean_up, until_next_fsm_async_reply_reason): New
105         functions.
106         (until_next_command): Adjust to create a new until_next_fsm
107         instead of a continuation.
108
109 2015-09-09  Pedro Alves  <palves@redhat.com>
110
111         * infcall.c: Include thread_fsm.h.
112         (struct call_return_meta_info): New.
113         (get_call_return_value): New function, factored out from
114         call_function_by_hand_dummy.
115         (struct call_thread_fsm): New.
116         (call_thread_fsm_ops): New global.
117         (new_call_thread_fsm, call_thread_fsm_should_stop)
118         (call_thread_fsm_should_notify_stop): New functions.
119         (run_inferior_call): Add 'sm' parameter.  Associate the FSM with
120         the thread.
121         (call_function_by_hand_dummy): Create a new call_thread_fsm
122         instance, associate it with the thread, and wait for the FSM to
123         finish.  If finished successfully, fetch the function's result
124         value out of the FSM.
125         * infrun.c (fetch_inferior_event): If the FSM says the stop
126         shouldn't be notified, don't call normal_stop.
127         (maybe_remove_breakpoints): New function, factored out from ...
128         (normal_stop): ... here.  Simplify.
129         * infrun.h (maybe_remove_breakpoints): Declare.
130         * thread-fsm.c (thread_fsm_should_notify_stop): New function.
131         (thread-fsm.h) <struct thread_fsm_ops>: New field.
132         (thread_fsm_should_notify_stop): Declare.
133
134 2015-09-09  Pedro Alves  <palves@redhat.com>
135
136         * Makefile.in (COMMON_OBS): Add thread-fsm.o.
137         * breakpoint.c (handle_jit_event): Print debug output.
138         (bpstat_what): Split event callback handling to ...
139         (bpstat_run_callbacks): ... this new function.
140         (momentary_bkpt_print_it): No longer handle bp_finish here.
141         * breakpoint.h (bpstat_run_callbacks): Declare.
142         * gdbthread.h (struct thread_info) <step_multi>: Delete field.
143         <thread_fsm>: New field.
144         (thread_cancel_execution_command): Declare.
145         * infcmd.c: Include thread-fsm.h.
146         (struct step_command_fsm): New.
147         (step_command_fsm_ops): New global.
148         (new_step_command_fsm, step_command_fsm_prepare): New functions.
149         (step_1): Adjust to use step_command_fsm_prepare and
150         prepare_one_step.
151         (struct step_1_continuation_args): Delete.
152         (step_1_continuation): Delete.
153         (step_command_fsm_should_stop): New function.
154         (step_once): Delete.
155         (step_command_fsm_clean_up, step_command_fsm_async_reply_reason)
156         (prepare_one_step): New function, based on step_once.
157         (until_next_command): Remove step_multi reference.
158         (struct return_value_info): New.
159         (print_return_value): Rename to ...
160         (print_return_value_1): ... this.  New struct return_value_info
161         parameter.  Adjust.
162         (print_return_value): Reimplement as wrapper around
163         print_return_value_1.
164         (struct finish_command_fsm): New.
165         (finish_command_continuation): Delete.
166         (finish_command_fsm_ops): New global.
167         (new_finish_command_fsm, finish_command_fsm_should_stop): New
168         functions.
169         (finish_command_fsm_clean_up, finish_command_fsm_return_value):
170         New.
171         (finish_command_continuation_free_arg): Delete.
172         (finish_command_fsm_async_reply_reason): New.
173         (finish_backward, finish_forward): Change symbol parameter to a
174         finish_command_fsm.  Adjust.
175         (finish_command): Create a finish_command_fsm.  Adjust.
176         * infrun.c: Include "thread-fsm.h".
177         (clear_proceed_status_thread): Delete the thread's FSM.
178         (infrun_thread_stop_requested_callback): Cancel the thread's
179         execution command.
180         (clean_up_just_stopped_threads_fsms): New function.
181         (fetch_inferior_event): Handle the event_thread's should_stop
182         method saying the command isn't done yet.
183         (process_event_stop_test): Run breakpoint callbacks here.
184         (print_stop_event): Rename to ...
185         (print_stop_location): ... this.
186         (restore_current_uiout_cleanup): New function.
187         (print_stop_event): Reimplement.
188         (normal_stop): No longer notify the end_stepping_range observers
189         here handle "step N" nor "finish" here.  No longer call
190         print_stop_event here.
191         * infrun.h (struct return_value_info): Forward declare.
192         (print_return_value): Declare.
193         (print_stop_event): Change prototype.
194         * thread-fsm.c: New file.
195         * thread-fsm.h: New file.
196         * thread.c: Include "thread-fsm.h".
197         (thread_cancel_execution_command): New function.
198         (clear_thread_inferior_resources): Call it.
199         * cli/cli-interp.c (cli_on_normal_stop): New function.
200         (cli_interpreter_init): Install cli_on_normal_stop as normal_stop
201         observer.
202         * mi/mi-interp.c: Include "thread-fsm.h".
203         (restore_current_uiout_cleanup): Delete.
204         (mi_on_normal_stop): If the thread has an FSM associated, and it
205         finished, ask it for the async-reply-reason to print.  Always call
206         print_stop_event here, regardless of the top-level interpreter.
207         Check bpstat_what to tell whether an asynchronous breakpoint hit
208         triggered.
209         * tui/tui-interp.c (tui_on_normal_stop): New function.
210         (tui_init): Install tui_on_normal_stop as normal_stop observer.
211
212 2015-09-09  Pedro Alves  <palves@redhat.com>
213
214         * breakpoint.c (bpstat_do_actions_1, until_break_command): Don't
215         check whether the target can async.
216         * inf-loop.c (inferior_event_handler): Only call target_async if
217         the target can async.
218         * infcall.c: Include top.h and interps.h.
219         (run_inferior_call): For the interpreter to sync mode while
220         running the infcall.  Call wait_sync_command_done instead of
221         wait_for_inferior plus normal_stop.
222         * infcmd.c (prepare_execution_command): Don't check whether the
223         target can async when running in the foreground.
224         (step_1): Delete synchronous case handling.
225         (step_once): Always install a continuation, even in sync mode.
226         (until_next_command, finish_forward): Don't check whether the
227         target can async.
228         (attach_command_post_wait, notice_new_inferior): Always install a
229         continuation, even in sync mode.
230         * infrun.c (mark_infrun_async_event_handler): New function.
231         (proceed): In sync mode, mark infrun's event source instead of
232         waiting for events here.
233         (fetch_inferior_event): If the target can't async, do a blocking
234         wait.
235         (prepare_to_wait): In sync mode, mark infrun's event source.
236         (infrun_async_inferior_event_handler): No longer bail out if the
237         target can't async.
238         * infrun.h (mark_infrun_async_event_handler): New declaration.
239         * linux-nat.c (linux_nat_wait_1): Remove calls to
240         set_sigint_trap/clear_sigint_trap.
241         (linux_nat_terminal_inferior): No longer check whether the target
242         can async.
243         * mi/mi-interp.c (mi_on_sync_execution_done): Update and simplify
244         comment.
245         (mi_execute_command_input_handler): No longer check whether the
246         target is async.  Update and simplify comment.
247         * target.c (default_target_wait): New function.
248         * target.h (struct target_ops) <to_wait>: Now defaults to
249         default_target_wait.
250         (default_target_wait): Declare.
251         * top.c (wait_sync_command_done): New function, factored out from
252         ...
253         (maybe_wait_sync_command_done): ... this.
254         * top.h (wait_sync_command_done): Declare.
255         * target-delegates.c: Regenerate.
256
257 2015-09-09  Markus Metzger  <markus.t.metzger@intel.com>
258
259         * nat/linux-btrace.h (struct btrace_target_info) <ptr_bits>: Remove.
260         * nat/linux-btrace.c: Include filestuff.h and inttypes.h.
261         Remove include of sys/utsname.h.
262         (linux_determine_kernel_ptr_bits): Remove.
263         (linux_determine_kernel_start): New.
264         (perf_event_is_kernel_addr): Remove tinfo argument.  Update users.
265         Update check.
266         (perf_event_skip_bts_record): Remove tinfo argument.  Update users.
267         (linux_enable_bts, linux_enable_pt): Remove tinfo->ptr_bits
268         initialization.
269         * x86-linux-nat.c (x86_linux_enable_btrace): Remove ptr_bits
270         assignment.
271
272 2015-09-07  Pedro Alves  <palves@redhat.com>
273
274         * guile/guile-internal.h (as_a_scm_t_subr): New.
275         * guile/guile.c (misc_guile_functions): Use it.
276         * guile/scm-arch.c (arch_functions): Use it.
277         * guile/scm-block.c (block_functions, gdbscm_initialize_blocks):
278         Use it.
279         * guile/scm-breakpoint.c (breakpoint_functions): Use it.
280         * guile/scm-cmd.c (command_functions): Use it.
281         * guile/scm-disasm.c (disasm_functions): Use it.
282         * guile/scm-exception.c (exception_functions)
283         (private_exception_functions): Use it.
284         * guile/scm-frame.c (frame_functions)
285         * guile/scm-gsmob.c (gsmob_functions): Use it.
286         * guile/scm-iterator.c (iterator_functions): Use it.
287         * guile/scm-lazy-string.c (lazy_string_functions): Use it.
288         * guile/scm-math.c (math_functions): Use it.
289         * guile/scm-objfile.c (objfile_functions): Use it.
290         * guile/scm-param.c (parameter_functions): Use it.
291         * guile/scm-ports.c (port_functions, private_port_functions): Use
292         it.
293         * guile/scm-pretty-print.c (pretty_printer_functions): Use it.
294         * guile/scm-progspace.c (pspace_functions): Use it.
295         * guile/scm-string.c (string_functions): Use it.
296         * guile/scm-symbol.c (symbol_functions): Use it.
297         * guile/scm-symtab.c (symtab_functions): Use it.
298         * guile/scm-type.c (type_functions, gdbscm_initialize_types): Use
299         it.
300         * guile/scm-value.c (value_functions): Use it.
301
302 2015-09-04  Andrew Burgess  <andrew.burgess@embecosm.com>
303
304         * tui/tui-data.c (win_with_focus): Remove cast of NULL pointer.
305         (tui_next_win): Likewise.
306         (tui_prev_win): Likewise.
307         (tui_partial_win_by_name): Likewise.
308         (tui_init_generic_part): Likewise.
309         (init_content_element): Likewise.
310         (tui_del_window): Likewise.
311         (tui_free_window): Likewise.
312         (tui_del_data_windows): Likewise.
313         (tui_free_data_content): Likewise.
314         * tui/tui-layout.c (make_source_or_disasm_window): Likewise.
315         * tui/tui-regs.c (tui_show_register_group): Likewise.
316         * tui/tui-win.c (tui_resize_all): Likewise.
317         (tui_set_focus): Likewise.
318         (tui_set_win_height): Likewise.
319         (make_invisible_and_set_new_height): Likewise.
320         * tui/tui-windata.c (tui_delete_data_content_windows): Likewise.
321         * tui/tui-wingeneral.c (make_visible): Likewise.
322
323 2015-09-04  Andrew Burgess  <andrew.burgess@embecosm.com>
324
325         * cli/cli-decode.c (find_cmd): Remove cast of NULL pointer.
326
327 2015-09-04  Andrew Burgess  <andrew.burgess@embecosm.com>
328
329         * c-valprint.c (print_unpacked_pointer): Remove cast of NULL
330         pointer.
331         * dbxread.c (dbx_end_psymtab): Likewise.
332         * gnu-nat.c (gnu_write_inferior): Likewise.
333         * mdebugread.c (cross_ref): Likewise.
334         * p-valprint.c (pascal_val_print): Likewise.
335         * xcoffread.c (xcoff_end_psymtab): Likewise.
336
337 2015-09-04  Yao Qi  <yao.qi@linaro.org>
338
339         * NEWS: Mention the aarch64 multi-arch debugging support.
340
341 2015-09-03  Pierre-Marie de Rodat  <derodat@adacore.com>
342
343         * ada-lang.c (ada_language_arch_info): Create a TYPE_CODE_CHAR
344         type instead of a TYPE_CODE_INT one for the string_char_type
345         and the ada_primitive_type_char types.
346
347 2015-09-03  Yao Qi  <yao.qi@linaro.org>
348
349         * aarch64-linux-nat.c (aarch64_linux_region_ok_for_hw_watchpoint):
350         Move code to aarch64_linux_region_ok_for_watchpoint.  Call
351         aarch64_linux_region_ok_for_watchpoint.
352         * nat/aarch64-linux-hw-point.c (aarch64_linux_region_ok_for_watchpoint):
353         New function.
354         * nat/aarch64-linux-hw-point.h (aarch64_linux_region_ok_for_watchpoint):
355         Declare it.
356
357 2015-09-02  Patrick Palka  <patrick@parcs.ath.cx>
358
359         * gdb_obstack.h (obstack_strdup): Declare.
360         * gdb_obstack.c (obstack_strdup): Define.
361         * gdbarch.sh (gdbarch_obstack_strdup): Declare and define.
362         * gdbarch.c: Regenerate.
363         * gdbarch.h: Regenerate.
364         * gdbtypes.c (arch_type): Use gdbarch_obstack_strdup.
365
366 2015-09-02  Patrick Palka  <patrick@parcs.ath.cx>
367
368         * gdbtypes.c (copy_type_recursive): Update documentation.
369
370 2015-09-01  Sergio Durigan Junior  <sergiodj@redhat.com>
371
372         * solib-svr4.c (solib_event_probe_action): Initialize 'probe_argc'
373         as zero.
374
375 2015-09-01  Sergio Durigan Junior  <sergiodj@redhat.com>
376
377         * solib-svr4.c (svr4_handle_solib_event): Initialize 'val' as NULL
378
379 2015-09-01  Sergio Durigan Junior  <sergiodj@redhat.com>
380
381         * solib-svr4.c (solib_event_probe_action): Call
382         get_probe_argument_count using TRY...CATCH.
383         (svr4_handle_solib_event): Likewise, for evaluate_probe_argument.
384
385 2015-09-01  Sergio Durigan Junior  <sergiodj@redhat.com>
386
387         * probe.h (struct probe_ops) <get_probe_argument_count,
388         evaluate_probe_argument, enable_probe, disable_probe>: Mention in
389         the comment that the function can throw an exception.
390         (get_probe_argument_count): Likewise.
391         (evaluate_probe_argument): Likewise.
392         * stap-probe.c (stap_get_opcode): Call error instead of
393         internal_error.
394         (stap_get_expected_argument_type): Likewise.  Add argument
395         'probe'.  Improve error message by mentioning the probe's name.
396         (stap_parse_probe_arguments): Adjust call to
397         stap_get_expected_argument_type.
398         (stap_get_arg): Add comment.  Assert that 'probe->args_parsed' is
399         not zero.  Call internal_error if GDB requests an argument but the
400         probe has no arguments.
401
402 2015-09-01  Pierre-Marie de Rodat  <derodat@adacore.com>
403
404         * ada-lang.c (ada_resolve_function): Do not ask the user what
405         match to use when in completion mode.
406
407 2015-08-31  Andrew Burgess  <andrew.burgess@embecosm.com>
408
409         * tui/tui-data.c (tui_win_name): Make local variable const, remove
410         cast of NULL.
411
412 2015-08-31  Max Filippov  <jcmvbkbc@gmail.com>
413
414         * xtensa-tdep.h (XTENSA_GDBARCH_TDEP_INSTANTIATE): Initialize
415         call_abi using XSHAL_ABI macro.
416
417 2015-08-29  Doug Evans  <xdje42@gmail.com>
418
419         * symtab.h (struct symbol): Tweak comment.
420
421 2015-08-29  Patrick Palka  <patrick@parcs.ath.cx>
422
423         * gdbtypes.c (alloc_type_arch): Allocate the type on the given
424         gdbarch obstack instead of on the heap.  Update commentary
425         accordingly.
426
427 2015-08-28  Joel Brobecker  <brobecker@adacore.com>
428
429         GDB 7.10 released.
430
431 2015-08-28  Simon Marchi  <simon.marchi@ericsson.com>
432
433         * NEWS: Update entry about non-8-bits addressable memory.
434
435 2015-08-28  Ulrich Weigand  <uweigand@de.ibm.com>
436
437         Revert:
438         2014-11-06  Doug Evans  <xdje42@gmail.com>
439         * solib.c (solib_global_lookup): Fetch arch from objfile,
440         not target_gdbarch.
441
442 2015-08-27  Ulrich Weigand  <uweigand@de.ibm.com>
443
444         * ppc-linux-tdep.c (ppc_linux_spe_context_lookup): Do not
445         attempt to relocate a TLS variable offset.
446
447 2015-08-27  Ulrich Weigand  <uweigand@de.ibm.com>
448
449         * spu-multiarch.c (parse_spufs_run): Bail out if inferior is not
450         registered yet.  Set inferior_ptid while calling target_read_memory.
451
452 2015-08-27  Ulrich Weigand  <uweigand@de.ibm.com>
453
454         * nat/linux-ptrace.h (GDB_ARCH_TRAP_BRKPT): Replace by ...
455         (GDB_ARCH_IS_TRAP_BRKPT): ... this.  Add __powerpc__ case.
456         * linux-nat.c (check_stopped_by_breakpoint): Use
457         GDB_ARCH_IS_TRAP_BRKPT instead of GDB_ARCH_TRAP_BRKPT.
458
459 2015-08-27  Ulrich Weigand  <uweigand@de.ibm.com>
460
461         * linux-thread-db.c (thread_db_get_thread_local_address): If the
462         thread was not yet discovered, use thread_from_lwp instead of
463         calling thread_db_find_new_threads_1.
464
465 2015-08-27  Simon Marchi  <simon.marchi@ericsson.com>
466
467         * m88k-tdep.c (m88k_analyze_prologue): Fix inverted allocation
468         statements.
469
470 2015-08-27  Simon Marchi  <simon.marchi@ericsson.com>
471
472         * NEWS: Document support for non-8-bits addressable memory.
473
474 2015-08-27  Pedro Alves  <palves@redhat.com>
475
476         * configure.ac: Remove AC_TYPE_SIGNAL call.
477         * configure, config.in: Regenerate.
478
479 2015-08-27  Pedro Alves  <palves@redhat.com>
480
481         * cp-support.c (gdb_demangle): Use sighandler_t.  Remove cast.
482         * extension-priv.h: Include signal.h.
483         (struct signal_handler) <handler>: Change type to sighandler_t.
484         * extension.c (install_gdb_sigint_handler): Use sighandler_t.
485         * inflow.c (sigint_ours, sigquit_ours): Change type to
486         sighandler_t.
487         (child_terminal_inferior): Remove casts.
488         (child_terminal_ours_1, new_tty): Use sighandler_t.  Remove casts.
489         (osig): Change type to sighandler_t.
490         * nto-procfs.c (ofunc): Change type to sighandler_t.
491         (procfs_wait): Remove casts.
492         * remote-m32r-sdi.c (m32r_wait, m32r_load): Use sighandler_t.
493         * remote-sim.c (gdbsim_wait): Use sighandler_t.
494         * utils.c (wait_to_die_with_timeout): Use sighandler_t.
495
496 2015-08-27  Pedro Alves  <palves@redhat.com>
497
498         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add signal-h.
499         * gnulib/aclocal.m4: Renegerate.
500         * gnulib/config.in: Renegerate.
501         * gnulib/configure: Renegerate.
502         * gnulib/import/Makefile.am: Update.
503         * gnulib/import/Makefile.in: Regenerate.
504         * gnulib/import/m4/gnulib-cache.m4: Update.
505         * gnulib/import/m4/gnulib-comp.m4: Update.
506         * gnulib/import/m4/signal_h.m4: New file.
507         * gnulib/import/signal.in.h: New file.
508
509 2015-08-27  Pedro Alves  <palves@redhat.com>
510
511         * remote.c (DEFAULT_MAX_MEMORY_PACKET_SIZE)
512         (MIN_MEMORY_PACKET_SIZE): New.
513         (MAX_REMOTE_PACKET_SIZE, MIN_REMOTE_PACKET_SIZE): Delete.
514         (get_memory_packet_size): Adjust.  No longer limit the max packet
515         size.
516         (set_memory_packet_size): Adjust, and remove dead code.
517         (remote_check_symbols): Use xmalloc and a cleanup instead of
518         alloca.
519         (remote_packet_size): No longer cap the packet size.
520         (putpkt_binary): Use xmalloc and a cleanup instead of alloca.
521
522 2015-08-26  Luis Machado  <lgustavo@codesourcery.com>
523
524         * compile/compile.c (compile_to_object): Mention language in
525         error message.
526
527 2015-08-26  Patrick Palka  <patrick@parcs.ath.cx>
528
529         * target.c (target_pre_inferior): Unset attach_flag.
530
531 2015-08-26  Simon Marchi  <simon.marchi@ericsson.com>
532
533         * gdbarch.sh (append_name): Fix type in XRESIZEVEC.
534         * gdbarch.c: Re-generate.
535
536 2015-08-26  Simon Marchi  <simon.marchi@ericsson.com>
537
538         * aarch64-linux-nat.c (aarch64_add_process): Replace xmalloc-family
539         function with the XNEW-family equivalent.
540         * aarch64-tdep.c (aarch64_gdbarch_init): Likewise.
541         * ada-exp.y (write_ambiguous_var): Likewise.
542         * ada-lang.c (resolve_subexp): Likewise.
543         (user_select_syms): Likewise.
544         (assign_aggregate): Likewise.
545         (ada_evaluate_subexp): Likewise.
546         (cache_symbol): Likewise.
547         * addrmap.c (allocate_key): Likewise.
548         (addrmap_create_mutable): Likewise.
549         * aix-thread.c (sync_threadlists): Likewise.
550         * alpha-tdep.c (alpha_push_dummy_call): Likewise.
551         (alpha_gdbarch_init): Likewise.
552         * amd64-windows-tdep.c (amd64_windows_push_arguments): Likewise.
553         * arm-linux-nat.c (arm_linux_add_process): Likewise.
554         * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Likewise.
555         * arm-tdep.c (push_stack_item): Likewise.
556         (arm_displaced_step_copy_insn): Likewise.
557         (arm_gdbarch_init): Likewise.
558         (_initialize_arm_tdep): Likewise.
559         * avr-tdep.c (push_stack_item): Likewise.
560         * ax-general.c (new_agent_expr): Likewise.
561         * block.c (block_initialize_namespace): Likewise.
562         * breakpoint.c (alloc_counted_command_line): Likewise.
563         (update_dprintf_command_list): Likewise.
564         (parse_breakpoint_sals): Likewise.
565         (decode_static_tracepoint_spec): Likewise.
566         (until_break_command): Likewise.
567         (clear_command): Likewise.
568         (update_global_location_list): Likewise.
569         (get_breakpoint_objfile_data) Likewise.
570         * btrace.c (ftrace_new_function): Likewise.
571         (btrace_set_insn_history): Likewise.
572         (btrace_set_call_history): Likewise.
573         * buildsym.c (add_symbol_to_list): Likewise.
574         (record_pending_block): Likewise.
575         (start_subfile): Likewise.
576         (start_buildsym_compunit): Likewise.
577         (push_subfile): Likewise.
578         (end_symtab_get_static_block): Likewise.
579         (buildsym_init): Likewise.
580         * cli/cli-cmds.c (source_command): Likewise.
581         * cli/cli-decode.c (add_cmd): Likewise.
582         * cli/cli-script.c (build_command_line): Likewise.
583         (setup_user_args): Likewise.
584         (realloc_body_list): Likewise.
585         (process_next_line): Likewise.
586         (copy_command_lines): Likewise.
587         * cli/cli-setshow.c (do_set_command): Likewise.
588         * coff-pe-read.c (read_pe_exported_syms): Likewise.
589         * coffread.c (coff_locate_sections): Likewise.
590         (coff_symtab_read): Likewise.
591         (coff_read_struct_type): Likewise.
592         * common/cleanups.c (make_my_cleanup2): Likewise.
593         * common/common-exceptions.c (throw_it): Likewise.
594         * common/filestuff.c (make_cleanup_close): Likewise.
595         * common/format.c (parse_format_string): Likewise.
596         * common/queue.h (DEFINE_QUEUE_P): Likewise.
597         * compile/compile-object-load.c (munmap_list_add): Likewise.
598         (compile_object_load): Likewise.
599         * compile/compile-object-run.c (compile_object_run): Likewise.
600         * compile/compile.c (append_args): Likewise.
601         * corefile.c (specify_exec_file_hook): Likewise.
602         * cp-support.c (make_symbol_overload_list): Likewise.
603         * cris-tdep.c (push_stack_item): Likewise.
604         (cris_gdbarch_init): Likewise.
605         * ctf.c (ctf_trace_file_writer_new): Likewise.
606         * dbxread.c (init_header_files): Likewise.
607         (add_new_header_file): Likewise.
608         (init_bincl_list): Likewise.
609         (dbx_end_psymtab): Likewise.
610         (start_psymtab): Likewise.
611         (dbx_end_psymtab): Likewise.
612         * dcache.c (dcache_init): Likewise.
613         * dictionary.c (dict_create_hashed): Likewise.
614         (dict_create_hashed_expandable): Likewise.
615         (dict_create_linear): Likewise.
616         (dict_create_linear_expandable): Likewise.
617         * dtrace-probe.c (dtrace_process_dof_probe): Likewise.
618         * dummy-frame.c (register_dummy_frame_dtor): Likewise.
619         * dwarf2-frame-tailcall.c (cache_new_ref1): Likewise.
620         * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
621         (decode_frame_entry_1): Likewise.
622         * dwarf2expr.c (new_dwarf_expr_context): Likewise.
623         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
624         * dwarf2read.c (dwarf2_has_info): Likewise.
625         (create_signatured_type_table_from_index): Likewise.
626         (dwarf2_read_index): Likewise.
627         (dw2_get_file_names_reader): Likewise.
628         (create_all_type_units): Likewise.
629         (read_cutu_die_from_dwo): Likewise.
630         (init_tu_and_read_dwo_dies): Likewise.
631         (init_cutu_and_read_dies): Likewise.
632         (create_all_comp_units): Likewise.
633         (queue_comp_unit): Likewise.
634         (inherit_abstract_dies): Likewise.
635         (read_call_site_scope): Likewise.
636         (dwarf2_add_field): Likewise.
637         (dwarf2_add_typedef): Likewise.
638         (dwarf2_add_member_fn): Likewise.
639         (attr_to_dynamic_prop): Likewise.
640         (abbrev_table_alloc_abbrev): Likewise.
641         (abbrev_table_read_table): Likewise.
642         (add_include_dir): Likewise.
643         (add_file_name): Likewise.
644         (dwarf_decode_line_header): Likewise.
645         (dwarf2_const_value_attr): Likewise.
646         (dwarf_alloc_block): Likewise.
647         (parse_macro_definition): Likewise.
648         (set_die_type): Likewise.
649         (write_psymtabs_to_index): Likewise.
650         (create_cus_from_index): Likewise.
651         (dwarf2_create_include_psymtab): Likewise.
652         (process_psymtab_comp_unit_reader): Likewise.
653         (build_type_psymtab_dependencies): Likewise.
654         (read_comp_units_from_section): Likewise.
655         (compute_compunit_symtab_includes): Likewise.
656         (create_dwo_unit_in_dwp_v1): Likewise.
657         (create_dwo_unit_in_dwp_v2): Likewise.
658         (read_func_scope): Likewise.
659         (process_structure_scope): Likewise.
660         (mark_common_block_symbol_computed): Likewise.
661         (load_partial_dies): Likewise.
662         (dwarf2_symbol_mark_computed): Likewise.
663         * elfread.c (elf_symfile_segments): Likewise.
664         (elf_read_minimal_symbols): Likewise.
665         * environ.c (make_environ): Likewise.
666         * eval.c (evaluate_subexp_standard): Likewise.
667         * event-loop.c (create_file_handler): Likewise.
668         (create_async_signal_handler): Likewise.
669         (create_async_event_handler): Likewise.
670         (create_timer): Likewise.
671         * exec.c (build_section_table): Likewise.
672         * fbsd-nat.c (fbsd_remember_child): Likewise.
673         * fork-child.c (fork_inferior): Likewise.
674         * frv-tdep.c (new_variant): Likewise.
675         * gdbarch.sh (gdbarch_alloc): Likewise.
676         (append_name): Likewise.
677         * gdbtypes.c (rank_function): Likewise.
678         (copy_type_recursive): Likewise.
679         (add_dyn_prop): Likewise.
680         * gnu-nat.c (make_proc): Likewise.
681         (make_inf): Likewise.
682         (gnu_write_inferior): Likewise.
683         * gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
684         (build_std_type_info_type): Likewise.
685         * guile/scm-param.c (compute_enum_list): Likewise.
686         * guile/scm-utils.c (gdbscm_parse_function_args): Likewise.
687         * guile/scm-value.c (gdbscm_value_call): Likewise.
688         * h8300-tdep.c (h8300_gdbarch_init): Likewise.
689         * hppa-tdep.c (hppa_init_objfile_priv_data): Likewise.
690         (read_unwind_info): Likewise.
691         * ia64-tdep.c (ia64_gdbarch_init): Likewise.
692         * infcall.c (dummy_frame_context_saver_setup): Likewise.
693         (call_function_by_hand_dummy): Likewise.
694         * infcmd.c (step_once): Likewise.
695         (finish_forward): Likewise.
696         (attach_command): Likewise.
697         (notice_new_inferior): Likewise.
698         * inferior.c (add_inferior_silent): Likewise.
699         * infrun.c (add_displaced_stepping_state): Likewise.
700         (save_infcall_control_state): Likewise.
701         (save_inferior_ptid): Likewise.
702         (_initialize_infrun): Likewise.
703         * jit.c (bfd_open_from_target_memory): Likewise.
704         (jit_gdbarch_data_init): Likewise.
705         * language.c (add_language): Likewise.
706         * linespec.c (decode_line_2): Likewise.
707         * linux-nat.c (add_to_pid_list): Likewise.
708         (add_initial_lwp): Likewise.
709         * linux-thread-db.c (add_thread_db_info): Likewise.
710         (record_thread): Likewise.
711         (info_auto_load_libthread_db): Likewise.
712         * m32c-tdep.c (m32c_gdbarch_init): Likewise.
713         * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
714         * m68k-tdep.c (m68k_gdbarch_init): Likewise.
715         * m88k-tdep.c (m88k_analyze_prologue): Likewise.
716         * macrocmd.c (macro_define_command): Likewise.
717         * macroexp.c (gather_arguments): Likewise.
718         * macroscope.c (sal_macro_scope): Likewise.
719         * macrotab.c (new_macro_table): Likewise.
720         * mdebugread.c (push_parse_stack): Likewise.
721         (parse_partial_symbols): Likewise.
722         (parse_symbol): Likewise.
723         (psymtab_to_symtab_1): Likewise.
724         (new_block): Likewise.
725         (new_psymtab): Likewise.
726         (mdebug_build_psymtabs): Likewise.
727         (add_pending): Likewise.
728         (elfmdebug_build_psymtabs): Likewise.
729         * mep-tdep.c (mep_gdbarch_init): Likewise.
730         * mi/mi-main.c (mi_execute_command): Likewise.
731         * mi/mi-parse.c (mi_parse_argv): Likewise.
732         * minidebug.c (lzma_open): Likewise.
733         * minsyms.c (terminate_minimal_symbol_table): Likewise.
734         * mips-linux-nat.c (mips_linux_insert_watchpoint): Likewise.
735         * mips-tdep.c (mips_gdbarch_init): Likewise.
736         * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
737         * msp430-tdep.c (msp430_gdbarch_init): Likewise.
738         * mt-tdep.c (mt_registers_info): Likewise.
739         * nat/aarch64-linux.c (aarch64_linux_new_thread): Likewise.
740         * nat/linux-btrace.c (linux_enable_bts): Likewise.
741         (linux_enable_pt): Likewise.
742         * nat/linux-osdata.c (linux_xfer_osdata_processes): Likewise.
743         (linux_xfer_osdata_processgroups): Likewise.
744         * nios2-tdep.c (nios2_gdbarch_init): Likewise.
745         * nto-procfs.c (procfs_meminfo): Likewise.
746         * objc-lang.c (start_msglist): Likewise.
747         (selectors_info): Likewise.
748         (classes_info): Likewise.
749         (find_methods): Likewise.
750         * objfiles.c (allocate_objfile): Likewise.
751         (update_section_map): Likewise.
752         * osabi.c (gdbarch_register_osabi): Likewise.
753         (gdbarch_register_osabi_sniffer): Likewise.
754         * parse.c (start_arglist): Likewise.
755         * ppc-linux-nat.c (hwdebug_find_thread_points_by_tid): Likewise.
756         (hwdebug_insert_point): Likewise.
757         * printcmd.c (display_command): Likewise.
758         (ui_printf): Likewise.
759         * procfs.c (create_procinfo): Likewise.
760         (load_syscalls): Likewise.
761         (proc_get_LDT_entry): Likewise.
762         (proc_update_threads): Likewise.
763         * prologue-value.c (make_pv_area): Likewise.
764         (pv_area_store): Likewise.
765         * psymtab.c (extend_psymbol_list): Likewise.
766         (init_psymbol_list): Likewise.
767         (allocate_psymtab): Likewise.
768         * python/py-inferior.c (add_thread_object): Likewise.
769         * python/py-param.c (compute_enum_values): Likewise.
770         * python/py-value.c (valpy_call): Likewise.
771         * python/py-varobj.c (py_varobj_iter_next): Likewise.
772         * python/python.c (ensure_python_env): Likewise.
773         * record-btrace.c (record_btrace_start_replaying): Likewise.
774         * record-full.c (record_full_reg_alloc): Likewise.
775         (record_full_mem_alloc): Likewise.
776         (record_full_end_alloc): Likewise.
777         (record_full_core_xfer_partial): Likewise.
778         * regcache.c (get_thread_arch_aspace_regcache): Likewise.
779         * remote-fileio.c (remote_fileio_init_fd_map): Likewise.
780         * remote-notif.c (remote_notif_state_allocate): Likewise.
781         * remote.c (demand_private_info): Likewise.
782         (remote_notif_stop_alloc_reply): Likewise.
783         (remote_enable_btrace): Likewise.
784         * reverse.c (save_bookmark_command): Likewise.
785         * rl78-tdep.c (rl78_gdbarch_init): Likewise.
786         * rx-tdep.c (rx_gdbarch_init): Likewise.
787         * s390-linux-nat.c (s390_insert_watchpoint): Likewise.
788         * ser-go32.c (dos_get_tty_state): Likewise.
789         (dos_copy_tty_state): Likewise.
790         * ser-mingw.c (ser_windows_open): Likewise.
791         (ser_console_wait_handle): Likewise.
792         (ser_console_get_tty_state): Likewise.
793         (make_pipe_state): Likewise.
794         (net_windows_open): Likewise.
795         * ser-unix.c (hardwire_get_tty_state): Likewise.
796         (hardwire_copy_tty_state): Likewise.
797         * solib-aix.c (solib_aix_new_lm_info): Likewise.
798         * solib-dsbt.c (dsbt_current_sos): Likewise.
799         (dsbt_relocate_main_executable): Likewise.
800         * solib-frv.c (frv_current_sos): Likewise.
801         (frv_relocate_main_executable): Likewise.
802         * solib-spu.c (spu_bfd_fopen): Likewise.
803         * solib-svr4.c (lm_info_read): Likewise.
804         (svr4_copy_library_list): Likewise.
805         (svr4_default_sos): Likewise.
806         * source.c (find_source_lines): Likewise.
807         (line_info): Likewise.
808         (add_substitute_path_rule): Likewise.
809         * spu-linux-nat.c (spu_bfd_open): Likewise.
810         * spu-tdep.c (info_spu_dma_cmdlist): Likewise.
811         * stabsread.c (dbx_lookup_type): Likewise.
812         (read_type): Likewise.
813         (read_member_functions): Likewise.
814         (read_struct_fields): Likewise.
815         (read_baseclasses): Likewise.
816         (read_args): Likewise.
817         (_initialize_stabsread): Likewise.
818         * stack.c (func_command): Likewise.
819         * stap-probe.c (handle_stap_probe): Likewise.
820         * symfile.c (addrs_section_sort): Likewise.
821         (addr_info_make_relative): Likewise.
822         (load_section_callback): Likewise.
823         (add_symbol_file_command): Likewise.
824         (init_filename_language_table): Likewise.
825         * symtab.c (create_filename_seen_cache): Likewise.
826         (sort_search_symbols_remove_dups): Likewise.
827         (search_symbols): Likewise.
828         * target.c (make_cleanup_restore_target_terminal): Likewise.
829         * thread.c (new_thread): Likewise.
830         (enable_thread_stack_temporaries): Likewise.
831         (make_cleanup_restore_current_thread): Likewise.
832         (thread_apply_all_command): Likewise.
833         * tic6x-tdep.c (tic6x_gdbarch_init): Likewise.
834         * top.c (gdb_readline_wrapper): Likewise.
835         * tracefile-tfile.c (tfile_trace_file_writer_new): Likewise.
836         * tracepoint.c (trace_find_line_command): Likewise.
837         (all_tracepoint_actions_and_cleanup): Likewise.
838         (make_cleanup_restore_current_traceframe): Likewise.
839         (get_uploaded_tp): Likewise.
840         (get_uploaded_tsv): Likewise.
841         * tui/tui-data.c (tui_alloc_generic_win_info): Likewise.
842         (tui_alloc_win_info): Likewise.
843         (tui_alloc_content): Likewise.
844         (tui_add_content_elements): Likewise.
845         * tui/tui-disasm.c (tui_find_disassembly_address): Likewise.
846         (tui_set_disassem_content): Likewise.
847         * ui-file.c (ui_file_new): Likewise.
848         (stdio_file_new): Likewise.
849         (tee_file_new): Likewise.
850         * utils.c (make_cleanup_restore_integer): Likewise.
851         (add_internal_problem_command): Likewise.
852         * v850-tdep.c (v850_gdbarch_init): Likewise.
853         * valops.c (find_oload_champ): Likewise.
854         * value.c (allocate_value_lazy): Likewise.
855         (record_latest_value): Likewise.
856         (create_internalvar): Likewise.
857         * varobj.c (install_variable): Likewise.
858         (new_variable): Likewise.
859         (new_root_variable): Likewise.
860         (cppush): Likewise.
861         (_initialize_varobj): Likewise.
862         * windows-nat.c (windows_make_so): Likewise.
863         * x86-nat.c (x86_add_process): Likewise.
864         * xcoffread.c (arrange_linetable): Likewise.
865         (allocate_include_entry): Likewise.
866         (process_linenos): Likewise.
867         (SYMBOL_DUP): Likewise.
868         (xcoff_start_psymtab): Likewise.
869         (xcoff_end_psymtab): Likewise.
870         * xml-support.c (gdb_xml_parse_attr_ulongest): Likewise.
871         * xtensa-tdep.c (xtensa_register_type): Likewise.
872         * gdbarch.c: Regenerate.
873         * gdbarch.h: Regenerate.
874
875 2015-08-25  Don Breazeal  <donb@codesourcery.com>
876
877         * infrun.c (follow_exec): Re-order operations for
878         handling follow-exec-mode "new".
879         (handle_inferior_event_1): Assign ecs->event_thread
880         to the current thread.
881         * remote.c (get_remote_arch_state): Add an assertion.
882
883 2015-08-26  Pedro Alves  <palves@redhat.com>
884
885         * MAINTAINERS: Add Markus Metzger as btrace maintainer.
886
887 2015-08-25  Pedro Alves  <palves@redhat.com>
888
889         PR gdb/18804
890         * defs.h (maybe_quit): Declare.
891         (QUIT): Now calls maybe_quit.
892         * event-loop.c (clear_async_signal_handler)
893         (async_signal_handler_is_marked): New functions.
894         * event-loop.h (async_signal_handler_is_marked)
895         (clear_async_signal_handler): New declarations.
896         * remote.c (remote_check_pending_interrupt): New function.
897         (interrupt_query): Use make_cleanup_restore_target_terminal.  No
898         longer check whether the target is async.  If waiting for a stop
899         reply, and a Ctrl-C as been sent to the target, offer to
900         disconnect, and throw TARGET_CLOSE_ERROR instead of a quit.
901         Otherwise do not disconnect and throw a quit.
902         (_initialize_remote): Install remote_check_pending_interrupt as
903         to_check_pending_interrupt.
904         * target.c (target_check_pending_interrupt): New function.
905         * target.h (struct target_ops) <to_check_pending_interrupt>: New
906         field.
907         (target_check_pending_interrupt): New declaration.
908         * utils.c (maybe_quit): New function.
909         * target-delegates.c: Regenerate.
910
911 2015-08-25  Yao Qi  <yao.qi@linaro.org>
912
913         * nat/aarch64-linux-hw-point.c (debug_reg_change_callback):
914         Rename local variable pid to tid, and get lwpid of lwp.  Update
915         debug output.
916
917 2015-08-25  Pierre-Marie de Rodat  <derodat@adacore.com>
918
919         * ada-lang.c (ada_read_var_value): Add a var_block argument
920         and pass it to default_read_var_value.
921         * block.c (block_static_link): New accessor.
922         * block.h (block_static_link): Declare it.
923         * buildsym.c (finish_block_internal): Add a static_link
924         argument.  If there is a static link, associate it to the new
925         block.
926         (finish_block): Add a static link argument and pass it to
927         finish_block_internal.
928         (end_symtab_get_static_block): Update calls to finish_block and
929         to finish_block_internal.
930         (end_symtab_with_blockvector): Update call to
931         finish_block_internal.
932         * buildsym.h: Forward-declare struct dynamic_prop.
933         (struct context_stack): Add a static_link field.
934         (finish_block): Add a static link argument.
935         * c-exp.y: Remove an obsolete comment (evaluation of variables
936         already start from the selected frame, and now they climb *up*
937         the call stack) and propagate the block information to the
938         produced expression.
939         * d-exp.y: Likewise.
940         * f-exp.y: Likewise.
941         * go-exp.y: Likewise.
942         * jv-exp.y: Likewise.
943         * m2-exp.y: Likewise.
944         * p-exp.y: Likewise.
945         * coffread.c (coff_symtab_read): Update calls to finish_block.
946         * dbxread.c (process_one_symbol): Likewise.
947         * xcoffread.c (read_xcoff_symtab): Likewise.
948         * compile/compile-c-symbols.c (convert_one_symbol): Promote the
949         "sym" parameter to struct block_symbol, update its uses and pass
950         its block to calls to read_var_value.
951         (convert_symbol_sym): Update the calls to convert_one_symbol.
952         * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Update
953         call to read_var_value.
954         * dwarf2loc.c (block_op_get_frame_base): New.
955         (dwarf2_block_frame_base_locexpr_funcs): Implement the
956         get_frame_base method.
957         (dwarf2_block_frame_base_loclist_funcs): Likewise.
958         (dwarf2locexpr_baton_eval): Add a frame argument and use it
959         instead of the selected frame in order to evaluate the
960         expression.
961         (dwarf2_evaluate_property): Add a frame argument.  Update call
962         to dwarf2_locexpr_baton_eval to provide a frame in available and
963         to handle the absence of address stack.
964         * dwarf2loc.h (dwarf2_evaluate_property): Add a frame argument.
965         * dwarf2read.c (attr_to_dynamic_prop): Add a forward
966         declaration.
967         (read_func_scope): Record any available static link description.
968         Update call to finish_block.
969         (read_lexical_block_scope): Update call to finish_block.
970         * findvar.c (follow_static_link): New.
971         (get_hosting_frame): New.
972         (default_read_var_value): Add a var_block argument.  Use
973         get_hosting_frame to handle non-local references.
974         (read_var_value): Add a var_block argument and pass it to the
975         LA_READ_VAR_VALUE method.
976         * gdbtypes.c (resolve_dynamic_range): Update calls to
977         dwarf2_evaluate_property.
978         (resolve_dynamic_type_internal): Likewise.
979         * guile/scm-frame.c (gdbscm_frame_read_var): Update call to
980         read_var_value, passing it the block coming from symbol lookup.
981         * guile/scm-symbol.c (gdbscm_symbol_value): Update call to
982         read_var_value (TODO).
983         * infcmd.c (finish_command_continuation): Update call to
984         read_var_value, passing it the block coming from symbol lookup.
985         * infrun.c (insert_exception_resume_breakpoint): Likewise.
986         * language.h (struct language_defn): Add a var_block argument to
987         the LA_READ_VAR_VALUE method.
988         * objfiles.c (struct static_link_htab_entry): New.
989         (static_link_htab_entry_hash): New.
990         (static_link_htab_entry_eq): New.
991         (objfile_register_static_link): New.
992         (objfile_lookup_static_link): New.
993         (free_objfile): Free the STATIC_LINKS hashed map if needed.
994         * objfiles.h: Include hashtab.h.
995         (struct objfile): Add a static_links field.
996         (objfile_register_static_link): New.
997         (objfile_lookup_static_link): New.
998         * printcmd.c (print_variable_and_value): Update call to
999         read_var_value.
1000         * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
1001         * python/py-frame.c (frapy_read_var): Update call to
1002         read_var_value, passing it the block coming from symbol lookup.
1003         * python/py-framefilter.c (extract_sym): Add a sym_block
1004         parameter and set the pointed value to NULL (TODO).
1005         (enumerate_args): Update call to extract_sym.
1006         (enumerate_locals): Update calls to extract_sym and to
1007         read_var_value.
1008         * python/py-symbol.c (sympy_value): Update call to
1009         read_var_value (TODO).
1010         * stack.c (read_frame_local): Update call to read_var_value.
1011         (read_frame_arg): Likewise.
1012         (return_command): Likewise.
1013         * symtab.h (struct symbol_block_ops): Add a get_frame_base
1014         method.
1015         (struct symbol): Add a block field.
1016         (SYMBOL_BLOCK): New accessor.
1017         * valops.c (value_of_variable): Remove frame/block handling and
1018         pass the block argument to read_var_value, which does this job
1019         now.
1020         (value_struct_elt_for_reference): Update calls to
1021         read_var_value.
1022         (value_of_this): Pass the block found to read_var_value.
1023         * value.h (read_var_value): Add a var_block argument.
1024         (default_read_var_value): Likewise.
1025
1026 2015-08-25  Yao Qi  <yao.qi@linaro.org>
1027
1028         * aarch64-linux-nat.c (aarch64_linux_new_thread): Move it to ...
1029         * nat/aarch64-linux.c (aarch64_linux_new_thread): ... here.
1030         * nat/aarch64-linux.h (aarch64_linux_new_thread): Declare.
1031
1032 2015-08-25  Yao Qi  <yao.qi@linaro.org>
1033
1034         * Makefile.in (aarch64-liunx.o): New rule.
1035         (HFILES_NO_SRCDIR): Add aarch64-linux.h.
1036         * config/aarch64/linux.mh (NAT_FILE): Add aarch64-linux.o.
1037         * aarch64-linux-nat.c: Include nat/aarch64-linux.h.
1038         * aarch64-linux-nat.c (aarch64_get_debug_reg_state): Make it
1039         extern.
1040         (aarch64_linux_prepare_to_resume): Move it nat/aarch64-linux.c.
1041         * nat/aarch64-linux-hw-point.h (aarch64_debug_reg_state): Declare
1042         * nat/aarch64-linux.c: New file.
1043         * nat/aarch64-linux.h: New file.
1044
1045 2015-08-25  Yao Qi  <yao.qi@linaro.org>
1046
1047         * aarch64-linux-nat.c (aarch64_linux_prepare_to_resume): Use
1048         lwp_arch_private_info and ptid_of_lwp.
1049
1050 2015-08-25  Yao Qi  <yao.qi@linaro.org>
1051
1052         * aarch64-linux-nat.c (struct arch64_dr_update_callback_param):
1053         Move it to nat/aarch64-linux-hw-point.c.
1054         (debug_reg_change_callback): Likewise.
1055         (aarch64_notify_debug_reg_change): :Likewise.
1056         * nat/aarch64-linux-hw-point.c: Include nat/linux-nat.h.
1057         (aarch64_dr_update_callback_param): New.
1058         (debug_reg_change_callback): New function.
1059         (aarch64_notify_debug_reg_change): Likewise.
1060         * nat/aarch64-linux-hw-point.h (aarch64_notify_debug_reg_change):
1061         Remove the declaration.
1062
1063 2015-08-25  Yao Qi  <yao.qi@linaro.org>
1064
1065         * aarch64-linux-nat.c (aarch64_notify_debug_reg_change):
1066         Call current_lwp_ptid.
1067
1068 2015-08-25  Yao Qi  <yao.qi@linaro.org>
1069
1070         * aarch64-linux-nat.c (debug_reg_change_callback): Use
1071         debug_printf.
1072
1073 2015-08-25  Yao Qi  <yao.qi@linaro.org>
1074
1075         * aarch64-linux-nat.c (debug_reg_change_callback): Call
1076         ptid_get_pid rather than ptid_get_lwp.
1077
1078 2015-08-24  Pedro Alves  <palves@redhat.com>
1079
1080         * NEWS (New commands): Mention set/show remote
1081         multiprocess-extensions-packet.
1082         * remote.c (remote_query_supported): Only tell the server to use
1083         the multiprocess extensions if the user hasn't force-disabled them
1084         with "set remote multiprocess-extensions-packet off".
1085
1086 2015-08-24  Pedro Alves  <palves@redhat.com>
1087
1088         * gnulib/update-gnulib.sh (GNULIB_COMMIT_SHA1): Set to
1089         1029a8112290f6eee9d7878a391c49db42c999bd.
1090         * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4:
1091         Regenerate.
1092         * gnulib/import/Makefile.am: Update.
1093         * gnulib/import/Makefile.in: Update.
1094         * gnulib/import/alloca.in.h: Update.
1095         * gnulib/import/basename-lgpl.c: Update.
1096         * gnulib/import/canonicalize-lgpl.c: Update.
1097         * gnulib/import/config.charset: Update.
1098         * gnulib/import/dirent.in.h: Update.
1099         * gnulib/import/dirfd.c: Update.
1100         * gnulib/import/dirname-lgpl.c: Update.
1101         * gnulib/import/dirname.h: Update.
1102         * gnulib/import/dosname.h: Update.
1103         * gnulib/import/errno.in.h: Update.
1104         * gnulib/import/extra/snippet/arg-nonnull.h: Update.
1105         * gnulib/import/extra/snippet/c++defs.h: Update.
1106         * gnulib/import/extra/snippet/warn-on-use.h: Update.
1107         * gnulib/import/extra/update-copyright: Update.
1108         * gnulib/import/float+.h: Update.
1109         * gnulib/import/float.c: Update.
1110         * gnulib/import/float.in.h: Update.
1111         * gnulib/import/fnmatch.c: Update.
1112         * gnulib/import/fnmatch.in.h: Update.
1113         * gnulib/import/fnmatch_loop.c: Update.
1114         * gnulib/import/fpucw.h: Update.
1115         * gnulib/import/frexp.c: Update.
1116         * gnulib/import/frexpl.c: Update.
1117         * gnulib/import/gettimeofday.c: Update.
1118         * gnulib/import/inttypes.in.h: Update.
1119         * gnulib/import/isnan.c: Update.
1120         * gnulib/import/isnand-nolibm.h: Update.
1121         * gnulib/import/isnand.c: Update.
1122         * gnulib/import/isnanl-nolibm.h: Update.
1123         * gnulib/import/isnanl.c: Update.
1124         * gnulib/import/itold.c: Update.
1125         * gnulib/import/localcharset.c: Update.
1126         * gnulib/import/localcharset.h: Update.
1127         * gnulib/import/lstat.c: Update.
1128         * gnulib/import/m4/00gnulib.m4: Update.
1129         * gnulib/import/m4/absolute-header.m4: Update.
1130         * gnulib/import/m4/alloca.m4: Update.
1131         * gnulib/import/m4/canonicalize.m4: Update.
1132         * gnulib/import/m4/codeset.m4: Update.
1133         * gnulib/import/m4/configmake.m4: Update.
1134         * gnulib/import/m4/dirent_h.m4: Update.
1135         * gnulib/import/m4/dirfd.m4: Update.
1136         * gnulib/import/m4/dirname.m4: Update.
1137         * gnulib/import/m4/double-slash-root.m4: Update.
1138         * gnulib/import/m4/eealloc.m4: Update.
1139         * gnulib/import/m4/errno_h.m4: Update.
1140         * gnulib/import/m4/exponentd.m4: Update.
1141         * gnulib/import/m4/exponentl.m4: Update.
1142         * gnulib/import/m4/extensions.m4: Update.
1143         * gnulib/import/m4/extern-inline.m4: Update.
1144         * gnulib/import/m4/fcntl-o.m4: Update.
1145         * gnulib/import/m4/float_h.m4: Update.
1146         * gnulib/import/m4/fnmatch.m4: Update.
1147         * gnulib/import/m4/fpieee.m4: Update.
1148         * gnulib/import/m4/frexp.m4: Update.
1149         * gnulib/import/m4/frexpl.m4: Update.
1150         * gnulib/import/m4/gettimeofday.m4: Update.
1151         * gnulib/import/m4/glibc21.m4: Update.
1152         * gnulib/import/m4/gnulib-cache.m4: Update.
1153         * gnulib/import/m4/gnulib-common.m4: Update.
1154         * gnulib/import/m4/gnulib-comp.m4: Update.
1155         * gnulib/import/m4/gnulib-tool.m4: Update.
1156         * gnulib/import/m4/include_next.m4: Update.
1157         * gnulib/import/m4/inttypes-pri.m4: Update.
1158         * gnulib/import/m4/inttypes.m4: Update.
1159         * gnulib/import/m4/isnand.m4: Update.
1160         * gnulib/import/m4/isnanl.m4: Update.
1161         * gnulib/import/m4/largefile.m4: Update.
1162         * gnulib/import/m4/localcharset.m4: Update.
1163         * gnulib/import/m4/locale-fr.m4: Update.
1164         * gnulib/import/m4/locale-ja.m4: Update.
1165         * gnulib/import/m4/locale-zh.m4: Update.
1166         * gnulib/import/m4/longlong.m4: Update.
1167         * gnulib/import/m4/lstat.m4: Update.
1168         * gnulib/import/m4/malloc.m4: Update.
1169         * gnulib/import/m4/malloca.m4: Update.
1170         * gnulib/import/m4/math_h.m4: Update.
1171         * gnulib/import/m4/mbrtowc.m4: Update.
1172         * gnulib/import/m4/mbsinit.m4: Update.
1173         * gnulib/import/m4/mbsrtowcs.m4: Update.
1174         * gnulib/import/m4/mbstate_t.m4: Update.
1175         * gnulib/import/m4/memchr.m4: Update.
1176         * gnulib/import/m4/memmem.m4: Update.
1177         * gnulib/import/m4/mmap-anon.m4: Update.
1178         * gnulib/import/m4/multiarch.m4: Update.
1179         * gnulib/import/m4/nocrash.m4: Update.
1180         * gnulib/import/m4/off_t.m4: Update.
1181         * gnulib/import/m4/pathmax.m4: Update.
1182         * gnulib/import/m4/readlink.m4: Update.
1183         * gnulib/import/m4/rename.m4: Update.
1184         * gnulib/import/m4/rmdir.m4: Update.
1185         * gnulib/import/m4/ssize_t.m4: Update.
1186         * gnulib/import/m4/stat.m4: Update.
1187         * gnulib/import/m4/stdbool.m4: Update.
1188         * gnulib/import/m4/stddef_h.m4: Update.
1189         * gnulib/import/m4/stdint.m4: Update.
1190         * gnulib/import/m4/stdio_h.m4: Update.
1191         * gnulib/import/m4/stdlib_h.m4: Update.
1192         * gnulib/import/m4/string_h.m4: Update.
1193         * gnulib/import/m4/strstr.m4: Update.
1194         * gnulib/import/m4/strtok_r.m4: Update.
1195         * gnulib/import/m4/sys_socket_h.m4: Update.
1196         * gnulib/import/m4/sys_stat_h.m4: Update.
1197         * gnulib/import/m4/sys_time_h.m4: Update.
1198         * gnulib/import/m4/sys_types_h.m4: Update.
1199         * gnulib/import/m4/time_h.m4: Update.
1200         * gnulib/import/m4/unistd_h.m4: Update.
1201         * gnulib/import/m4/warn-on-use.m4: Update.
1202         * gnulib/import/m4/wchar_h.m4: Update.
1203         * gnulib/import/m4/wchar_t.m4: Update.
1204         * gnulib/import/m4/wctype_h.m4: Update.
1205         * gnulib/import/m4/wint_t.m4: Update.
1206         * gnulib/import/malloc.c: Update.
1207         * gnulib/import/malloca.c: Update.
1208         * gnulib/import/malloca.h: Update.
1209         * gnulib/import/math.in.h: Update.
1210         * gnulib/import/mbrtowc.c: Update.
1211         * gnulib/import/mbsinit.c: Update.
1212         * gnulib/import/mbsrtowcs-impl.h: Update.
1213         * gnulib/import/mbsrtowcs-state.c: Update.
1214         * gnulib/import/mbsrtowcs.c: Update.
1215         * gnulib/import/memchr.c: Update.
1216         * gnulib/import/memmem.c: Update.
1217         * gnulib/import/pathmax.h: Update.
1218         * gnulib/import/readlink.c: Update.
1219         * gnulib/import/ref-add.sin: Update.
1220         * gnulib/import/ref-del.sin: Update.
1221         * gnulib/import/rename.c: Update.
1222         * gnulib/import/rmdir.c: Update.
1223         * gnulib/import/same-inode.h: Update.
1224         * gnulib/import/stat.c: Update.
1225         * gnulib/import/stdbool.in.h: Update.
1226         * gnulib/import/stddef.in.h: Update.
1227         * gnulib/import/stdint.in.h: Update.
1228         * gnulib/import/stdio.c: Update.
1229         * gnulib/import/stdio.in.h: Update.
1230         * gnulib/import/stdlib.in.h: Update.
1231         * gnulib/import/str-two-way.h: Update.
1232         * gnulib/import/streq.h: Update.
1233         * gnulib/import/string.in.h: Update.
1234         * gnulib/import/stripslash.c: Update.
1235         * gnulib/import/strnlen1.c: Update.
1236         * gnulib/import/strnlen1.h: Update.
1237         * gnulib/import/strstr.c: Update.
1238         * gnulib/import/strtok_r.c: Update.
1239         * gnulib/import/sys_stat.in.h: Update.
1240         * gnulib/import/sys_time.in.h: Update.
1241         * gnulib/import/sys_types.in.h: Update.
1242         * gnulib/import/time.in.h: Update.
1243         * gnulib/import/unistd.in.h: Update.
1244         * gnulib/import/verify.h: Update.
1245         * gnulib/import/wchar.in.h: Update.
1246         * gnulib/import/wctype.in.h: Update.
1247         * gnulib/import/gettimeofday.c: New file.
1248         * gnulib/import/m4/absolute-header.m4: New file.
1249         * gnulib/import/m4/gettimeofday.m4: New file.
1250         * gnulib/import/m4/sys_socket_h.m4: New file.
1251         * gnulib/import/m4/sys_time_h.m4: New file.
1252         * gnulib/import/stdio.c: Delete file.
1253         * gnulib/import/sys_time.in.h: New file.
1254
1255 2015-08-24  Pedro Alves  <palves@redhat.com>
1256
1257         * Makefile.in (HFILES_NO_SRCDIR): Add common/gdb_sys_time.h.
1258         * common/gdb_sys_time.h: New file.
1259         * event-loop.c: Include gdb_sys_time.h instead of sys/time.h.
1260         * gdb_select.h: Likewise.
1261         * gdb_usleep.c: Likewise.
1262         * maint.c: Likewise.
1263         * mi/mi-main.c: Likewise.
1264         * mi/mi-parse.h: Likewise.
1265         * remote-fileio.c: Likewise.
1266         * remote-m32r-sdi.c: Likewise.
1267         * remote.c: Likewise.
1268         * ser-base.c: Likewise.
1269         * ser-pipe.c: Likewise.
1270         * ser-tcp.c: Likewise.
1271         * ser-unix.c: Likewise.
1272         * symfile.c: Likewise.
1273         * symfile.c: Likewise.  Rename OSIZE to SIZE throughout.
1274         * target-memory.c: Include gdb_sys_time.h instead of sys/time.h.
1275         * utils.c: Likewise.
1276
1277 2015-08-24  Pedro Alves  <palves@redhat.com>
1278
1279         * NEWS: Mention removed support for the various ROM monitors.
1280         * Makefile.in (ALL_TARGET_OBS): Remove dbug-rom.o, dink32-rom.o,
1281         ppcbug-rom.o, m32r-rom.o, dsrec.o and monitor.o from gdb_target_obs.
1282         * configure.tgt (h8300-*-*): Remove monitor.o and m32r-rom.o from
1283         gdb_target_obs.
1284         (m68*-*-*): Remove monitor.o dbug-rom.o and dsrec.o from
1285         gdb_target_obs.
1286         (microblaze*-linux-*): Remove microblaze-rom.o, monitor.o and
1287         dsrec.o from gdb_target_obs.
1288         (microblaze*-*-*): Remove microblaze-rom.o, monitor.o and dsrec.o
1289         from gdb_target_obs.
1290         (powerpc-*-lynx*178): Remove monitor.o and dsrec.o from
1291         gdb_target_obs.
1292         (powerpc*-*-*): Remove monitor.o, dsrec.o, ppcbug-rom.o and
1293         dink32-rom.o from gdb_target_obs.
1294         (sh*-*-linux*): Remove monitor.o and dsrec.o from gdb_target_obs.
1295         (sh*): Remove monitor.o and dsrec.o from gdb_target_obs.
1296         * dbug-rom.c, dink32-rom.c, dsrec.c, m32r-rom.c, microblaze-rom.c,
1297         monitor.c, monitor.h, ppcbug-rom.c, srec.h: Delete files.
1298
1299 2015-08-21  Pedro Alves  <palves@redhat.com>
1300
1301         * frame.c (null_frame_id): Explicitly zero-initialize.
1302
1303 2015-08-21  Tom Tromey  <tromey@redhat.com>
1304
1305         * dwarf2read.c (struct dwarf2_section_info): Rename field
1306         'asection' to 'section'.
1307         (dwarf2_has_info, get_section_bfd_owner, get_section_bfd_section)
1308         (dwarf2_locate_sections, dwarf2_locate_sections)
1309         (locate_dwz_sections, locate_v1_virtual_dwo_sections)
1310         (dwarf2_locate_dwo_sections, dwarf2_locate_dwo_sections)
1311         (dwarf2_locate_v2_dwp_sections): Adjust.
1312
1313 2015-08-21  Patrick Palka  <patrick@parcs.ath.cx>
1314
1315         * top.h (gdb_in_secondary_prompt_p): Declare.
1316         * top.c (gdb_secondary_prompt_depth): Define.
1317         (gdb_in_secondary_prompt_p): Define.
1318         (gdb_readline_wrapper_cleanup): Decrement
1319         gdb_secondary_prompt_depth.
1320         (gdb_readline_wrapper): Increment gdb_secondary_prompt_depth.
1321         * tui/tui-io.c (tui_getc): Don't clear the prompt line if we
1322         are in a secondary prompt.
1323
1324 2015-08-21  Patrick Palka  <patrick@parcs.ath.cx>
1325
1326         * tui/tui-io.c (tui_getc): Use tui_putc instead of waddch to
1327         emit the newline.
1328
1329 2015-08-21  Gary Benson  <gbenson@redhat.com>
1330
1331         * gdb_bfd.c (gdb_bfd_iovec_fileio_pread): Add QUIT call.
1332
1333 2015-08-21  Gary Benson  <gbenson@redhat.com>
1334
1335         * target.h (struct target_ops) <to_fileio_open>: New argument
1336         warn_if_slow.  Update comment.  All implementations updated.
1337         (target_fileio_open_warn_if_slow): New declaration.
1338         * target.c (target_fileio_open): Renamed as...
1339         (target_fileio_open_1): ...this.  New argument warn_if_slow.
1340         Pass warn_if_slow to implementation.  Update debug printing.
1341         (target_fileio_open): New function.
1342         (target_fileio_open_warn_if_slow): Likewise.
1343         * gdb_bfd.c (gdb_bfd_iovec_fileio_open): Use new function
1344         target_fileio_open_warn_if_slow.
1345
1346 2015-08-21  Gary Benson  <gbenson@redhat.com>
1347
1348         * nat/linux-namespaces.c (linux_mntns_access_fs):
1349         Do not overwrite old_chain.
1350
1351 2015-08-20  Max Filippov  <jcmvbkbc@gmail.com>
1352
1353         * arch/xtensa.h: New file.
1354         * xtensa-linux-nat.c (gdb_proc_service.h): New #include.
1355         (ps_get_thread_area): New function.
1356         * xtensa-linux-tdep.c (xtensa_linux_init_abi): Add call to
1357         set_gdbarch_fetch_tls_load_module_address to enable TLS support.
1358         * xtensa-tdep.c (osabi.h): New #include.
1359         (xtensa_gdbarch_init): Call gdbarch_init_osabi to register
1360         xtensa-specific hooks.
1361         * xtensa-tdep.h (struct xtensa_elf_gregset_t): Add threadptr
1362         member and move the structure to arch/xtensa.h.
1363
1364 2015-08-21  Pedro Alves  <palves@redhat.com>
1365
1366         * remote.c (struct readahead_cache): New.
1367         (struct remote_state) <readahead_cache>: New field.
1368         (remote_open_1): Invalidate the cache.
1369         (readahead_cache_invalidate, readahead_cache_invalidate_fd): New
1370         functions.
1371         (remote_hostio_pwrite): Invalidate the readahead cache.
1372         (remote_hostio_pread): Rename to ...
1373         (remote_hostio_pread_vFile): ... this.
1374         (remote_hostio_pread_from_cache): New function.
1375         (remote_hostio_pread): Reimplement.
1376         (remote_hostio_close): Invalidate the readahead cache.
1377
1378 2015-08-21  Marcin CieÅ›lak <saper@saper.info>  (tiny patch)
1379
1380         PR build/18843
1381         * procfs.c: Include "filestuff.h".
1382
1383 2015-08-21  Patrick Palka  <patrick@parcs.ath.cx>
1384
1385         * tui/tui-data.h (tui_command_info): Remove fields cur_line and
1386         curch.
1387         * tui/tui-data.c (tui_clear_win_detail) [CMD_WIN]: Don't set
1388         cur_line or curch, instead call wmove().
1389         (init_win_info) [CMD_WIN]: Likewise.
1390         * tui/tui-io.c (tui_puts): Likewise. Don't read cur_line,
1391         instead call getcury().
1392         (tui_redisplay_readline): Don't set cur_line or curch.
1393         (tui_mld_erase_entire_line): Don't read cur_line, instead call
1394         getcury().
1395         (tui_cont_sig): Remove call to wmove.
1396         (tui_getc): Don't read cur_line or curch, instead call getcury()
1397         or getyx().  Don't set curch.
1398         * tui/tui-win.c (make_visible_with_new_height) [CMD_WIN]: Don't
1399         set cur_line or curch.  Always move cursor to (0,0).
1400
1401 2015-08-20  Pedro Alves  <palves@redhat.com>
1402
1403         * infrun.c (print_target_wait_results): Make extern.
1404         * infrun.h (print_target_wait_results): Declare.
1405         * remote.c (set_stop_requested_callback): Delete.
1406         (process_initial_stop_replies): New function.
1407         (remote_start_remote): Use it.
1408         (stop_reply_queue_length): New function.
1409
1410 2015-08-20  Pedro Alves  <palves@redhat.com>
1411
1412         * dwarf2read.c (process_full_comp_unit): To tell whether
1413         start_subfile managed to deduce a language, test for
1414         language_unknown instead of language_c.
1415
1416 2015-08-20  Pierre-Marie de Rodat  <derodat@adacore.com>
1417
1418         * ada-lex.l: Reset the start condition to INITIAL in the rule that
1419         matches attributes.
1420
1421 2015-08-19  Kevin Buettner  <kevinb@redhat.com>
1422
1423         * dwarf2read.c (dwarf2_string_attr): New function.
1424         (lookup_dwo_unit, process_psymtab_comp_unit_reader)
1425         (dwarf2_compute_name, dwarf2_physname, find_file_and_directory)
1426         (read_call_site_scope, namespace_name, guess_full_die_structure_name)
1427         (anonymous_struct_prefix, prepare_one_comp_unit): Use
1428         dwarf2_string_attr in place of dwarf2_attr and DW_STRING.
1429
1430 2015-08-18  Doug Evans  <dje@google.com>
1431             Adrian Sendroiu <adrian.sendroiu@freescale.com>
1432
1433         PR mi/18833
1434         * cli/cli-logging.c (pop_output_files): Don't restore redirection
1435         if MI-like.
1436         * mi/mi-out.c: #include "vec.h".
1437         (ui_filep): New type.
1438         (DEV_VEC_P (ui_filep)): New type.
1439         (struct ui_out_data) <buffer, original_buffer>: Delete.
1440         (struct ui_out_data) <streams>: New member.
1441         (mi_ui_out_impl): Add data_destroy field.
1442         (mi_field_string, mi_field_fmt): Update.
1443         (mi_flush, mi_redirect, field_separator): Update.
1444         (mi_open, mi_close): Update.
1445         (mi_out_buffered, mi_out_rewind, mi_out_put): Update.
1446         (mi_out_data_ctor, mi_out_data_dtor): New functions.
1447         (mi_out_new): Call mi_out_data_ctor.
1448
1449 2015-08-18  Sandra Loosemore  <sandra@codesourcery.com>
1450
1451         * remote.c (strprefix): New.
1452         (remote_parse_stop_reply): Use strprefix instead of strncmp
1453         to ensure exact match of keyword.
1454
1455 2015-08-18  Andrew Burgess  <andrew.burgess@embecosm.com>
1456
1457         * gdb_bfd.c (debug_bfd_cache): New variable.
1458         (show_bfd_cache_debug): New function.
1459         (gdb_bfd_open): Add debug logging.
1460         (gdb_bfd_ref): Likewise.
1461         (gdb_bfd_unref): Likewise.
1462         (_initialize_gdb_bfd): Add new set/show command.
1463         * NEWS: Mention new command.
1464
1465 2015-08-18  Andrew Burgess  <andrew.burgess@embecosm.com>
1466
1467         * gdb_bfd.c (bfd_sharing): New variable.
1468         (show_bfd_sharing): New function.
1469         (gdb_bfd_open): Check bfd_sharing variable.
1470         (_initialize_gdb_bfd): Add new set/show command.
1471         * NEWS: Mention new command.
1472
1473 2015-08-18  Andrew Burgess  <andrew.burgess@embecosm.com>
1474
1475         * gdb_bfd.c (struct gdb_bfd_data): Add size, inode, and device id
1476         field.
1477         (struct gdb_bfd_cache_search): Likewise.
1478         (eq_bfd): Compare the size, inode, and device id fields.
1479         (gdb_bfd_open): Initialise the size, inode, and device id fields.
1480         (gdb_bfd_ref): Likewise.
1481         (gdb_bfd_unref): Likewise.
1482
1483 2015-08-18  Pedro Alves  <palves@redhat.com>
1484
1485         * linux-nat.c (linux_nat_always_non_stop_p): If the linux_ops
1486         target implements to_always_non_stop_p, call it.
1487         * x86-linux-nat.c (x86_linux_always_non_stop_p): New function.
1488         (x86_linux_create_target): Install it as to_always_non_stop_p
1489         method.
1490
1491 2015-08-17  Doug Evans  <dje@google.com>
1492
1493         * ui-out.c (default_ui_out_impl): Add comment.
1494
1495 2015-08-17  Iain Buclaw  <ibuclaw@gdcproject.org>
1496
1497         * d-exp.y (type_aggregate_p): New function.
1498         (PrimaryExpression : TypeExp '.' IdentifierExp): Use it.
1499         (classify_inner_name): Likewise.
1500         * d-namespace.c (d_lookup_nested_symbol): Handle TYPE_CODE_ENUM.
1501
1502 2015-08-15  Doug Evans  <xdje42@gmail.com>
1503
1504         * psymtab.c (add_psymbol_to_bcache): Remove "val" arg.  All callers
1505         updated.
1506         (add_psymbol_to_list): Ditto.
1507
1508 2015-08-15  Doug Evans  <xdje42@gmail.com>
1509
1510         * dbxread.c (dbx_end_psymtab): Renamed from end_psymtab.  All callers
1511         updated.  Call end_psymtab_common.
1512         * dwarf2read.c (process_psymtab_comp_unit_reader): Call
1513         end_psymtab_common.
1514         (build_type_psymtabs_reader): Ditto.
1515         * psympriv.h (sort_pst_symbols): Delete.
1516         (end_psymtab_common): Declare.
1517         * psymtab.c (sort_pst_symbols): Make static.
1518         (end_psymtab_common): New function.
1519         * xcoffread.c (xcoff_end_psymtab): Call end_psymtab_common.
1520
1521 2015-08-15  Doug Evans  <xdje42@gmail.com>
1522
1523         * defs.h (LANGUAGE_BITS): Define.
1524         * psympriv.h (partial_symbol) <domain>: Use SYMBOL_DOMAIN_BITS.
1525         (partial_symbol) <aclass>: Use SYMBOL_ACLASS_BITS.
1526         * symtab.h (general_symbol_info> <language>: Usage LANGUAGE_BITS.
1527         (minimal_symbol_type): Add nr_minsym_types.
1528         (MINSYM_TYPE_BITS): Define.
1529         (minimal_symbol) <type>: Use MINSYM_TYPE_BITS.
1530         (domain_enum_tag): Add NR_DOMAINS.
1531         (SYMBOL_DOMAIN_BITS): Change from 4 to 3.
1532         (SYMBOL_ACLASS_BITS): Define from 6 to 5.
1533
1534 2015-08-15  Doug Evans  <xdje42@gmail.com>
1535
1536         * objfiles.h: Whitespace cleanup.
1537         * psympriv.h: Whitespace cleanup.
1538         * psymtab.c: Whitespace/coding convention cleanup.
1539
1540 2015-08-15  Patrick Palka  <patrick@parcs.ath.cx>
1541
1542         * inferior.c (detach_inferior_command): Don't call
1543         any_thread_of_process when pid is 0.
1544         (kill_inferior_command): Likewise.
1545
1546 2015-08-14  Doug Evans  <xdje42@gmail.com>
1547
1548         PR gdb/11833
1549         * NEWS: Document new /s modifier for the disassemble command.
1550         * cli/cli-cmds.c (disassemble_command): Add support for /s.
1551         (_initialize_cli_cmds): Update online docs of disassemble command.
1552         * disasm.c: #include "source.h".
1553         (struct deprecated_dis_line_entry): Renamed from dis_line_entry.
1554         All uses updated.
1555         (dis_line_entry): New struct.
1556         (hash_dis_line_entry, eq_dis_line_entry): New functions.
1557         (allocate_dis_line_table): New functions.
1558         (maybe_add_dis_line_entry, line_has_code_p): New functions.
1559         (dump_insns): New arg end_pc.  All callers updated.
1560         (do_mixed_source_and_assembly_deprecated): Renamed from
1561         do_mixed_source_and_assembly.  All callers updated.
1562         (do_mixed_source_and_assembly): New function.
1563         (gdb_disassembly): Handle /s (DISASSEMBLY_SOURCE).
1564         * disasm.h (DISASSEMBLY_SOURCE_DEPRECATED): Renamed from
1565         DISASSEMBLY_SOURCE.  All uses updated.
1566         (DISASSEMBLY_SOURCE): New macro.
1567         * mi/mi-cmd-disas.c (mi_cmd_disassemble): New modes 4,5.
1568
1569 2015-08-14  Keith Seitz  <keiths@redhat.com>
1570
1571         * d-exp.y (PrimaryExpression : TypeExp '.' IdentifierExp): Rename
1572         `typename' to `type_name' to avoid C++ reserved word.
1573
1574 2015-08-14  Keith Seitz  <keiths@redhat.com>
1575
1576         * location.c (EL_TYPE, EL_LINESPEC, EL_PROBE, EL_ADDRESS)
1577         (EL_EXPLICIT, EL_STRING): Change macro parameter to "P" to
1578         silence ARI errors.
1579
1580 2015-08-14  Iain Buclaw  <ibuclaw@gdcproject.org>
1581
1582         * d-exp.y (PrimaryExpression : TypeExp '.' IdentifierExp): Use
1583         xstrprintf instead of malloc and sprintf.
1584         (PrimaryExpression : IdentifierExp): Avoid operator at end of line.
1585         (lex_one_token): Likewise.
1586
1587 2015-08-14  Matthew Fortune  <matthew.fortune@imgtec.com>
1588
1589         * solib-svr4.c (read_program_header): Add base_addr argument to
1590         report the runtime address of the segment.
1591         (find_program_interpreter): Update read_program_header call to pass
1592         a NULL pointer for the new argument.
1593         (scan_dyntag): Add ptr_addr argument to report the runtime address
1594         of the tag payload.
1595         (scan_dyntag_auxv): Likewise and use thew new base_addr argument of
1596         read_program_header to get the base address of the dynamic segment.
1597         (elf_locate_base): Update uses of scan_dyntag, scan_dyntag_auxv and
1598         read_program_header.
1599         (elf_locate_base): Scan for and handle DT_MIPS_RLD_MAP_REL.
1600
1601 2015-08-14  Matthew Fortune  <matthew.fortune@imgtec.com>
1602
1603         * MAINTAINERS (Write After Approval): Add Matthew Fortune.
1604
1605 2015-08-13  Iain Buclaw  <ibuclaw@gdcproject.org>
1606
1607         * d-exp.y (%union): Add voidval.
1608         (%token): Add UNKNOWN_NAME as a token to represent an unclassified
1609         name in the lexing stage.
1610         (PostfixExpression): Move symbol completion handling in grammar here
1611         from PrimaryExpression.
1612         (PrimaryExpression): Move routines to handle resolving identifier
1613         tokens in the grammar here from push_expression_name.
1614         (IdentifierExp): Remove the handling of alternating '.' and identifier
1615         tokens.
1616         (TypeExp): Allow TypeExp to be wrapped in parenthesis in the grammar.
1617         (BasicType): Remove C-style typename rules.
1618         (d_type_from_name, d_module_from_name, push_variable)
1619         (push_fieldnames, push_type_name, push_module_name)
1620         (push_expression_name): Remove.
1621         (lex_one_token): Rename from yylex.  Replace pstate with par_state.
1622         (token_and_value): New type.
1623         (token_fifo, popping, name_obstack): New globals.
1624         (classify_name): New function.
1625         (classify_inner_name): Likewise.
1626         (yylex): Likewise.
1627         (d_parse): Initialize token_fifo, popping and name_obstack.
1628
1629 2015-08-13  Iain Buclaw  <ibuclaw@gdcproject.org>
1630
1631         * Makefile.in (SFILES): Add d-namespace.c.
1632         (COMMON_OBS): Add d-namespace.o.
1633         * d-lang.c (d_language_defn): Use d_lookup_symbol_nonlocal as the
1634         la_lookup_symbol_nonlocal callback function pointer.
1635         * d-lang.h (d_lookup_symbol_nonlocal): New declaration.
1636         (d_lookup_nested_symbol): New declaration.
1637         * d-namespace.c: New file.
1638
1639 2015-08-13  Pedro Alves  <palves@redhat.com>
1640
1641         * python/py-unwind.c (pyuw_sniffer): Install the invalidate
1642         cleanup after the decref cleanup, not before.
1643
1644 2015-08-13  Pierre-Marie de Rodat  <derodat@adacore.com>
1645
1646         * ada-lang.c: Include namespace.h
1647         (aux_add_nonlocal_symbols): Fix a function name in comment.
1648         (ada_add_block_renamings): New.
1649         (add_nonlocal_symbols): Add global renamings handling.
1650         (ada_lookup_symbol_list_worker): Move the symbol lookup part
1651         to...
1652         (ada_add_all_symbols): ... this new function.
1653         (ada_add_block_symbols): Try to match the input name against the
1654         "using directives list", perform a recursive symbol lookup on
1655         the matched declarations.
1656         * block.h (struct block): Move the_namespace to top-level as
1657         namespace_info. Remove the language_specific field.
1658         (BLOCK_NAMESPACE): Update access to the namespace_info field.
1659         * buildsym.h (using_directives): Rename into...
1660         (local_using_directives): ... this.
1661         (global_using_directives): New.
1662         (struct context_stack): Rename the using_directives field into
1663         local_using_directives.
1664         * buildsym.c (finish_block_internal): Deal with the proper
1665         using directives repository (local or global).
1666         (prepare_for_building): Reset local_using_directives. Assert
1667         that there is no pending global using directive.
1668         (reset_symtab_globals): Reset global_using_directives and
1669         local_using_directives.
1670         (end_symtab_get_static_block): Don't ignore symtabs that have
1671         only using directives.
1672         (push_context): Update references to local_using_directives.
1673         (buildsym_init): Do not reset using_directives.
1674         * cp-support.c: Include namespace.h.
1675         * cp-support.h (struct using_direct): Move to namespace.h.
1676         (cp_add_using_directives): Move to namespace.h.
1677         * cp-namespace.c: Include namespace.h
1678         (cp_add_using_directive): Move to namespace.c, rename it to
1679         add_using_directive, add a "using_directives" argument and use
1680         it as the pending using directives repository.  All callers
1681         updated.
1682         * dwarf2read.c (using_directives): New.
1683         (read_import_statement): Call using_directives.
1684         (read_func_scope): Update references to local_using_directives.
1685         (read_lexical_block_scope): Likewise.
1686         (read_namespace): Update the heading comment, call
1687         using_directives.
1688         * namespace.h: New file.
1689         * namespace.c: New file.
1690         * Makefile.in (SFILES): Add namespace.c.
1691         (COMMON_OBS): Add namespace.o
1692
1693 2015-08-12  Joel Brobecker  <brobecker@adacore.com>
1694
1695         * amd64-tdep.c (amd64_displaced_step_fixup): Fix the mask used to
1696         compute RETADDR.
1697
1698 2015-08-12  Keith Seitz  <keiths@redhat.com>
1699
1700         * break-catch-throw.c (re_set_exception_catchpoint) Rename
1701         reserved C++ keyword "explicit" to "explicit_loc".
1702         * breakpoint.c (create_overlay_event_breakpoint)
1703         (create_longjmp_master_breakpoint)
1704         (create_std_terminate_master_breakpoint)
1705         (create_exception_master_breakpoint, update_static_tracepoint):
1706         Rename reserved C++ keyword "explicit" to "explicit_loc".
1707         * completer.c (collect_explicit_location_matches)
1708         (explicit_location_completer): Rename reserved C++ keyword
1709         "explicit" to "explicit_loc".
1710         * linespec.c (struct linespec) <explicit>: Rename to "explicit_loc".
1711         (canonicalize_linespec, create_sals_line_offset)
1712         (convert_linespec_to_sals, convert_explicit_location_to_sals)
1713         (event_location_to_sals, decode_objc): Rename reserved C++ keyword
1714         "explicit" to "explicit_loc".
1715         * location.c (struct event_location) <explicit>: Rename to
1716         "explicit_loc".
1717         (initialize_explicit_location, new_explicit_location)
1718         (explicit_location_to_string_internal, explicit_location_to_linespec):
1719         Rename reserved C++ keyword "explicit" to "explicit_loc".
1720         * location.h (explicit_location_to_string)
1721         (explicit_location_to_linespec, initialize_explicit_location)
1722         (new_explicit_location): Rename reserved C++ keyword "explicit"
1723         to "explicit_loc".
1724         * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Rename reserved C++
1725         keyword "explicit" to "explicit_loc".
1726
1727 2015-08-12  Keith Seitz  <keiths@redhat.com>
1728
1729         * python/python.c (gdbpy_decode_line): Initialize `location' to NULL
1730         and only call decode_line_1 when it is non-NULL.
1731
1732 2015-08-12  Luis Machado  <lgustavo@codesourcery.com>
1733
1734         * breakpoint.c (bp_loc_is_permanent): Return 0 when breakpoint
1735         location address is not meaningful.
1736         (breakpoint_address_is_meaningful): Update comment.
1737
1738 2015-08-11  Keith Seitz  <keiths@redhat.com>
1739
1740         * NEWS: Mention explicit locations.
1741         * breakpoint.c [LOCATION_HELP_STRING]: New macro.
1742         [BREAK_ARGS_HELP]: Use LOCATION_HELP_STRING.
1743         (_initialize_breakpoint): Update documentation for
1744         "clear", "break", "trace", "strace", "ftrace", and "dprintf".
1745
1746 2015-08-11  Keith Seitz  <keiths@redhat.com>
1747
1748         * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Add support for
1749         explicit locations, options "--source", "--function",
1750         "--label", and "--line".
1751
1752 2015-08-11  Keith Seitz  <keiths@redhat.com>
1753
1754         * completer.c: Include location.h.
1755         (enum match_type): New enum.
1756         (location_completer): Rename to ...
1757         (linespec_completer): ... this.
1758         (collect_explicit_location_matches, backup_text_ptr)
1759         (explicit_location_completer): New functions.
1760         (location_completer): "New" function; handle linespec
1761         and explicit location completions.
1762         (complete_line_internal): Remove all location completer-specific
1763         handling.
1764         * linespec.c (linespec_lexer_lex_keyword, is_ada_operator)
1765         (find_toplevel_char): Export.
1766         (linespec_parse_line_offset): Export.
1767         Issue error if STRING is not numerical.
1768         (gdb_get_linespec_parser_quote_characters): New function.
1769         * linespec.h (linespec_parse_line_offset): Declare.
1770         (get_gdb_linespec_parser_quote_characters): Declare.
1771         (is_ada_operator): Declare.
1772         (find_toplevel_char): Declare.
1773         (linespec_lexer_lex_keyword): Declare.
1774         * location.c (explicit_to_event_location): New function.
1775         (explicit_location_lex_one): New function.
1776         (string_to_explicit_location): New function.
1777         (string_to_event_location): Handle explicit locations.
1778         * location.h (explicit_to_event_location): Declare.
1779         (string_to_explicit_location): Declare.
1780
1781 2015-08-11  Keith Seitz  <keiths@redhat.com>
1782
1783         * break-catch-throw.c (re_set_exception_catchpoint): Convert
1784         linespec into explicit location.
1785         * breakpoint.c (create_overlay_breakpoint)
1786         (create_longjmp_master_breakpoint)
1787         (create_std_terminate_master_breakpoint)
1788         (create_exception_master_breakpoint): Convert linespec into explicit
1789         location.
1790         (update_static_tracepoint): Convert linespec into explicit location.
1791         * linespec.c (enum offset_relative_sign, struct line_offset): Move
1792         location.h.
1793         (struct linespec) <expression, expr_pc, source_filename>
1794         <function_name, label_name, line_offset>: Replace with ...
1795         <explicit>: ... this.
1796         <is_linespec>: New member.
1797         (PARSER_EXPLICIT): New accessor macro.
1798         (undefined_label_error): New function.
1799         (source_file_not_found_error): New function.
1800         (linespec_parse_basic): The parser result is now an explicit location.
1801         Use PARSER_EXPLICIT to access it.
1802         Use undefined_label_error.
1803         (canonicalize_linespec): Convert canonical linespec into explicit
1804         location.
1805         Move string representation of location to explicit_location_to_linespec
1806         and use it and explicit_location_to_string to save string
1807         representations of the canonical location.
1808         (create_sals_line_offset, convert_linespec_to_sals): `ls' contains an
1809         explicit location.  Update all references.
1810         (convert_explicit_location_to_sals): New function.
1811         (parse_linespec): Use PARSER_EXPLICIT to access the parser
1812         result's explicit location.
1813         (linespec_state_constructor): Initialize is_linespec.
1814         Use PARSER_EXPLICIT.
1815         (linespec_parser_delete): Use PARSER_EXPLICIT to access the parser's
1816         result.
1817         (event_location_to_sals): For linespec locations, set is_linespec.
1818         Handle explicit locations.
1819         (decode_objc): 'ls' contains an explicit location now. Update all
1820         references.
1821         (symtabs_from_filename): Use source_file_not_found_error.
1822         * location.c (struct event_location.u) <explicit>: New member.
1823         (initialize_explicit_location): New function.
1824         (initialize_event_location): Initialize explicit locations.
1825         (new_explicit_location, get_explicit_location)
1826         (get_explicit_location_const): New functions.
1827         (explicit_to_string_internal): New function; most of contents moved
1828         from canonicalize_linespec.
1829         (explicit_location_to_string): New function.
1830         (explicit_location_to_linespec): New function.
1831         (copy_event_location, delete_event_location)
1832         (event_location_to_string_const, event_location_empty_p): Handle
1833         explicit locations.
1834         * location.h (enum offset_relative_sign, struct line_offset): Move
1835         here from linespec.h.
1836         (enum event_location_type): Add EXPLICIT_LOCATION.
1837         (struct explicit_location): New structure.
1838         (explicit_location_to_string): Declare.
1839         (explicit_location_to_linespec): Declare.
1840         (new_explicit_location, get_explicit_locationp
1841         (get_explicit_location_const, initialize_explicit_location): Declare.
1842
1843 2015-08-11  Keith Seitz  <keiths@redhat.com>
1844
1845         * break-catch-throw.c (re_set_exception_catchpoint): Convert
1846         linespec for stap probe to probe location.
1847         * breakpoint.c (create_longjmp_master_breakpoint)
1848         (create_exception_master_breakpoint): Likewise.
1849         (break_command_1): Remove local variable `arg_cp'.
1850         Check location type to set appropriate breakpoint ops methods.
1851         (trace_command): Likewise.
1852         * linespec.c (event_location_to_sals): Assert on probe locations.
1853         * location.c (EL_PROBE): Add macro definition.
1854         (new_probe_location, get_probe_location): New functions.
1855         (copy_event_location, delete_event_location, event_location_to_string)
1856         (string_to_event_location, event_location_empty_p): Handle probe
1857         locations.
1858         * location.h (enum event_location_type): Add PROBE_LOCATION.
1859         (new_probe_location, get_probe_location): Declare.
1860         * probe.c (parse_probes): Assert that LOCATION is a probe location.
1861         Convert linespec into probe location.
1862
1863 2015-08-11  Keith Seitz  <keiths@redhat.com>
1864
1865         * breakpoint.c (create_thread_event_breakpoint, init_breakpoint_sal):
1866         Convert linespec to address location.
1867         * linespec.c (canonicalize_linespec): Do not handle address
1868         locations here.
1869         (convert_address_location_to_sals): New function; contents moved
1870         from ...
1871         (convert_linespc_to_sals): ... here.
1872         (parse_linespec): Remove address locations from linespec grammar.
1873         Remove handling of address locations.
1874         (linespec_lex_to_end): Remove handling of address linespecs.
1875         (event_location_to_sals): Handle ADDRESS_LOCATION.
1876         (linespec_expression_to_pc): Export.
1877         * linespec.h (linespec_expression_to_pc): Add declaration.
1878         * location.c (struct event_location.u) <address>: New member.
1879         (new_address_location, get_address_location): New functions.
1880         (copy_event_location, delete_event_location, event_location_to_string)
1881         (string_to_event_location, event_location_empty_p): Handle address
1882         locations.
1883         * location.h (enum event_location_type): Add ADDRESS_LOCATION.
1884         (new_address_location, get_address_location): Declare.
1885         * python/py-finishbreakpoint.c (bpfinishpy_init): Convert linespec
1886         to address location.
1887         * spu-tdep.c (spu_catch_start): Likewise.
1888
1889 2015-08-11  Keith Seitz  <keiths@redhat.com>
1890
1891         * ax-gdb.c: Include location.h.
1892         (agent_command_1) Use linespec location instead of address
1893         string.
1894         * break-catch-throw.c: Include location.h.
1895         (re_set_exception_catchpoint): Use linespec locations instead
1896         of address strings.
1897         * breakpoint.c: Include location.h.
1898         (create_overlay_event_breakpoint, create_longjmp_master_breakpoint)
1899         (create_std_terminate_master_breakpoint)
1900         (create_exception_master_breakpoint, update_breakpoints_after_exec):
1901         Use linespec location instead of address string.
1902         (print_breakpoint_location):  Use locations and
1903         event_location_to_string.
1904         Print extra_string for pending locations for non-MI streams.
1905         (print_one_breakpoint_location): Use locations and
1906         event_location_to_string.
1907         (init_raw_breakpoint_without_location): Initialize b->location.
1908         (create_thread_event_breakpoint): Use linespec location instead of
1909         address string.
1910         (init_breakpoint_sal): Likewise.
1911         Only save extra_string if it is non-NULL and not the empty string.
1912         Use event_location_to_string instead of `addr_string'.
1913         Constify `p' and `endp'.
1914         Use skip_spaces_const/skip_space_const instead of non-const versions.
1915         Copy the location into the breakpoint.
1916         If LOCATION is NULL, save the breakpoint address as a linespec location
1917         instead of an address string.
1918         (create_breakpoint_sal): Change `addr_string' parameter to a struct
1919         event_location. All uses updated.
1920         (create_breakpoints_sal): Likewise for local variable `addr_string'.
1921         (parse_breakpoint_sals): Use locations instead of address strings.
1922         Remove check for empty linespec with conditional.
1923         Refactor.
1924         (decode_static_tracepoint_spec): Make argument const and update
1925         function.
1926         (create_breakpoint): Change `arg' to a struct event_location and
1927         rename.
1928         Remove `copy_arg' and `addr_start'.
1929         If EXTRA_STRING is empty, set it to NULL.
1930         Don't populate `canonical' for pending breakpoints.
1931         Pass `extra_string' to find_condition_and_thread.
1932         Clear `extra_string' if `rest' was NULL.
1933         Do not error with "garbage after location" if setting a dprintf
1934         breakpoint.
1935         Copy the location into the breakpoint instead of an address string.
1936         (break_command_1): Use string_to_event_location and pass this to
1937         create_breakpoint instead of an address string.
1938         Check against `arg_cp' for a probe linespec.
1939         (dprintf_command): Use string_to_event_location and pass this to
1940         create_breakpoint instead of an address string.
1941         Throw an exception if no format string was specified.
1942         (print_recreate_ranged_breakpoint): Use event_location_to_string
1943         instead of address strings.
1944         (break_range_command, until_break_command)
1945         (init_ada_exception_breakpoint): Use locations instead
1946         of address strings.
1947         (say_where): Print out extra_string for pending locations.
1948         (base_breakpoint_dtor): Delete `location' and `location_range_end' of
1949         the breakpoint.
1950         (base_breakpoint_create_sals_from_location): Use struct event_location
1951         instead of address string.
1952         Remove `addr_start' and `copy_arg' parameters.
1953         (base_breakpoint_decode_location): Use struct event_location instead of
1954         address string.
1955         (bkpt_re_set): Use locations instead of address strings.
1956         Use event_location_empty_p to check for unset location.
1957         (bkpt_print_recreate): Use event_location_to_string instead of
1958         an address string.
1959         Print out extra_string for pending locations.
1960         (bkpt_create_sals_from_location, bkpt_decode_location)
1961         (bkpt_probe_create_sals_from_location): Use struct event_location
1962         instead of address string.
1963         (bkpt_probe_decode_location): Use struct event_location instead of
1964         address string.
1965         (tracepoint_print_recreate): Use event_location_to_string to
1966         recreate the tracepoint.
1967         (tracepoint_create_sals_from_location, tracepoint_decode_location)
1968         (tracepoint_probe_create_sals_from_location)
1969         (tracepoint_probe_decode_location): Use struct event_location
1970         instead of address string.
1971         (dprintf_print_recreate): Use event_location_to_string to recreate
1972         the dprintf.
1973         (dprintf_re_set): Remove check for valid/missing format string.
1974         (strace_marker_create_sals_from_location)
1975         (strace_marker_create_breakpoints_sal, strace_marker_decode_location)
1976         (update_static_tracepoint): Use struct event_location instead of
1977         address string.
1978         (location_to_sals): Likewise.
1979         Pass `extra_string' to find_condition_and_thread.
1980         For newly resolved pending breakpoint locations, clear the location's
1981         string representation.
1982         Assert that the breakpoint's condition string is NULL when
1983         condition_not_parsed.
1984         (breakpoint_re_set_default, create_sals_from_location_default)
1985         (decode_location_default, trace_command, ftrace_command)
1986         (strace_command, create_tracepoint_from_upload): Use locations
1987         instead of address strings.
1988         * breakpoint.h (struct breakpoint_ops) <create_sals_from_location>:
1989         Use struct event_location instead of address string.
1990         Update all uses.
1991         <decode_location>: Likewise.
1992         (struct breakpoint) <addr_string>: Change to struct event_location
1993         and rename `location'.
1994         <addr_string_range_end>: Change to struct event_location and rename
1995         `location_range_end'.
1996         (create_breakpoint): Use struct event_location instead of address
1997         string.
1998         * cli/cli-cmds.c: Include location.h.
1999         (edit_command, list_command): Use locations instead of address strings.
2000         * elfread.c: Include location.h.
2001         (elf_gnu_ifunc_resolver_return_stop): Use event_location_to_string.
2002         * guile/scm-breakpoint.c: Include location.h.
2003         (bpscm_print_breakpoint_smob): Use event_location_to_string.
2004         (gdbscm_register_breakpoint): Use locations instead of address
2005         strings.
2006         * linespec.c: Include location.h.
2007         (struct ls_parser) <stream>: Change to const char *.
2008         (PARSER_STREAM): Update.
2009         (lionespec_lexer_lex_keyword): According to find_condition_and_thread,
2010         keywords must be followed by whitespace.
2011         (canonicalize_linespec): Save a linespec location into `canonical'.
2012         Save a canonical linespec into `canonical'.
2013         (parse_linespec): Change `argptr' to const char * and rename `arg'.
2014         All uses updated.
2015         Update function description.
2016         (linespec_parser_new): Initialize `parser'.
2017         Update initialization of  parsing stream.
2018         (event_location_to_sals): New function.
2019         (decode_line_full): Change `argptr' to a struct event_location and
2020         rename it `location'.
2021         Use locations instead of address strings.
2022         Call event_location_to_sals instead of parse_linespec.
2023         (decode_line_1): Likewise.
2024         (decode_line_with_current_source, decode_line_with_last_displayed)
2025         Use locations instead of address strings.
2026         (decode_objc): Likewise.
2027         Change `argptr' to const char * and rename `arg'.
2028         (destroy_linespec_result): Delete the linespec result's location
2029         instead of freeing the address string.
2030         * linespec.h (struct linespec_result) <addr_string>: Change to
2031         struct event_location and rename to ...
2032         <location>: ... this.
2033         (decode_line_1, decode_line_full): Change `argptr' to struct
2034         event_location.  All callers updated.
2035         * mi/mi-cmd-break.c: Include language.h, location.h, and linespec.h.
2036         (mi_cmd_break_insert_1): Use locations instead of address strings.
2037         Throw an error if there was "garbage" at the end of the specified
2038         linespec.
2039         * probe.c: Include location.h.
2040         (parse_probes): Change `argptr' to struct event_location.
2041         Use event locations instead of address strings.
2042         * probe.h (parse_probes): Change `argptr' to struct event_location.
2043         * python/py-breakpoint.c: Include location.h.
2044         (bppy_get_location): Constify local variable `str'.
2045         Use event_location_to_string.
2046         (bppy_init): Use locations instead of address strings.
2047         * python/py-finishbreakpoint.c: Include location.h.
2048         (bpfinishpy_init): Remove local variable `addr_str'.
2049         Use locations instead of address strings.
2050         * python/python.c: Include location.h.
2051         (gdbpy_decode_line): Use locations instead of address strings.
2052         * remote.c: Include location.h.
2053         (remote_download_tracepoint): Use locations instead of address
2054         strings.
2055         * spu-tdep.c: Include location.h.
2056         (spu_catch_start): Remove local variable `buf'.
2057         Use locations instead of address strings.
2058         * tracepoint.c: Include location.h.
2059         (scope_info): Use locations instead of address strings.
2060         (encode_source_string): Constify parameter `src'.
2061         * tracepoint.h (encode_source_string): Likewise.
2062
2063 2015-08-11  Keith Seitz  <keiths@redhat.com>
2064
2065         * Makefile.in (SFILES): Add location.c.
2066         (HFILES_NO_SRCDIR): Add location.h.
2067         (COMMON_OBS): Add location.o.
2068         * linespec.c (linespec_lex_to_end): New function.
2069         * linespec.h (linespec_lex_to_end): Declare.
2070         * location.c: New file.
2071         * location.h: New file.
2072
2073 2015-08-11  Keith Seitz  <keiths@redhat.com>
2074
2075         * breakpoint.h (struct breakpoint_ops) <create_sals_from_address>:
2076         Renamed to create_sals_from_location.
2077         <decode_linespec>: Renamed to decode_location.
2078         Update all callers.
2079         * breakpoint.c (create_sals_from_address_default): Renamed to ...
2080         (create_sals_from_location_default): ... this.
2081         (addr_string_to_sals): Renamed to ...
2082         (location_to_sals): ... this.
2083         (decode_linespec_default): Renamed to ...
2084         (decode_location_default): ... this.
2085         (base_breakpoint_create_sals_from_address): Renamed to ...
2086         (base_breakpoint_create_sals_from_location): ... this.
2087         (bkpt_create_sals_from_address): Renamed to ...
2088         (bkpt_create_sals_from_location): ... this.
2089         (bkpt_decode_linespec): Renamed to ...
2090         (bkpt_decode_location): ... this.
2091         (bkpt_probe_create_sals_from_address): Renamed to ...
2092         (bkpt_probe_create_sals_from_location): ... this.
2093         (tracepoint_create_sals_from_address): Renamed to ...
2094         (tracepoint_create_sals_from_location): ... this.
2095         (tracepoint_decode_linespec): Renamed to ...
2096         (tracepoint_decode_location): ... this.
2097         (tracepoint_probe_create_sals_from_address): Renamed to ...
2098         (tracepoint_probe_create_sals_from_location): ... this.
2099         (tracepoint_probe_decode_linespec): Renamed to ...
2100         (tracepoint_probe_decode_location): ... this.
2101         (strace_marker_create_sals_from_address): Renamed to ...
2102         (strace_marker_create_sals_from_location): ... this.
2103         (decode_linespec_default): Renamed to ...
2104         (decode_location_default): ... this.
2105
2106 2015-08-10  Doug Evans  <dje@google.com>
2107             Keith Seitz  <keiths@redhat.com>
2108
2109         PR gdb/17960
2110         * symtab.c (make_file_symbol_completion_list_1): Renamed from
2111         make_file_symbol_completion_list and made static.
2112         (make_file_symbol_completion_list): New function.
2113
2114 2015-08-10  Joel Brobecker  <brobecker@adacore.com>
2115
2116         * infrun.c (follow_fork, displaced_step_prepare, resume): Remove
2117         trailing new-line at end of warning message.
2118         (proceed): Add i18n marker to error messages.
2119
2120 2015-08-07  Pedro Alves  <palves@redhat.com>
2121
2122         * linux-nat.c (linux_nat_always_non_stop_p): Return 1.
2123
2124 2015-08-07  Pedro Alves  <palves@redhat.com>
2125
2126         * s390-linux-tdep.c (is_non_branch_ril)
2127         (s390_displaced_step_copy_insn): New functions.
2128         (s390_displaced_step_fixup): Update comment.
2129         (s390_gdbarch_init): Install s390_displaced_step_copy_insn as
2130         gdbarch_displaced_step_copy_insn hook.
2131
2132 2015-08-07  Pedro Alves  <palves@redhat.com>
2133
2134         * infrun.c (displaced_step_prepare_throw): Return -1 if
2135         gdbarch_displaced_step_copy_insn returns NULL.  Update intro
2136         comment.
2137         * rs6000-tdep.c (LWARX_MASK, LWARX_INSTRUCTION, LDARX_INSTRUCTION)
2138         (STWCX_MASK, STWCX_INSTRUCTION, STDCX_INSTRUCTION): Move higher up
2139         in file.
2140         (ppc_displaced_step_copy_insn): New function.
2141         (ppc_displaced_step_fixup): Update comment.
2142         (rs6000_gdbarch_init): Install ppc_displaced_step_copy_insn as
2143         gdbarch_displaced_step_copy_insn hook.
2144         * gdbarch.sh (displaced_step_copy_insn): Document what happens on
2145         NULL return.
2146         * gdbarch.h: Regenerate.
2147
2148 2015-08-07  Pedro Alves  <palves@redhat.com>
2149
2150         * inferior.h (struct inferior) <displaced_stepping_failed>: New
2151         field.
2152         * infrun.c (use_displaced_stepping_now_p): New parameter 'inf'.
2153         Return false if dispaced stepping failed before.
2154         (resume): Pass the current inferior to
2155         use_displaced_stepping_now_p.  Wrap displaced_step_prepare in
2156         TRY/CATCH.  If we get a MEMORY_ERROR, set the inferior's
2157         displaced_stepping_failed flag, and fall back to an in-line
2158         step-over.
2159
2160 2015-08-07  Pedro Alves  <palves@redhat.com>
2161
2162         * darwin-nat.c (darwin_stop): Rename to ...
2163         (darwin_interrupt): ... this.
2164         (_initialize_darwin_inferior): Adjust.
2165         * gnu-nat.c (gnu_stop): Delete.
2166         (gnu_target): Don't install gnu_stop.
2167         * inf-ptrace.c (inf_ptrace_stop): Rename to ...
2168         (inf_ptrace_interrupt): ... this.
2169         (inf_ptrace_target): Adjust.
2170         * infcmd.c (interrupt_target_1): Use target_interrupt instead of
2171         target_stop.
2172         * linux-nat (linux_nat_stop): Rename to ...
2173         (linux_nat_interrupt): ... this.
2174         (linux_nat_stop): Reimplement.
2175         (linux_nat_add_target): Install linux_nat_interrupt.
2176         * nto-procfs.c (nto_interrupt_twice): Rename to ...
2177         (nto_handle_sigint_twice): ... this.
2178         (nto_interrupt): Rename to ...
2179         (nto_handle_sigint): ... this.  Call target_interrupt instead of
2180         target_stop.
2181         (procfs_wait): Adjust.
2182         (procfs_stop): Rename to ...
2183         (procfs_interrupt): ... this.
2184         (init_procfs_targets): Adjust.
2185         * procfs.c (procfs_stop): Rename to ...
2186         (procfs_interrupt): ... this.
2187         (procfs_target): Adjust.
2188         * remote-m32r-sdi.c (m32r_stop): Rename to ...
2189         (m32r_interrupt): ... this.
2190         (init_m32r_ops): Adjust.
2191         * remote-sim.c (gdbsim_stop_inferior): Rename to ...
2192         (gdbsim_interrupt_inferior): ... this.
2193         (gdbsim_stop): Rename to ...
2194         (gdbsim_interrupt): ... this.
2195         (gdbsim_cntrl_c): Adjust.
2196         (init_gdbsim_ops): Adjust.
2197         * remote.c (sync_remote_interrupt): Adjust comments.
2198         (remote_stop_as): Rename to ...
2199         (remote_interrupt_as): ... this.
2200         (remote_stop): Adjust comment.
2201         (remote_interrupt): New function.
2202         (init_remote_ops): Install remote_interrupt.
2203         * target.c (target_interrupt): New function.
2204         * target.h (struct target_ops) <to_interrupt>: New field.
2205         (target_interrupt): New declaration.
2206         * windows-nat.c (windows_stop): Rename to ...
2207         (windows_interrupt): ... this.
2208         * target-delegates.c: Regenerate.
2209
2210 2015-08-07  Pedro Alves  <palves@redhat.com>
2211
2212         * signal-while-stepping-over-bp-other-thread.exp: Expect "restart
2213         threads" as alternative to "switching back to stepped thread".
2214
2215 2015-08-07  Pedro Alves  <palves@redhat.com>
2216
2217         * NEWS: Mention "maint set/show target-non-stop".
2218         * breakpoint.c (update_global_location_list): Check
2219         target_is_non_stop_p instead of non_stop.
2220         * infcmd.c (attach_command_post_wait, attach_command): Likewise.
2221         * infrun.c (show_can_use_displaced_stepping)
2222         (can_use_displaced_stepping_p, start_step_over_inferior):
2223         Likewise.
2224         (internal_resume_ptid): New function.
2225         (resume): Use it.
2226         (proceed): Check target_is_non_stop_p instead of non_stop.  If in
2227         all-stop mode but the target is always in non-stop mode, start all
2228         the other threads that are implicitly resumed too.
2229         (for_each_just_stopped_thread, fetch_inferior_event)
2230         (adjust_pc_after_break, stop_all_threads): Check
2231         target_is_non_stop_p instead of non_stop.
2232         (handle_inferior_event): Likewise.  Handle detach-fork in all-stop
2233         with the target always in non-stop mode.
2234         (handle_signal_stop) <random signal>: Check target_is_non_stop_p
2235         instead of non_stop.
2236         (switch_back_to_stepped_thread): Check target_is_non_stop_p
2237         instead of non_stop.
2238         (keep_going_stepped_thread): Use internal_resume_ptid.
2239         (stop_waiting): If in all-stop mode, and the target is in non-stop
2240         mode, stop all threads.
2241         (keep_going_pass): Likewise, when starting a new in-line step-over
2242         sequence.
2243         * linux-nat.c (get_pending_status, select_event_lwp)
2244         (linux_nat_filter_event, linux_nat_wait_1, linux_nat_wait): Check
2245         target_is_non_stop_p instead of non_stop.
2246         (linux_nat_always_non_stop_p): New function.
2247         (linux_nat_stop): Check target_is_non_stop_p instead of non_stop.
2248         (linux_nat_add_target): Install linux_nat_always_non_stop_p.
2249         * target-delegates.c: Regenerate.
2250         * target.c (target_is_non_stop_p): New function.
2251         (target_non_stop_enabled, target_non_stop_enabled_1): New globals.
2252         (maint_set_target_non_stop_command)
2253         (maint_show_target_non_stop_command): New functions.
2254         (_initilize_target): Install "maint set/show target-non-stop"
2255         commands.
2256         * target.h (struct target_ops) <to_always_non_stop_p>: New field.
2257         (target_non_stop_enabled): New declaration.
2258         (target_is_non_stop_p): New declaration.
2259
2260 2015-08-07  Pedro Alves  <pedro@codesourcery.com>
2261
2262         * breakpoint.c (breakpoints_should_be_inserted_now): If any thread
2263         has a pending status, return true.
2264         * gdbthread.h: Include target/waitstatus.h.
2265         (struct thread_suspend_state) <stop_reason, waitstatus_pending_p,
2266         stop_pc>: New fields.
2267         (struct thread_info) <resumed>: New field.
2268         (set_resumed): Declare.
2269         * infrun.c: Include "event-loop.h".
2270         (infrun_async_inferior_event_token, infrun_is_async): New globals.
2271         (infrun_async): New function.
2272         (clear_step_over_info): Add debug output.
2273         (displaced_step_in_progress_any_inferior): New function.
2274         (displaced_step_fixup): New returns int.
2275         (start_step_over): Handle in-line step-overs too.  Assert the
2276         thread is marked resumed.
2277         (resume_cleanups): Clear the thread's resumed flag.
2278         (resume): Set the thread's resumed flag.  Return early if the
2279         thread has a pending status.  Allow stepping a breakpoint with no
2280         signal.
2281         (proceed): Adjust to check 'resumed' instead of 'executing'.
2282         (clear_proceed_status_thread): If the thread has a pending status,
2283         and that status is a finished step, discard the pending status.
2284         (clear_proceed_status): Don't clear step_over_info here.
2285         (random_pending_event_thread, do_target_wait): New functions.
2286         (prepare_for_detach, wait_for_inferior, fetch_inferior_event): Use
2287         do_target_wait.
2288         (wait_one): New function.
2289         (THREAD_STOPPED_BY): New macro.
2290         (thread_stopped_by_watchpoint, thread_stopped_by_sw_breakpoint)
2291         (thread_stopped_by_hw_breakpoint): New functions.
2292         (switch_to_thread_cleanup, save_waitstatus, stop_all_threads): New
2293         functions.
2294         (handle_inferior_event): Also call set_resumed(false) on all
2295         threads implicitly stopped by the event.
2296         (restart_threads, resumed_thread_with_pending_status): New
2297         functions.
2298         (finish_step_over): If we were doing an in-line step-over before,
2299         and no longer are after trying to start a new step-over, restart
2300         all threads.  If we have multiple threads with pending events,
2301         save the current event and go through the event loop again.
2302         (handle_signal_stop): Return early if finish_step_over returns
2303         false.
2304         <random signal>: If we get a signal while stepping over a
2305         breakpoint in-line in non-stop mode, restart all threads.  Clear
2306         step_over_info before delivering the signal.
2307         (keep_going_stepped_thread): Use internal_error instead of
2308         gdb_assert.  Mark the thread as resumed.
2309         (keep_going_pass_signal): Assert the thread isn't already resumed.
2310         If some other thread is doing an in-line step-over, defer the
2311         resume.  If we just started a new in-line step-over, stop all
2312         threads.  Don't clear step_over_info.
2313         (infrun_async_inferior_event_handler): New function.
2314         (_initialize_infrun): Create async event handler with
2315         infrun_async_inferior_event_handler as callback.
2316         (infrun_async): New declaration.
2317         * target.c (target_async): New function.
2318         * target.h (target_async): Declare macro and readd as function
2319         declaration.
2320         * target/waitstatus.h (enum target_stop_reason)
2321         <TARGET_STOPPED_BY_SINGLE_STEP>: New value.
2322         * thread.c (new_thread): Clear the new waitstatus field.
2323         (set_resumed): New function.
2324
2325 2015-08-07  Pedro Alves  <palves@redhat.com>
2326
2327         * infrun.c (keep_going_stepped_thread): New function, factored out
2328         from ...
2329         (switch_back_to_stepped_thread): ... here.
2330
2331 2015-08-07  Pedro Alves  <palves@redhat.com>
2332
2333         * infrun.c (currently_stepping): Extend intro comment.
2334         * target.h (target_resume): Extend intro comment.
2335
2336 2015-08-07  Pedro Alves  <palves@redhat.com>
2337
2338         * infrun.c (switch_back_to_stepped_thread): Use ecs->ptid instead
2339         of inferior_ptid.  If the stepped thread vanished, return 0
2340         instead of resuming here.  Use reset_ecs.  Print the prev_pc and
2341         the current stop_pc in log message.  Clear trap_expected if the
2342         thread advanced.  Don't pass currently_stepping to
2343         do_target_resume.
2344
2345 2015-08-07  Pedro Alves  <palves@redhat.com>
2346
2347         * gdbthread.h (struct thread_info) <prev_pc>: Extend comment.
2348         * infrun.c (struct execution_control_state): Move higher up in the
2349         file.
2350         (reset_ecs): New function.
2351         (start_step_over): Now returns int.  Rewrite to use
2352         keep_going_pass_signal instead of manually starting a displaced step.
2353         (resume): Don't call set_running here.  If displaced stepping
2354         can't start now, clear trap_expected.
2355         (find_thread_needs_step_over): Delete function.
2356         (proceed): Set up finish_thread_state_cleanup.  Call set_running.
2357         If the current thread needs a step over, push it in the step-over
2358         chain.  Don't set insert breakpoints nor call resume directly
2359         here.  Instead rewrite to use start_step_over and
2360         keep_going_pass_signal.
2361         (finish_step_over): New function.
2362         (handle_signal_stop): Call finish_step_over instead of
2363         start_step_over.
2364         (switch_back_to_stepped_thread): If the event thread needs another
2365         step-over do that first.  Use start_step_over.
2366         (keep_going_pass_signal): New function, factored out from ...
2367         (keep_going): ... here.
2368         (_initialize_infrun): Comment moved here.
2369         * thread.c (set_running_thread): New function.
2370         (set_running, finish_thread_state): Use set_running_thread.
2371
2372 2015-08-07  Pedro Alves  <palves@redhat.com>
2373
2374         * gdbthread.h (struct thread_info) <step_over_prev,
2375         step_over_next>: New fields.
2376         (thread_step_over_chain_enqueue, thread_step_over_chain_remove)
2377         (thread_step_over_chain_next, thread_is_in_step_over_chain): New
2378         declarations.
2379         * infrun.c (struct displaced_step_request): Delete.
2380         (struct displaced_step_inferior_state) <step_request_queue>:
2381         Delete field.
2382         (displaced_step_prepare): Assert that trap_expected is set.  Use
2383         thread_step_over_chain_enqueue.  Split starting a new displaced
2384         step to ...
2385         (start_step_over): ... this new function.
2386         (resume): Assert the thread isn't waiting for a step over already.
2387         (proceed): Assert the thread isn't waiting for a step over
2388         already.
2389         (infrun_thread_stop_requested): Adjust to remove threads from the
2390         embedded step-over chain.
2391         (handle_inferior_event) <fork/vfork>: Call start_step_over after
2392         displaced_step_fixup.
2393         (handle_signal_stop): Call start_step_over after
2394         displaced_step_fixup.
2395         * infrun.h (step_over_queue_head): New declaration.
2396         * thread.c (step_over_chain_enqueue, step_over_chain_remove)
2397         (thread_step_over_chain_next, thread_is_in_step_over_chain)
2398         (thread_step_over_chain_enqueue)
2399         (thread_step_over_chain_remove): New functions.
2400         (delete_thread_1): Remove thread from the step-over chain.
2401
2402 2015-08-07  Pedro Alves  <palves@redhat.com>
2403
2404         * infrun.c (thread_still_needs_step_over): Rename to ...
2405         (thread_still_needs_step_over_bp): ... this.
2406         (enum step_over_what): New.
2407         (thread_still_needs_step_over): Reimplement.
2408
2409 2015-08-07  Pedro Alves  <palves@redhat.com>
2410
2411         * remote.c (remote_wait_as): If not waiting for a stop reply,
2412         return TARGET_WAITKIND_NO_RESUMED.  If TARGET_WNOHANG is
2413         requested, don't block waiting forever.
2414
2415 2015-08-07  Pedro Alves  <pedro@codesourcery.com>
2416
2417         * infrun.c (adjust_pc_after_break): Now takes thread_info and
2418         waitstatus pointers instead of an ecs.  Adjust.
2419         (handle_inferior_event): Adjust caller.
2420
2421 2015-08-07  Pedro Alves  <palves@redhat.com>
2422
2423         * infrun.c (handle_inferior_event): If we get
2424         TARGET_WAITKIND_SIGNALLED or TARGET_WAITKIND_EXITED in non-stop
2425         mode, mark all threads of the exiting process as not-executing.
2426         (normal_stop): If we get TARGET_WAITKIND_SIGNALLED or
2427         TARGET_WAITKIND_EXITED in non-stop mode, finish all threads of the
2428         exiting process, if inferior_ptid still points at a process.
2429         * thread.c (struct current_thread_cleanup) <next>: New field.
2430         (current_thread_cleanup_chain): New global.
2431         (restore_current_thread_ptid_changed): New function.
2432         (restore_current_thread_cleanup_dtor): Remove the cleanup from the
2433         current_thread_cleanup_chain list.
2434         (make_cleanup_restore_current_thread): Add the cleanup data to the
2435         current_thread_cleanup_chain list.
2436         (_initialize_thread): Install restore_current_thread_ptid_changed
2437         as thread_ptid_changed observer.
2438
2439 2015-08-07  Joel Brobecker  <brobecker@adacore.com>
2440
2441         * dtrace-probe.c (dtrace_process_dof): Ignore the objfile's DOF
2442         data if a DTRACE_DOF_SECT_TYPE_PROVIDER section is found to be
2443         smaller than expected.
2444
2445 2015-08-07  Andrew Burgess  <andrew.burgess@embecosm.com>
2446
2447         * stack.c (get_frame_language): Moved ...
2448         * frame.c (get_frame_language): ... to here.
2449         * language.h (get_frame_language): Declaration moved to frame.h.
2450         * frame.h: Add language.h include, for language enum.
2451         (get_frame_language): Declaration moved from language.h.
2452         * language.c: Add frame.h include.
2453         * top.c: Add frame.h include.
2454         * symtab.h (struct obj_section): Declare.
2455         (struct cmd_list_element): Declare.
2456
2457 2015-08-07  Andrew Burgess  <andrew.burgess@embecosm.com>
2458
2459         * language.c (show_language_command): Find selected frame before
2460         asking for the language of that frame.
2461         (set_language_command): Likewise.
2462         * language.h (get_frame_language): Add frame parameter.
2463         * stack.c (get_frame_language): Add frame parameter, assert
2464         parameter is not NULL, update comment and reindent.
2465         * top.c (check_frame_language_change): Pass the selected frame
2466         into get_frame_language.
2467
2468 2015-08-07  Markus Metzger  <markus.t.metzger@intel.com>
2469
2470         * btrace.c (btrace_compute_ftrace_bts): Clear insn flags.
2471         (pt_btrace_insn_flags): New.
2472         (ftrace_add_pt): Call pt_btrace_insn_flags.
2473         * btrace.h (btrace_insn_flag): New.
2474         (btrace_insn) <flags>: New.
2475         * record-btrace.c (btrace_insn_history): Print insn prefix.
2476         * NEWS: Announce it.
2477
2478 2015-08-07  Markus Metzger  <markus.t.metzger@intel.com>
2479
2480         * configure.ac: Check for PERF_ATTR_SIZE_VER5 in linux/perf_event.h
2481         * configure: Regenerate.
2482
2483 2015-08-06  Yaakov Selkowitz  <yselkowi@redhat.com>
2484
2485         * Makefile.in (LIBICONV): Define.
2486         (CLIBS): Add LIBICONV.
2487         * acinclude.m4: Use config/iconv.m4 instead of custom AM_ICONV.
2488         * configure: Regenerate.
2489
2490 2015-08-06  Simon Marchi  <simon.marchi@ericsson.com>
2491             Pedro Alves  <palves@redhat.com>
2492
2493         * arm-tdep.c (set_fp_model_sfunc): Add cast from integer to enum.
2494         (arm_set_abi): Likewise.
2495         * ax-general.c (ax_print): Likewise.
2496         * c-exp.y (exp : string_exp): Likewise.
2497         * compile/compile-loc2c.c (compute_stack_depth_worker): Likewise.
2498         (do_compile_dwarf_expr_to_c): Likewise.
2499         * cp-name-parser.y (demangler_special : DEMANGLER_SPECIAL start):
2500         Likewise.
2501         * dwarf2expr.c (execute_stack_op): Likewise.
2502         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
2503         (disassemble_dwarf_expression): Likewise.
2504         * dwarf2read.c (dwarf2_add_member_fn): Likewise.
2505         (read_array_order): Likewise.
2506         (abbrev_table_read_table): Likewise.
2507         (read_attribute_value): Likewise.
2508         (skip_unknown_opcode): Likewise.
2509         (dwarf_decode_macro_bytes): Likewise.
2510         (dwarf_decode_macros): Likewise.
2511         * eval.c (value_f90_subarray): Likewise.
2512         * guile/scm-param.c (gdbscm_make_parameter): Likewise.
2513         * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise.
2514         * infrun.c (handle_command): Likewise.
2515         * memory-map.c (memory_map_start_memory): Likewise.
2516         * osabi.c (set_osabi): Likewise.
2517         * parse.c (operator_length_standard): Likewise.
2518         * ppc-linux-tdep.c (ppc_canonicalize_syscall): Likewise, and use
2519         single return point.
2520         * python/py-frame.c (gdbpy_frame_stop_reason_string): Likewise.
2521         * python/py-symbol.c (gdbpy_lookup_symbol): Likewise.
2522         (gdbpy_lookup_global_symbol): Likewise.
2523         * record-full.c (record_full_restore): Likewise.
2524         * regcache.c (regcache_register_status): Likewise.
2525         (regcache_raw_read): Likewise.
2526         (regcache_cooked_read): Likewise.
2527         * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
2528         * symtab.c (initialize_ordinary_address_classes): Likewise.
2529         * target-debug.h (target_debug_print_signals): Likewise.
2530         * utils.c (do_restore_current_language): Likewise.
2531
2532 2015-08-06  Clem Dickey  <clemd@acm.org>
2533
2534         PR python/17136
2535         * python/lib/gdb/command/type_printers.py (InfoTypePrinter): Fix typo.
2536
2537 2015-08-06  Simon Marchi  <simon.marchi@ericsson.com>
2538
2539         * complaints.c (enum complaint_series): Add newlines and remove
2540         out of date comment.
2541         (struct complaints) <series>: Change type to enum
2542         complaint_series and remove out of date comment.
2543         (symfile_complaint_hook): Use equivalent enum value
2544         ISOLATED_MESSAGE instead of 0.
2545
2546 2015-08-06  Pedro Alves  <palves@redhat.com>
2547
2548         * nat/linux-waitpid.c (my_waitpid): Only print *status if waitpid
2549         returned > 0.
2550
2551 2015-08-06  Pierre Langlois  <pierre.langlois@arm.com>
2552
2553         * common/agent.c (symbol_list) <required>: Remove.
2554
2555 2015-08-06  Pedro Alves  <palves@redhat.com>
2556
2557         * target/waitstatus.h (enum target_stop_reason)
2558         <TARGET_STOPPED_BY_SINGLE_STEP>: New value.
2559
2560 2015-08-05  Pedro Alves  <palves@redhat.com>
2561             Joel Brobecker  <brobecker@adacore.com>
2562
2563         * breakpoint.c (bpstat_what) <bp_longjmp, bp_longjmp_call_dummy>
2564         <bp_exception, bp_longjmp_resume, bp_exception_resume>: Handle the
2565         case where BS->STOP is not set.
2566
2567 2015-08-05  Ulrich Weigand  <uweigand@de.ibm.com>
2568
2569         * nat/gdb_thread_db.h: Add copyright header.
2570         Protect against multiple inclusion.
2571
2572 2015-08-05  Yao Qi  <yao.qi@linaro.org>
2573
2574         * aarch64-linux-nat.c (get_thread_id): Remove.
2575         (debug_reg_change_callback): Call ptid_get_lwp instead of
2576         get_thread_id.
2577         (fetch_gregs_from_thread): Likewise.
2578         (store_gregs_to_thread): Likewise.
2579         (fetch_fpregs_from_thread): Likewise.
2580         (store_fpregs_to_thread): Likewise.
2581         (aarch64_linux_get_debug_reg_capacity): Likewise.
2582         * arm-linux-nat.c (get_thread_id): Remove.
2583         (GET_THREAD_ID): Update macro to use ptid_get_lwp.
2584         * xtensa-linux-nat.c (get_thread_id): Remove.
2585         (GET_THREAD_ID): Update macro to use ptid_get_lwp.
2586         * arm-linux-nat.c (get_thread_id): Remove.
2587         (GET_THREAD_ID): Remove.
2588         (fetch_fpregs): Call ptid_get_lwp instead of GET_THREAD_ID.
2589         (store_fpregs, fetch_regs, store_regs): Likewise.
2590         (fetch_wmmx_regs, store_wmmx_regs): Likewise.
2591         (fetch_vfp_regs, store_vfp_regs): Likewise.
2592         (arm_linux_read_description): Likewise.
2593         (arm_linux_get_hwbp_cap): Likewise.
2594         * xtensa-linux-nat.c (get_thread_id): Remove.
2595         (GET_THREAD_ID): Remove.
2596         (fetch_gregs, store_gregs): Call ptid_get_lwp instead of
2597         GET_THREAD_ID.
2598
2599 2015-08-04  Ciro Santilli  <ciro.santilli@gmail.com>  (obvious patch)
2600
2601         * python/py-linetable.c: Fix case of Linetable to LineTable
2602         in docstrings and code comments.
2603         * python/py-symtab.c: Same.
2604
2605 2015-08-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
2606
2607         * infcmd.c (signal_command): Call do_cleanups for args_chain.
2608
2609 2015-08-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
2610
2611         PR gdb/18767
2612         * infcmd.c (attach_command): Move ARGS_CHAIN cleanup after last ARGS
2613         use.
2614
2615 2015-08-04  Pedro Alves  <palves@redhat.com>
2616
2617         * nat/gdb_thread_db.h (td_init_ftype, td_ta_new_ftype)
2618         (td_ta_map_lwp2thr_ftype, td_ta_thr_iter_ftype)
2619         (td_ta_event_addr_ftype, td_ta_set_event_ftype)
2620         (td_ta_clear_event_ftype, td_ta_event_getmsg_ftype)
2621         (td_thr_validate_ftype, td_thr_get_info_ftype)
2622         (td_thr_event_enable_ftype, td_thr_tls_get_addr_ftype)
2623         (td_thr_tlsbase_ftype, td_symbol_list_ftype, td_ta_delete_ftype):
2624         New typedefs.
2625         * linux-thread-db.c (struct thread_db_info): Use new typedefs.
2626         (try_thread_db_load_1): Define TDB_VERBOSE_DLSYM, TDB_DLSYM , CHK
2627         local macros and use them instead of verbose_dlsym and dlsym
2628         calls.
2629
2630 2015-08-03  Sandra Loosemore  <sandra@codesourcery.com>
2631
2632         * nios2-tdep.h: Include opcode/nios2.h here.
2633         (NIOS2_CDX_OPCODE_SIZE): New.
2634         (struct gdbarch_tdep): Add OP parameter to syscall_next_pc.
2635         * nios2-tdep.c: Don't include opcode/nios2.h here.
2636         (nios2_fetch_insn): For R2, try reading 2-byte instruction if
2637         4-byte read fails.
2638         (nios2_match_add, nios2_match_sub): Add cases for R2 encodings.
2639         (nios2_match_addi, nios2_match_orhi): Likewise.
2640         (nios2_match_stw, nios2_match_ldw): Likewise.
2641         (nios2_match_rdctl): Likewise.
2642         (nios2_match_stwm, nios2_match_ldwm): New.
2643         (nios2_match_branch): Add cases for R2 encodings.
2644         (nios2_match_jmpi, nios2_match_calli): Likewise.
2645         (nios2_match_jmpr, nios2_match_callr): Likewise.
2646         (nios2_match_break, nios2_match_trap): Likewise.
2647         (nios2_in_epilogue_p): Add R2 support.
2648         (nios2_analyze_prologue): Update comments.  Recognize R2 CDX
2649         prologues.
2650         (nios2_breakpoint_from_pc): Handle R2 instructions.
2651         (nios2_get_next_pc): Likewise.  Adjust call to
2652         tdep->syscall_next_pc.
2653         * nios2-linux-tdep.c (nios2_r1_linux_rt_sigreturn_tramp_frame):
2654         Renamed from nios2_linux_rt_sigreturn_tramp_frame.  Use
2655         instruction field macros instead of literal hex values.
2656         (nios2_r2_linux_rt_sigreturn_tramp_frame): New.
2657         (nios2_linux_syscall_next_pc): Adjust signature to pass OP.
2658         Use size field from OP instead of assuming all instructions
2659         are the same size.
2660         (nios2_linux_init_abi): Register appropriate unwinder for mach.
2661
2662 2015-08-03  Ulrich Weigand  <uweigand@de.ibm.com>
2663
2664         * cp-namespace.c (cp_lookup_symbol_via_imports): Fix uninitialized
2665         variable warning with some compilers.
2666
2667 2015-08-03  Yao Qi  <yao.qi@linaro.org>
2668
2669         * arm-linux-nat.c (arm_linux_get_hwbp_type): Capitalize "type"
2670         in comment.  Replace "rw" with "type".
2671         (arm_linux_remove_watchpoint): Change type of "rw" to
2672         "enum target_hw_bp_type".
2673
2674 2015-08-02  Pierre-Marie de Rodat  <derodat@adacore.com>
2675
2676         * alpha-mdebug-tdep.c (find_proc_desc): Update call to
2677         lookup_symbol.
2678         * ft32-tdep.c (ft32_skip_prologue): Likewise.
2679         * moxie-tdep.c (moxie_skip_prologue): Likewise.
2680         * mt-tdep.c (mt_skip_prologue): Likewise.
2681         * xstormy16-tdep.c (xstormy16_skip_prologue): Likewise.
2682
2683 2015-08-01  Pierre-Marie de Rodat  <derodat@adacore.com>
2684
2685         * ada-exp.y (write_object_renaming): Replace struct
2686         ada_symbol_info with struct block_symbol.  Update field
2687         references accordingly.
2688         (block_lookup, select_possible_type_sym): Likewise.
2689         (find_primitive_type): Likewise.  Also update call to
2690         ada_lookup_symbol to extract the symbol itself.
2691         (write_var_or_type, write_name_assoc): Likewise.
2692         * ada-lang.h (struct ada_symbol_info): Remove.
2693         (ada_lookup_symbol_list): Replace struct ada_symbol_info with
2694         struct block_symbol.
2695         (ada_lookup_encoded_symbol, user_select_syms): Likewise.
2696         (ada_lookup_symbol): Return struct block_symbol instead of a
2697         mere symbol.
2698         * ada-lang.c (defns_collected): Replace struct ada_symbol_info
2699         with struct block_symbol.
2700         (resolve_subexp, ada_resolve_function, sort_choices,
2701         user_select_syms, is_nonfunction, add_defn_to_vec,
2702         num_defns_collected, defns_collected,
2703         symbols_are_identical_enums, remove_extra_symbols,
2704         remove_irrelevant_renamings, add_lookup_symbol_list_worker,
2705         ada_lookup_symbol_list, ada_iterate_over_symbols,
2706         ada_lookup_encoded_symbol, get_var_value): Likewise.
2707         (ada_lookup_symbol): Return a block_symbol instead of a mere
2708         symbol.  Replace struct ada_symbol_info with struct
2709         block_symbol.
2710         (ada_lookup_symbol_nonlocal): Likewise.
2711         (standard_lookup): Make block passing explicit through
2712         lookup_symbol_in_language.
2713         * ada-tasks.c (get_tcb_types_info): Update the calls to
2714         lookup_symbol_in_language to extract the mere symbol out of the
2715         returned value.
2716         (ada_tasks_inferior_data_sniffer): Likewise.
2717         * ax-gdb.c (gen_static_field): Likewise for the call to
2718         lookup_symbol.
2719         (gen_maybe_namespace_elt): Deal with struct block_symbol from
2720         lookup functions.
2721         (gen_expr): Likewise.
2722         * c-exp.y: Likewise.  Remove uses of block_found.
2723         (lex_one_token, classify_inner_name, c_print_token): Likewise.
2724         (classify_name): Likewise.  Rename the "sym" local variable to
2725         "bsym".
2726         * c-valprint.c (print_unpacked_pointer): Likewise.
2727         * compile/compile-c-symbols.c (convert_symbol_sym): Promote the
2728         "sym" parameter from struct symbol * to struct block_symbol.
2729         Use it to remove uses of block_found.  Deal with struct
2730         block_symbol from lookup functions.
2731         (gcc_convert_symbol): Likewise.  Update the call to
2732         convert_symbol_sym.
2733         * compile/compile-object-load.c (compile_object_load): Deal with
2734         struct block_symbol from lookup functions.
2735         * cp-namespace.c (cp_lookup_nested_symbol_1,
2736         cp_lookup_nested_symbol, cp_lookup_bare_symbol,
2737         cp_search_static_and_baseclasses,
2738         cp_lookup_symbol_in_namespace, cp_lookup_symbol_via_imports,
2739         cp_lookup_symbol_imports_or_template,
2740         cp_lookup_symbol_via_all_imports, cp_lookup_symbol_namespace,
2741         lookup_namespace_scope, cp_lookup_nonlocal,
2742         find_symbol_in_baseclass): Return struct block_symbol instead of
2743         mere symbols and deal with struct block_symbol from lookup
2744         functions.
2745         * cp-support.c (inspect_type, replace_typedefs,
2746         cp_lookup_rtti_type): Deal with struct block_symbol from
2747         lookup functions.
2748         * cp-support.h (cp_lookup_symbol_nonlocal,
2749         cp_lookup_symbol_from_namespace,
2750         cp_lookup_symbol_imports_or_template, cp_lookup_nested_symbol):
2751         Return struct block_symbol instead of mere symbols.
2752         * d-exp.y (d_type_from_name, d_module_from_name, push_variable,
2753         push_module_name):
2754         Deal with struct block_symbol from lookup functions.  Remove
2755         uses of block_found.
2756         * eval.c (evaluate_subexp_standard): Update call to
2757         cp_lookup_symbol_namespace.
2758         * f-exp.y: Deal with struct block_symbol from lookup functions.
2759         Remove uses of block_found.
2760         (yylex): Likewise.
2761         * gdbtypes.c (lookup_typename, lookup_struct, lookup_union,
2762         lookup_enum, lookup_template_type, check_typedef): Deal with
2763         struct block_symbol from lookup functions.
2764         * guile/scm-frame.c (gdbscm_frame_read_var): Likewise.
2765         * guile/scm-symbol.c (gdbscm_lookup_symbol): Likewise.
2766         (gdbscm_lookup_global_symbol): Likewise.
2767         * gnu-v3-abi.c (gnuv3_get_typeid_type): Likewise.
2768         * go-exp.y: Likewise.  Remove uses of block_found.
2769         (package_name_p, classify_packaged_name, classify_name):
2770         Likewise.
2771         * infrun.c (insert_exception_resume_breakpoint): Likewise.
2772         * jv-exp.y (push_variable): Likewise.
2773         * jv-lang.c (java_lookup_class, get_java_object_type): Likewise.
2774         * language.c (language_bool_type): Likewise.
2775         * language.h (struct language_defn): Update
2776         la_lookup_symbol_nonlocal to return a struct block_symbol rather
2777         than a mere symbol.
2778         * linespec.c (find_label_symbols): Deal with struct block_symbol
2779         from lookup functions.
2780         * m2-exp.y: Likewise.  Remove uses of block_found.
2781         (yylex): Likewise.
2782         * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
2783         * objc-lang.c (lookup_struct_typedef, find_imps): Likewise.
2784         * p-exp.y: Likewise.  Remove uses of block_found.
2785         (yylex): Likewise.
2786         * p-valprint.c (pascal_val_print): Likewise.
2787         * parse.c (write_dollar_variable): Likewise.  Remove uses of
2788         block_found.
2789         * parser-defs.h (struct symtoken): Turn the SYM field into a
2790         struct block_symbol.
2791         * printcmd.c (address_info): Deal with struct block_symbol from
2792         lookup functions.
2793         * python/py-frame.c (frapy_read_var): Likewise.
2794         * python/py-symbol.c (gdbpy_lookup_symbol,
2795         gdbpy_lookup_global_symbol): Likewise.
2796         * skip.c (skip_function_command): Likewise.
2797         * solib-darwin.c (darwin_lookup_lib_symbol): Return a struct
2798         block_symbol instead of a mere symbol.
2799         * solib-spu.c (spu_lookup_lib_symbol): Likewise.
2800         * solib-svr4.c (elf_lookup_lib_symbol): Likewise.
2801         * solib.c (solib_global_lookup): Likewise.
2802         * solist.h (solib_global_lookup): Likewise.
2803         (struct target_so_ops): Update lookup_lib_global_symbol to
2804         return a struct block_symbol rather than a mere symbol.
2805         * source.c (select_source_symtab): Deal with struct block_symbol
2806         from lookup functions.
2807         * stack.c (print_frame_args, iterate_over_block_arg_vars):
2808         Likewise.
2809         * symfile.c (set_initial_language): Likewise.
2810         * symtab.c (SYMBOL_LOOKUP_FAILED): Turn into a struct
2811         block_symbol.
2812         (SYMBOL_LOOKUP_FAILED_P): New predicate as a macro.
2813         (struct symbol_cache_slot): Turn the FOUND field into a struct
2814         block_symbol.
2815         (block_found): Remove.
2816         (eq_symbol_entry): Update to deal with struct block_symbol in
2817         cache slots.
2818         (symbol_cache_lookup): Return a struct block_symbol rather than
2819         a mere symbol.
2820         (symbol_cache_mark_found): Add a BLOCK parameter to fill
2821         appropriately the cache slots.  Update callers.
2822         (symbol_cache_dump): Update cache slots handling to the type
2823         change.
2824         (lookup_symbol_in_language, lookup_symbol, lookup_language_this,
2825         lookup_symbol_aux, lookup_local_symbol,
2826         lookup_symbol_in_objfile, lookup_global_symbol_from_objfile,
2827         lookup_symbol_in_objfile_symtabs,
2828         lookup_symbol_in_objfile_from_linkage_name,
2829         lookup_symbol_via_quick_fns, basic_lookup_symbol_nonlocal,
2830         lookup_symbol_in_static_block, lookup_static_symbol,
2831         lookup_global_symbol):
2832         Return a struct block_symbol rather than a mere symbol.  Deal
2833         with struct block_symbol from other lookup functions.  Remove
2834         uses of block_found.
2835         (lookup_symbol_in_block): Remove uses of block_found.
2836         (struct global_sym_lookup_data): Turn the RESULT field into a
2837         struct block_symbol.
2838         (lookup_symbol_global_iterator_cb): Update references to the
2839         RESULT field.
2840         (search_symbols): Deal with struct block_symbol from lookup
2841         functions.
2842         * symtab.h (struct block_symbol): New structure.
2843         (block_found): Remove.
2844         (lookup_symbol_in_language, lookup_symbol,
2845         basic_lookup_symbol_nonlocal, lookup_symbol_in_static_block,
2846         lookup_static_symbol, lookup_global_symbol, lookup_language_this,
2847         lookup_global_symbol_from_objfile): Return a struct block_symbol
2848         rather than just a mere symbol.  Update comments to remove
2849         mentions of block_found.
2850         * valops.c (find_function_in_inferior,
2851         value_struct_elt_for_reference, value_maybe_namespace_elt,
2852         value_of_this):  Deal with struct block_symbol from lookup
2853         functions.
2854         * value.c (value_static_field, value_fn_field): Likewise.
2855
2856 2015-07-31  Simon Marchi  <simon.marchi@ericsson.com>
2857
2858         * remote-m32r-sdi.c (m32r_remove_watchpoint): Use enum type
2859         instead of integer.
2860
2861 2015-07-31  Simon Marchi  <simon.marchi@ericsson.com>
2862             Pedro Alves  <palves@redhat.com>
2863
2864         * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): Use enum
2865         type or value instead of integer.
2866         (aarch64_linux_insert_watchpoint): Likewise.
2867         (aarch64_linux_remove_watchpoint): Likewise.
2868         * ada-lang.c (ada_op_print_tab): Likewise.
2869         * amd64-linux-tdep.c (amd64_canonicalize_syscall): Likewise.
2870         (amd64_linux_syscall_record_common): Likewise.
2871         * arch-utils.c (target_byte_order_user): Likewise.
2872         (default_byte_order): Likewise.
2873         * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Likewise.
2874         (arm_linux_get_hwbp_type): Likewise.
2875         (arm_linux_hw_watchpoint_initialize): Likewise.
2876         (arm_linux_insert_watchpoint): Likewise.
2877         * arm-linux-tdep.c (arm_canonicalize_syscall): Likewise.
2878         (arm_linux_syscall_record): Likewise.
2879         * breakpoint.c (update_watchpoint): Likewise.
2880         (breakpoint_here_p): Likewise.
2881         (bpstat_print): Likewise.
2882         (enable_breakpoint_disp): Likewise.
2883         * c-lang.c (c_op_print_tab): Likewise.
2884         * cli/cli-decode.c (add_info_alias): Likewise.
2885         * d-lang.c (d_op_print_tab): Likewise.
2886         * eval.c (evaluate_subexp_standard): Likewise.
2887         * f-exp.y (dot_ops): Likewise.
2888         (f77_keywords): Likewise.
2889         * f-lang.c (f_op_print_tab): Likewise.
2890         * go-lang.c (go_op_print_tab): Likewise.
2891         * guile/scm-breakpoint.c (gdbscm_make_breakpoint): Likewise.
2892         * guile/scm-cmd.c (gdbscm_make_command): Likewise.
2893         * guile/scm-param.c (gdbscm_make_parameter): Likewise.
2894         * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer): Likewise.
2895         * guile/scm-string.c (struct scm_to_stringn_data): Likewise.
2896         (struct scm_from_stringn_data): Likewise.
2897         * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise.
2898         * ia64-linux-nat.c (ia64_linux_insert_watchpoint): Likewise.
2899         (ia64_linux_remove_watchpoint): Likewise.
2900         (ia64_linux_can_use_hw_breakpoint): Likewise.
2901         * infrun.c (print_stop_event): Likewise.
2902         * jv-lang.c (java_op_print_tab): Likewise.
2903         * linux-nat.c (linux_proc_xfer_partial): Likewise.
2904         * linux-nat.h (struct lwp_info): Likewise.
2905         * linux-thread-db.c (enable_thread_event): Likewise.
2906         * m2-lang.c (m2_op_print_tab): Likewise.
2907         * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Likewise.
2908         (mi_cmd_stack_list_variables): Likewise.
2909         * mi/mi-main.c (mi_cmd_trace_frame_collected): Likewise.
2910         * mi/mi-out.c (mi_table_begin): Likewise.
2911         (mi_table_header): Likewise.
2912         * mips-linux-nat.c (mips_linux_can_use_hw_breakpoint): Likewise.
2913         (mips_linux_insert_watchpoint): Likewise.
2914         (mips_linux_remove_watchpoint): Likewise.
2915         * nat/mips-linux-watch.c (mips_linux_watch_type_to_irw): Likewise.
2916         * nat/mips-linux-watch.h (struct mips_watchpoint): Likewise.
2917         (mips_linux_watch_type_to_irw): Likewise.
2918         * nto-procfs.c (procfs_can_use_hw_breakpoint): Likewise.
2919         (procfs_insert_hw_watchpoint): Likewise.
2920         (procfs_remove_hw_watchpoint): Likewise.
2921         (procfs_hw_watchpoint): Likewise.
2922         (procfs_can_use_hw_breakpoint): Likewise.
2923         (procfs_remove_hw_watchpoint): Likewise.
2924         (procfs_insert_hw_watchpoint): Likewise.
2925         * p-lang.c (pascal_op_print_tab): Likewise.
2926         * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): Likewise.
2927         * ppc-linux-tdep.c (ppu2spu_unwind_register): Likewise.
2928         * ppc-sysv-tdep.c (get_decimal_float_return_value): Likewise.
2929         * procfs.c (procfs_can_use_hw_breakpoint): Likewise.
2930         (procfs_insert_watchpoint): Likewise.
2931         (procfs_remove_watchpoint): Likewise.
2932         * psymtab.c (recursively_search_psymtabs): Likewise.
2933         * remote-m32r-sdi.c (m32r_can_use_hw_watchpoint): Likewise.
2934         (m32r_insert_watchpoint): Likewise.
2935         * remote-mips.c (mips_can_use_watchpoint): Likewise.
2936         (mips_insert_watchpoint): Likewise.
2937         (mips_remove_watchpoint): Likewise.
2938         * remote.c (watchpoint_to_Z_packet): Likewise.
2939         (remote_insert_watchpoint): Likewise.
2940         (remote_remove_watchpoint): Likewise.
2941         (remote_check_watch_resources): Likewise.
2942         * s390-linux-nat.c (s390_insert_watchpoint): Likewise.
2943         (s390_remove_watchpoint): Likewise.
2944         (s390_can_use_hw_breakpoint): Likewise.
2945         * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
2946         * spu-linux-nat.c (spu_can_use_hw_breakpoint): Likewise.
2947         * target.h (struct target_ops): Likewise.
2948         * tilegx-tdep.c (tilegx_analyze_prologue): Likewise.
2949         * ui-out.c (struct ui_out_hdr): Likewise.
2950         (append_header_to_list): Likewise.
2951         (get_next_header): Likewise.
2952         (verify_field): Likewise.
2953         (ui_out_begin): Likewise.
2954         (ui_out_field_int): Likewise.
2955         (ui_out_field_fmt_int): Likewise.
2956         (ui_out_field_skip): Likewise.
2957         (ui_out_field_string): Likewise.
2958         (ui_out_field_fmt): Likewise.
2959         * varobj.c (new_variable): Likewise.
2960         * x86-nat.c (x86_insert_watchpoint): Likewise.
2961         (x86_remove_watchpoint): Likewise.
2962         (x86_can_use_hw_breakpoint): Likewise.
2963         * xtensa-tdep.h (struct gdbarch_tdep): Likewise.
2964         * inflow.c (enum gdb_has_a_terminal_flag_enum): Add name to
2965         previously anonymous enumeration type..
2966         * linux-record.h (enum gdb_syscall): Add gdb_sys_no_syscall
2967         value.
2968         * target-debug.h (target_debug_print_enum_target_hw_bp_type): New.
2969         (target_debug_print_enum_bptype): New.
2970         * target-delegates.c: Regenerate.
2971
2972 2015-07-30  Sandra Loosemore  <sandra@codesourcery.com>
2973
2974         * nios2-tdep.c (nios2_analyze_prologue): Do what the comment
2975         already says and disallow non-stack memory writes in the prologue.
2976
2977 2015-07-30  Sandra Loosemore  <sandra@codesourcery.com>
2978
2979         * nios2-tdep.c (nios2_analyze_prologue): Update comments to
2980         reflect how current GCC emits stack overflow checks.  Match
2981         both trap and break instructions for backward compatbility.
2982         Disallow other trap and break instructions in the prologue.
2983
2984 2015-07-30  Pedro Alves  <palves@redhat.com>
2985
2986         PR threads/18600
2987         * linux-nat.c (wait_lwp): Report to the core when thread group
2988         leader exits.
2989
2990 2015-07-30  Pedro Alves  <palves@redhat.com>
2991             Simon Marchi  <simon.marchi@ericsson.com>
2992
2993         PR threads/18600
2994         * linux-nat.c (linux_handle_extended_wait): On CLONE event, always
2995         mark the new thread as resumed.  Remove STOPPING parameter.
2996         (wait_lwp): Adjust call to linux_handle_extended_wait.
2997         (linux_nat_filter_event): Adjust call to
2998         linux_handle_extended_wait.
2999         (resume_stopped_resumed_lwps): Add debug output.
3000
3001 2015-07-30  Pierre Langlois  <pierre.langlois@arm.com>
3002
3003         * arch-utils.c (default_fast_tracepoint_valid_at): Remove unused
3004         isize argument.
3005         * arch-utils.h (default_fast_tracepoint_valid_at): Likewise.
3006         * breakpoint.c (check_fast_tracepoint_sals): Adjust call to
3007         gdbarch_fast_tracepoint_valid_at.
3008         * gdbarch.sh (fast_tracepoint_valid_at): Remove isize argument.
3009         * gdbarch.h: Regenerate.
3010         * gdbarch.c: Regenerate.
3011         * i386-tdep.c (i386_fast_tracepoint_valid_at): Remove isize
3012         argument.  Do not set it.
3013         * remote.c (remote_download_tracepoint): Adjust call to
3014         gdbarch_fast_tracepoint_valid_at.  Call gdb_insn_length to get
3015         the instruction length.
3016
3017 2015-07-30  Yao Qi  <yao.qi@linaro.org>
3018
3019         * arm-tdep.h (enum gdb_regnum): Move it to ...
3020         * arch/arm.h: ... here.  New file.
3021         * Makefile.in (HFILES_NO_SRCDIR): Add arch/arm.h.
3022
3023 2015-07-30  Pierre Langlois  <pierre.langlois@arm.com>
3024
3025         * aarch64-tdep.c (decode_b): Rename link argument to is_bl.
3026         Change its type to int *.
3027         (decode_br): Rename link argument to is_blr.  Change its type to
3028         int *.
3029         (decode_cb): Rename op argument to is_cbnz.  Change its type to
3030         int *.
3031         (decode_tb): Rename op argument to is_tbnz.  Change its type to
3032         int *.  Set is_tbnz to either 1 or 0.
3033         (aarch64_analyze_prologue): Change type of is_link to int.  Add
3034         new variables is_cbnz and is_tbnz.  Adjust call to
3035         aarch64_decode_cb and aarch64_decode_tb.
3036
3037 2015-07-29  Simon Marchi  <simon.marchi@ericsson.com>
3038
3039         * mips-linux-nat.c (write_watchpoint_regs): Add NULL as ptrace's 4th
3040         parameter.
3041         (mips_linux_new_thread): Likewise.
3042         * nat/mips-linux-watch.c (mips_linux_read_watch_registers): Likewise.
3043
3044 2015-07-29  Patrick Palka  <patrick@parcs.ath.cx>
3045
3046         * top.c: Include "tui/tui.h".
3047         (undo_terminal_modifications_before_exit): New static function.
3048         (quit_force): Use it.
3049
3050 2015-07-29  Patrick Palka  <patrick@parcs.ath.cx>
3051
3052         * target.c (terminal_state): Initialize to terminal_is_ours.
3053
3054 2015-07-29  Yao Qi  <yao.qi@linaro.org>
3055
3056         PR record/18691
3057         * dcache.c (dcache_read_memory_partial): Call
3058         raw_memory_xfer_partial.
3059         * target.c (raw_memory_xfer_partial): Make it non-static.
3060         * target.h (raw_memory_xfer_partial): Declare.
3061
3062 2015-07-28  Simon Marchi  <simon.marchi@ericsson.com>
3063
3064         * c-valprint.c (c_val_print_array): Consider addressable memory
3065         unit size.
3066         (c_val_print_ptr): Likewise.
3067         (c_val_print_int): Likewise.
3068         * findvar.c (read_frame_register_value): Likewise.
3069         * valarith.c (find_size_for_pointer_math): Likewise.
3070         (value_ptrdiff): Likewise.
3071         (value_subscripted_rvalue): Likewise.
3072         * valops.c (read_value_memory): Likewise (and rename variables).
3073         (value_assign): Likewise.
3074         (value_repeat): Likewise.
3075         (value_array): Likewise.
3076         (value_slice): Likewise.
3077         * valprint.c (generic_val_print_ptr): Likewise.
3078         (generic_val_print_enum): Likewise.
3079         (generic_val_print_bool): Likewise.
3080         (generic_val_print_int): Likewise.
3081         (generic_val_print_char): Likewise.
3082         (generic_val_print_float): Likewise.
3083         (generic_val_print_decfloat): Likewise.
3084         (generic_val_print_complex): Likewise.
3085         (val_print_scalar_formatted): Likewise.
3086         (val_print_array_elements): Likewise.
3087         * value.c (set_value_parent): Likewise.
3088         (value_contents_copy_raw): Likewise.
3089         (set_internalvar_component): Likewise.
3090         (value_primitive_field): Likewise.
3091         (value_fetch_lazy): Likewise.
3092         * value.h (read_value_memory): Update comment.
3093
3094 2015-07-28  Simon Marchi  <simon.marchi@ericsson.com>
3095
3096         * value.c (get_value_arch): New function.
3097         * value.h (get_value_arch): New declaration.
3098
3099 2015-07-28  Simon Marchi  <simon.marchi@ericsson.com>
3100
3101         * value.c (struct value): Update comments.
3102
3103 2015-07-28  Simon Marchi  <simon.marchi@ericsson.com>
3104
3105         * gdbtypes.c (type_length_units): New function.
3106         * gdbtypes.h (type_length_units): New declaration.
3107         (struct type) <length>: Update comment.
3108
3109 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3110
3111         * valprint.c (generic_val_print): Factor out complex
3112         printing code to ...
3113         (generic_val_print_complex): ... this new function.
3114
3115 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3116
3117         * valprint.c (generic_val_print): Factor out decfloat
3118         printing code to ...
3119         (generic_val_print_decfloat): ... this new function.
3120
3121 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3122
3123         * valprint.c (generic_val_print): Factor out float
3124         printing code to ...
3125         (generic_val_print_float): ... this new function.
3126
3127 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3128
3129         * valprint.c (generic_val_print): Factor out char
3130         printing code to ...
3131         (generic_val_print_char): ... this new function.
3132
3133 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3134
3135         * valprint.c (generic_val_print): Factor out integer
3136         printing code to ...
3137         (generic_val_print_int): ... this new function.
3138
3139 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3140
3141         * valprint.c (generic_val_print): Factor out bool
3142         printing code to ...
3143         (generic_val_print_bool): ... this new function.
3144
3145 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3146
3147         * valprint.c (generic_val_print): Factor out function/method
3148         printing code to ...
3149         (generic_val_print_func): ... this new function.
3150
3151 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3152
3153         * valprint.c (generic_val_print): Factor out flags
3154         printing code to ...
3155         (generic_val_print_flags): ... this new function.
3156
3157 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3158
3159         * valprint.c (generic_val_print): Factor out enum
3160         printing code to ...
3161         (generic_val_print_enum): ... this new function.
3162
3163 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3164
3165         * valprint.c (generic_val_print): Factor out reference
3166         printing code to ...
3167         (generic_val_print_ref): ... this new function.
3168
3169 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3170
3171         * valprint.c (generic_val_print): Factor out memberptr
3172         printing code to ...
3173         (generic_val_print_memberptr): ... this new function.
3174
3175 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3176
3177         * valprint.c (generic_val_print): Factor out pointer
3178         printing code to ...
3179         (generic_val_print_ptr): ... this new function.
3180
3181 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3182
3183         * valprint.c (generic_val_print): Factor out array
3184         printing code to ...
3185         (generic_val_print_array): ... this new function.
3186
3187 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3188
3189         * valprint.c (generic_val_print): Factor out
3190         print_unpacked_pointer code to ...
3191         (print_unpacked_pointer): ... this new function.
3192
3193 2015-07-27  Patrick Palka  <patrick@parcs.ath.cx>
3194
3195         * event-top.c (handle_sigterm): Don't inspect
3196         target_can_async_p.  Always set the quit flag and always mark
3197         the async signal handler.
3198
3199 2015-07-27  Yao Qi  <yao.qi@linaro.org>
3200
3201         * Makefile.in (REMOTE_EXAMPLES): Remove it.
3202
3203 2015-07-25  Kevin Buettner  <kevinb@redhat.com>
3204
3205         * remote.c (read_ptid): Return null_ptid when no thread id
3206         is found.
3207         (remote_current_thread): Add log warning for malformed
3208         qC reply.
3209         (remote_start_remote): Add log warning when current thread
3210         not found.
3211
3212 2015-07-24  Pedro Alves  <palves@redhat.com>
3213
3214         * s390-linux-nat.c (fetch_regs, store_regs, fetch_fpregs)
3215         (s390_stopped_by_watchpoint, s390_prepare_to_resume): Pass 0 as
3216         forth argument to ptrace PTRACE_PEEKUSR_AREA/PTRACE_POKEUSR_AREA.
3217
3218 2015-07-24  Pedro Alves  <palves@redhat.com>
3219
3220         PR gdb/18717
3221         * linux-nat.c (linux_nat_filter_event): Don't assert that the lwp
3222         is resumed, and extend the debug log.
3223
3224 2015-07-24  Pedro Alves  <palves@redhat.com>
3225
3226         * fork-child.c (fork_inferior): Print argv[0] instead of exec_file.
3227
3228 2015-07-24  Pedro Alves  <palves@redhat.com>
3229
3230         * aarch64-linux-nat.c: Include nat/gdb_ptrace.h instead of
3231         sys/ptrace.h.
3232         * alpha-linux-nat.c: Likewise.
3233         * amd64-linux-nat.c: Likewise.
3234         * arm-linux-nat.c: Likewise.
3235         * hppa-linux-nat.c: Likewise.
3236         * i386-linux-nat.c: Likewise.
3237         * ia64-linux-nat.c: Likewise.
3238         * linux-fork.c: Likewise.
3239         * linux-nat.c: Likewise.
3240         * m32r-linux-nat.c: Likewise.
3241         * m68klinux-nat.c: Likewise.
3242         * mips-linux-nat.c: Likewise.
3243         * nat/linux-btrace.c: Likewise.
3244         * nat/linux-ptrace.c: Likewise.
3245         * nat/linux-ptrace.h
3246         * nat/mips-linux-watch.c: Likewise.
3247         * nat/x86-linux-dregs.c: Likewise.
3248         * ppc-linux-nat.c: Likewise.
3249         * s390-linux-nat.c: Likewise.
3250         * spu-linux-nat.c: Likewise.
3251         * tilegx-linux-nat.c: Likewise.
3252         * x86-linux-nat.c: Likewise.
3253         * xtensa-linux-nat.c: Likewise.
3254
3255 2015-07-24  Pedro Alves  <palves@redhat.com>
3256
3257         * ptrace.m4 (ptrace tests): Test in C++ mode.  Try with 'enum
3258         __ptrace_request as first parameter type instead of int.
3259         (PTRACE_TYPE_ARG1): Define.
3260         * nat/gdb_ptrace.h [!PTRACE_TYPE_ARG5] (ptrace): Define as wrapper
3261         that casts first argument to PTRACE_TYPE_ARG1.
3262         * config.in: Regenerate.
3263         * configure: Regenerate.
3264
3265 2015-07-24  Pedro Alves  <palves@redhat.com>
3266
3267         * gdb_ptrace.h: Move ...
3268         * nat/gdb_ptrace.h: ... here.
3269         * inf-ptrace.c: Adjust.
3270
3271 2015-07-24  Pedro Alves  <palves@redhat.com>
3272
3273         * acinclude.m4: Include ptrace.m4.
3274         * configure.ac: Call GDB_AC_PTRACE and move ptrace checks ...
3275         * ptrace.m4: ... to this new file.
3276
3277 2015-07-23  Doug Evans  <dje@google.com>
3278
3279         * dwarf2read.c (dwarf2_per_cu_data): Add comment.
3280         (load_cu): Handle dummy CUs.
3281         (dw2_do_instantiate_symtab, process_queuef): Ditto.
3282         (dwarf2_fetch_die_loc_sect_off, dwarf2_fetch_constant_bytes): Ditto.
3283
3284 2015-07-23  Ciro Santilli  <ciro.santilli@gmail.com>  (tiny patch)
3285
3286         * py-linetable.c (ltpy_get_all_source_lines): Adjust function
3287         documentation to say that it returns a list rather than
3288         a FrozenSet.
3289         (linetable_object_methods): Update the docstring of the
3290         "source_line" entry.
3291
3292 2015-07-23  Pierre-Marie de Rodat  <derodat@adacore.com>
3293
3294         * gdbtypes.c (resolve_dynamic_array): Pass the peeled element
3295         type to the recursive call instead of the original (maybe
3296         TYPE_CODE_TYPEDEF) type.
3297
3298 2015-07-23  Yao Qi  <yao.qi@linaro.org>
3299
3300         * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): If
3301         TYPE is watchpoint, return zero if aarch64_num_wp_regs is zero.
3302         If TYPE is breakpoint, return zero if arch64_num_bp_regs is zero.
3303
3304 2015-07-21  Yao Qi  <yao.qi@linaro.org>
3305
3306         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
3307         Move it to nat/aarch64-linux-hw-point.c.
3308         (aarch64_linux_child_post_startup_inferior): Update.
3309         * nat/aarch64-linux-hw-point.c (aarch64_linux_get_debug_reg_capacity):
3310         New function.
3311         * nat/aarch64-linux-hw-point.h (aarch64_linux_get_debug_reg_capacity):
3312         Declare it.
3313
3314 2015-07-21  Markus Metzger  <markus.t.metzger@intel.com>
3315
3316         * common/btrace-common.c (btrace_data_append): Change case label.
3317
3318 2015-07-20  Yao Qi  <yao.qi@linaro.org>
3319
3320         * nat/aarch64-linux-hw-point.c (aarch64_handle_unaligned_watchpoint):
3321         Re-indent the code.
3322         * nat/aarch64-linux-hw-point.h: Use ULONGEST rather than
3323         "unsigned long long".
3324
3325 2015-07-18  Kevin Buettner  <kevinb@redhat.com>
3326
3327         * dwarf2read.c (dwarf2_locate_sections): Allow has_section_at_zero
3328         to be set for SEC_ALLOC sections too.
3329
3330 2015-07-17  Yao Qi  <yao.qi@linaro.org>
3331
3332         * Makefile.in (HFILES_NO_SRCDIR): Add
3333         nat/aarch64-linux-hw-point.h.
3334         (aarch64-linux-hw-point.o): New rule.
3335         * nat/aarch64-linux-hw-point.h: New file.
3336         * nat/aarch64-linux-hw-point.c: New file.
3337         * aarch64-linux-nat.c: Include nat/aarch64-linux-hw-point.h.
3338         (AARCH64_HBP_MAX_NUM): Move to nat/aarch64-linux-hw-point.h.
3339         (AARCH64_HWP_MAX_NUM, AARCH64_HBP_ALIGNMENT): Likewise.
3340         (AARCH64_HWP_ALIGNMENT): Likewise.
3341         (AARCH64_HWP_MAX_LEN_PER_REG): Likewise.
3342         (AARCH64_DEBUG_NUM_SLOTS, AARCH64_DEBUG_ARCH): Likewise.
3343         (AARCH64_DEBUG_ARCH_V8, DR_MARK_ALL_CHANGED): Likewise.
3344         (DR_MARK_N_CHANGED, DR_CLEAR_CHANGED): Likewise.
3345         (DR_HAS_CHANGED, DR_N_HAS_CHANGE): Likewise.
3346         (aarch64_num_bp_regs, aarch64_num_wp_regs): Likewise.
3347         (struct aarch64_debug_reg_state): Likewise.
3348         (struct arch_lwp_info): Likewise.
3349         (aarch64_linux_set_debug_regs): Likewise.
3350         (aarch64_notify_debug_reg_change): Remove static.
3351         (aarch64_align_watchpoint): Likewise.
3352         (DR_CONTROL_ENABLED, DR_CONTROL_LENGTH): Likewise.
3353         (aarch64_watchpoint_length): Likewise.
3354         (aarch64_point_encode_ctrl_reg): Likewise
3355         (aarch64_point_is_aligned): Likewise.
3356         (aarch64_dr_state_insert_one_point): Likewise.
3357         (aarch64_dr_state_remove_one_point): Likewise.
3358         (aarch64_handle_breakpoint): Likewise.
3359         (aarch64_handle_aligned_watchpoint): Likewise.
3360         (aarch64_handle_unaligned_watchpoint): Likewise.
3361         (aarch64_handle_watchpoint): Likewise.
3362         * config/aarch64/linux.mh (NAT_FILE): Add
3363         aarch64-linux-hw-point.o.
3364
3365 2015-07-17  Yao Qi  <yao.qi@linaro.org>
3366
3367         * aarch64-linux-nat.c (aarch64_handle_breakpoint): Add argument
3368         state and don't call aarch64_get_debug_reg_state.  All callers
3369         update.
3370         (aarch64_linux_insert_hw_breakpoint): Call
3371         aarch64_get_debug_reg_state earlier.
3372         (aarch64_linux_remove_hw_breakpoint): Likewise.
3373         (aarch64_handle_aligned_watchpoint): Add argument state and
3374         don't call aarch64_get_debug_reg_state.  All callers update.
3375         (aarch64_handle_unaligned_watchpoint): Likewise.
3376         (aarch64_handle_watchpoint): Add argument state.
3377         (aarch64_linux_insert_watchpoint): Call aarch64_get_debug_reg_state
3378         earlier.
3379         (aarch64_linux_remove_watchpoint): Likewise.
3380
3381 2015-07-17  Yao Qi  <yao.qi@linaro.org>
3382
3383         * aarch64-linux-nat.c (aarch64_show_debug_reg_state): Use
3384         debug_printf.
3385         (aarch64_handle_unaligned_watchpoint): Likewise.
3386
3387 2015-07-17  Yao Qi  <yao.qi@linaro.org>
3388
3389         * aarch64-linux-nat.c (aarch64_dr_state_insert_one_point): Change
3390         argument type's type to 'enum target_hw_bp_type'.
3391         (aarch64_dr_state_remove_one_point): Likewise.
3392         (aarch64_handle_breakpoint): Likewise.
3393         (aarch64_linux_insert_hw_breakpoint): Likewise.
3394         (aarch64_linux_remove_hw_breakpoint): Likewise.
3395         (aarch64_handle_aligned_watchpoint): Likewise.
3396
3397 2015-07-17  Yao Qi  <yao.qi@linaro.org>
3398
3399         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Call
3400         ptid_get_pid instead of get_thread_id.
3401
3402 2015-07-17  Yao Qi  <yao.qi@linaro.org>
3403
3404         * remote.c (get_current_thread): Initialise ptid to null_ptid.
3405         (add_current_inferior_and_thread): Don't initialise ptid.
3406
3407 2015-07-16  Pierre Langlois  <pierre.langlois@arm.com>
3408
3409         * aarch64-tdep.c (aarch64_pseudo_read_value): Mark S register as
3410         unavailable if invalid.
3411
3412 2015-07-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
3413
3414         Revert the previous 6 commits:
3415         Create empty nat/linux-maps.[ch] and common/target-utils.[ch].
3416         Move gdb_regex* to common/
3417         Prepare linux_find_memory_regions_full & co. for move
3418         Move linux_find_memory_regions_full & co.
3419         gdbserver build-id attribute generator
3420         Validate symbol file using build-id
3421
3422 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
3423             Jan Kratochvil  <jan.kratochvil@redhat.com>
3424
3425         Validate symbol file using build-id.
3426         * NEWS (Changes since GDB 7.10): Add 'set validate-build-id'
3427         and 'show validate-build-id'.  Add build-id attribute.
3428         * solib-darwin.c (_initialize_darwin_solib): Assign validate value.
3429         * solib-dsbt.c (_initialize_dsbt_solib): Ditto.
3430         * solib-frv.c (_initialize_frv_solib): Ditto.
3431         * solib-spu.c (set_spu_solib_ops): Ditto.
3432         * solib-svr4.c: Include rsp-low.h.
3433         (NOTE_GNU_BUILD_ID_NAME): New define.
3434         (svr4_validate): New function.
3435         (svr4_copy_library_list): Duplicate field build_id.
3436         (library_list_start_library): Parse 'build-id' attribute.
3437         (svr4_library_attributes): Add 'build-id' attribute.
3438         (_initialize_svr4_solib): Assign validate value.
3439         * solib-target.c (solib.h): Include.
3440         (_initialize_solib_target): Assign validate value.
3441         * solib.c (validate_build_id, show_validate_build_id): New.
3442         (solib_map_sections): Use ops->validate.
3443         (clear_so): Free build_id.
3444         (default_solib_validate): New function.
3445         (_initialize_solib): Add "validate-build-id".
3446         * solib.h (default_solib_validate): New declaration.
3447         * solist.h (struct so_list): New fields 'build_idsz' and 'build_id'.
3448         (target_so_ops): New field 'validate'.
3449
3450 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
3451             Jan Kratochvil  <jan.kratochvil@redhat.com>
3452
3453         gdbserver build-id attribute generator.
3454         * features/library-list-svr4.dtd (library-list-svr4): New
3455         'build-id' attribute.
3456
3457 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
3458             Jan Kratochvil  <jan.kratochvil@redhat.com>
3459
3460         Move linux_find_memory_regions_full & co.
3461         * linux-tdep.c (nat/linux-maps.h): Include.
3462         (gdb_regex.h): Remove the include.
3463         (enum filterflags, struct smaps_vmflags, read_mapping, decode_vmflags)
3464         (mapping_is_anonymous_p, dump_mapping_p): Moved to nat/linux-maps.c.
3465         (linux_find_memory_region_ftype): Moved typedef to nat/linux-maps.h.
3466         (linux_find_memory_regions_full): Moved definition to nat/linux-maps.c.
3467         * nat/linux-maps.c: Include ctype.h, target/target-utils.h, gdb_regex.h
3468         and target/target.h.
3469         (struct smaps_vmflags, read_mapping, decode_vmflags)
3470         (mapping_is_anonymous_p, dump_mapping_p): Move from linux-tdep.c.
3471         (linux_find_memory_regions_full): Move from linux-tdep.c.
3472         * nat/linux-maps.h (read_mapping): New declaration.
3473         (linux_find_memory_region_ftype, enum filterflags): Moved from
3474         linux-tdep.c.
3475         (linux_find_memory_regions_full): New declaration.
3476         * target.c (target/target-utils.h): Include.
3477         (read_alloc_pread_ftype): Moved typedef to target/target-utils.h.
3478         (read_alloc, read_stralloc_func_ftype, read_stralloc): Moved
3479         definitions to target/target-utils.c.
3480         * target.h (target_fileio_read_stralloc): Move it to target/target.h.
3481         * target/target-utils.c (read_alloc, read_stralloc): Move definitions
3482         from target.c.
3483         * target/target-utils.h (read_alloc_pread_ftype): New typedef.
3484         (read_alloc): New declaration.
3485         (read_stralloc_func_ftype): New typedef.
3486         (read_stralloc): New declaration.
3487         * target/target.h (target_fileio_read_stralloc): Move it from target.h.
3488
3489 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
3490             Jan Kratochvil  <jan.kratochvil@redhat.com>
3491
3492         Prepare linux_find_memory_regions_full & co. for move.
3493         * linux-tdep.c (linux_find_memory_region_ftype): Comment.
3494         (linux_find_memory_regions_full): Change signature and prepare
3495         for moving to linux-maps.
3496         (linux_find_memory_regions_data): Rename field 'obfd' to 'data'.
3497         (linux_find_memory_regions_thunk): New.
3498         (linux_find_memory_regions_thunk): Use 'data' field instead of 'obfd'.
3499         (linux_find_memory_regions_gdb): New.
3500         (linux_find_memory_regions): Rename argument 'obfd' to 'func_data'.
3501         (linux_make_mappings_corefile_notes): Use
3502         linux_find_memory_regions_gdb.
3503         * target.c (read_alloc_pread_ftype): New typedef.
3504         (target_fileio_read_alloc_1_pread): New function.
3505         (read_alloc): Refactor from target_fileio_read_alloc_1.
3506         (read_stralloc_func_ftype): New typedef.
3507         (target_fileio_read_alloc_1): New implementation. Use read_alloc.
3508         (read_stralloc): Refactored from target_fileio_read_stralloc.
3509         (target_fileio_read_stralloc): New implementation, use read_stralloc.
3510
3511 2015-07-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
3512
3513         * Makefile.in (HFILES_NO_SRCDIR): Change gdb_regex.h to
3514         common/gdb_regex.h.
3515         (COMMON_OBS): Add gdb_regex.o.
3516         (gdb_regex.o): New.
3517         * common/common.m4 (GDB_AC_COMMON): Add gdb_use_included_regex,
3518         --without-included-regex and USE_INCLUDED_REGEX.
3519         * common/gdb_regex.c: New file from utils.c functions.
3520         * common/gdb_regex.h: Move it here from gdb_regex.h, update include
3521         file wrapping define name.
3522         * configure: Rebuilt.
3523         * configure.ac (gdb_use_included_regex, --without-included-regex)
3524         (USE_INCLUDED_REGEX): Move them to common/common.m4.
3525         * gdb_regex.h: Move it to common/gdb_regex.h.
3526         * utils.c: Remove include gdb_regex.h.
3527         (do_regfree_cleanup, make_regfree_cleanup, get_regcomp_error)
3528         (compile_rx_or_error): Move them to common/gdb_regex.c.
3529
3530 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
3531             Jan Kratochvil  <jan.kratochvil@redhat.com>
3532
3533         Create empty nat/linux-maps.[ch] and common/target-utils.[ch].
3534         * Makefile.in (HFILES_NO_SRCDIR); Add nat/linux-maps.h,
3535         common/target-utils.h.
3536         (COMMON_OBS): Add target-utils.o.
3537         (linux-maps.o, target-utils.o): New.
3538         * target/target-utils.c: New file.
3539         * target/target-utils.h: New file.
3540         * config/i386/linux.mh (NATDEPFILES): Add linux-maps.o.
3541         * config/i386/linux64.mh (NATDEPFILES): Ditto.
3542         * nat/linux-maps.c: New file.
3543         * nat/linux-maps.h: New file.
3544
3545 2015-07-15  Markus Metzger  <markus.t.metzger@intel.com>
3546             Pedro Alves <palves@redhat.com>
3547
3548         * nat/linux-btrace.c (perf_event_read): Change the type of DATA_HEAD.
3549         (perf_event_read_all): Change the type of SIZE and DATA_HEAD.
3550         (perf_event_read_bts): Change the type of SIZE and READ.
3551         (linux_enable_bts): Change the type of SIZE, PAGES, DATA_SIZE,
3552         and DATA_OFFSET.  Move DATA_SIZE declaration.  Restrict the buffer size
3553         to UINT_MAX.  Check for overflows when using DATA_HEAD from the perf
3554         mmap page.
3555         (linux_enable_pt): Change the type of PAGES and SIZE.  Restrict the
3556         buffer size to UINT_MAX.
3557         (linux_read_bts): Change the type of BUFFER_SIZE, SIZE, DATA_HEAD, and
3558         DATA_TAIL.
3559         * nat/linux-btrace.h (struct perf_event_buffer)<size, data_head>
3560         <last_head>: Change type.
3561         * common/btrace-common.h (struct btrace_dat_pt) <size>: Change type.
3562         * common/btrace-common.c (btrace_data_append): Change the type of
3563         SIZE.
3564         * btrace.c (parse_xml_raw): Change the type of SIZE.  Change oddness
3565         check.
3566
3567 2015-07-14  Simon Marchi  <simon.marchi@ericsson.com>
3568
3569         * gdbtypes.h (CHECK_TYPEDEF): Remove.
3570         * aarch64-tdep.c (aarch64_return_in_memory): Replace CHECK_TYPEDEF
3571         with check_typedef.
3572         * ada-lang.c (decode_constrained_packed_array_type): Likewise.
3573         (ada_array_length): Likewise.
3574         (find_parallel_type_by_descriptive_type): Likewise.
3575         (ada_check_typedef): Likewise.
3576         * arm-tdep.c (arm_return_in_memory): Likewise.
3577         * ax-gdb.c (gen_trace_static_fields): Likewise.
3578         (gen_struct_ref_recursive): Likewise.
3579         * c-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise.
3580         (variable: block COLONCOLON name): Likewise.
3581         (qualified_name: TYPENAME COLONCOLON name): Likewise.
3582         * c-lang.c (classify_type): Likewise.
3583         * c-typeprint.c (c_print_type): Likewise.
3584         (c_print_typedef): Likewise.
3585         (c_type_print_base): Likewise.
3586         * c-valprint.c (c_val_print): Likewise.
3587         * compile/compile-c-types.c (convert_type): Likewise.
3588         * compile/compile-object-load.c (get_out_value_type): Likewise.
3589         * completer.c (add_struct_fields): Likewise.
3590         (expression_completer): Likewise.
3591         * cp-namespace.c (cp_find_type_baseclass_by_name): Likewise.
3592         (cp_lookup_nested_symbol_1): Likewise.
3593         (cp_lookup_nested_symbol): Likewise.
3594         * cp-valprint.c (cp_print_value_fields): Likewise.
3595         (cp_print_static_field): Likewise.
3596         * d-valprint.c (d_val_print): Likewise.
3597         * eval.c (evaluate_subexp_standard): Likewise.
3598         (evaluate_subexp_for_sizeof): Likewise.
3599         * f-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise.
3600         * f-typeprint.c (f_type_print_base): Likewise.
3601         * f-valprint.c (f_val_print): Likewise.
3602         * gdbtypes.c (get_discrete_bounds): Likewise.
3603         (create_array_type_with_stride): Likewise.
3604         (type_name_no_tag_or_error): Likewise.
3605         (lookup_struct_elt_type): Likewise.
3606         (get_unsigned_type_max): Likewise.
3607         (internal_type_vptr_fieldno): Likewise.
3608         (set_type_vptr_fieldno): Likewise.
3609         (internal_type_vptr_basetype): Likewise.
3610         (set_type_vptr_basetype): Likewise.
3611         (get_vptr_fieldno): Likewise.
3612         (is_integral_type): Likewise.
3613         (is_scalar_type): Likewise.
3614         (is_scalar_type_recursive): Likewise.
3615         (distance_to_ancestor): Likewise.
3616         (is_unique_ancestor_worker): Likewise.
3617         (check_types_equal): Likewise.
3618         * gnu-v2-abi.c (gnuv2_value_rtti_type): Likewise.
3619
3620 2015-07-14  Iain Buclaw  <ibuclaw@gdcproject.org>
3621
3622         * dwarf2read.c (find_slot_in_mapped_hash): Extend language support to
3623         also test for language_d.
3624         (dwarf2_compute_name): Likewise.
3625         (read_func_scope): Likewise.
3626         (read_structure_type): Likewise.
3627         (new_symbol_full): Likewise.
3628         (determine_prefix): Likewise.
3629         (read_import_statement): Use dot as the separator for language_d.
3630         (typename_concat): Likewise, but don't prefix the D main function.
3631
3632 2015-07-14  Peter Bergner  <bergner@vnet.ibm.com>
3633
3634         * nat/linux-namespaces.c (setns): Rename from this ...
3635         (do_setns): ... to this.  Support calling setns if it exists.
3636         (mnsh_handle_setns): Call do_setns.
3637
3638 2015-07-13  Yao Qi  <yao.qi@linaro.org>
3639
3640         * exec.c (exec_file_attach): Add period at the end of error
3641         message.
3642
3643 2015-07-13  Andrew Burgess  <andrew.burgess@embecosm.com>
3644
3645         * tui/tui-win.c (window_name_completer): New function.
3646         (focus_completer): Call window_name_completer.  All old content
3647         moved into window_name_completer.
3648         (winheight_completer): New function.
3649         (_initialize_tui_win): Rename variable.  Add completer to
3650         winheight command.  Update doc string on winheight.
3651
3652 2015-07-12  Sandra Loosemore  <sandra@codesourcery.com>
3653
3654         * nios2-linux-tdep.c (_initialize_nios2_linux_tdep): Register
3655         all nios2 mach variants.
3656
3657 2015-07-10  Kevin Buettner  <kevinb@redhat.com>
3658
3659         * rx-tdep.c (rx_get_opcode_byte): Use target_read_code instead
3660         of target_read_memory.
3661
3662 2015-07-10  Andrew Burgess  <andrew.burgess@embecosm.com>
3663
3664         * tui/tui-win.c (tui_set_win_height): Use a cleanup to free the
3665         string copy.
3666         (parse_scrolling_args): Likewise.
3667
3668 2015-07-10  Andrew Burgess  <andrew.burgess@embecosm.com>
3669
3670         * tui/tui-win.c (focus_completer): Don't duplicate the tui window
3671         names in this function.
3672
3673 2015-07-10  Andrew Burgess  <andrew.burgess@embecosm.com>
3674
3675         * tui/tui-data.h (SRC_NAME): Convert to lower case.
3676         (CMD_NAME): Likewise.
3677         (DATA_NAME): Likewise.
3678         (DISASSEM_NAME): Likewise.
3679         * tui/tui-win.c (tui_set_focus): Window names are now lower case.
3680         (tui_set_win_height): Likewise.
3681         (parse_scrolling_args): Likewise.
3682
3683 2015-07-10  Markus Metzger  <markus.t.metzger@intel.com>
3684
3685         * record-btrace.c (record_btrace_goto_begin)
3686         (record_btrace_goto_end, record_btrace_goto): Move call to
3687         print_stack_frame ...
3688         (record_btrace_set_replay): ... here.  Set stop_pc.
3689         * record-full.c (record_full_goto_entry): Set stop_pc.
3690
3691 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
3692
3693         * NEWS: Mention support for tracepoints on aarch64-linux.
3694
3695 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
3696
3697         * linux-aarch64-low.c (aarch64_supports_tracepoints): New
3698         function.  Return 1.
3699         (the_low_target): Install it.
3700
3701 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
3702
3703         * gdb.trace/backtrace.exp: Set registers for aarch64 target.
3704         * gdb.trace/collection.exp: Likewise.
3705         * gdb.trace/mi-trace-frame-collected.exp: Likewise.
3706         * gdb.trace/mi-trace-unavailable.exp: Likewise.
3707         * gdb.trace/report.exp: Likewise.
3708         * gdb.trace/trace-break.exp: Likewise.
3709         * gdb.trace/unavailable.exp: Likewise.
3710         * gdb.trace/while-dyn.exp: Likewise.
3711
3712 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
3713
3714         * aarch64-tdep.c: Add ax.h and ax-gdb.h includes.
3715         (aarch64_gen_return_address): New function.
3716         (aarch64_gdbarch_init): Hook it.
3717
3718 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
3719
3720         * aarch64-tdep.c (aarch64_make_stub_cache): Set available_p and
3721         swallow NOT_AVAILABLE_ERROR.
3722         (aarch64_stub_this_id): Call frame_id_build_unavailable_stack if
3723         available_p is not set.
3724         (aarch64_stub_frame_unwind_stop_reason): New function.
3725         (aarch64_stub_unwind): Install it.
3726
3727 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
3728
3729         * aarch64-tdep.c (aarch64_prologue_cache) <available_p>: New
3730         field.
3731         (aarch64_make_prologue_cache_1): New function, factored out from
3732         aarch64_make_prologue_cache.  Do not allocate cache.  Set
3733         available_p.
3734         (aarch64_make_prologue_cache): Reimplement wrapping
3735         aarch64_make_prologue_cache_1, and swallowing
3736         NOT_AVAILABLE_ERROR.
3737         (aarch64_prologue_frame_unwind_stop_reason): New function.
3738         Return UNWIND_UNAVAILABLE if available_p is not set.
3739         (aarch64_prologue_unwind): Install it.
3740         (aarch64_prologue_this_id): Move prev_pc and prev_sp limit
3741         checks into aarch64_prologue_frame_unwind_stop_reason.  Call
3742         frame_id_build_unavailable_stack if available_p is not set.
3743
3744 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
3745
3746         * aarch64-tdep.c (aarch64_prologue_cache) <func, prev_pc>: New
3747         fields.
3748         (aarch64_scan_prologue): Set prev_pc.
3749         (aarch64_make_prologue_cache): Set func.
3750         (aarch64_make_stub_cache): Set prev_pc.
3751         (aarch64_prologue_this_id): Remove local variables id, pc and
3752         func.  Read prev_pc and func from cache.
3753         (aarch64_stub_this_id): Read prev_pc from cache.
3754
3755 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
3756
3757         * aarch64-tdep.c (aarch64_make_stub_cache): Update comment.  New
3758         argument this_cache.  Remove unused local variables reg and
3759         unwound_fp.  Return early if this_cache is already set.  Set
3760         this_cache.
3761         (aarch64_stub_this_id): Update call to aarch64_make_stub_cache.
3762
3763 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
3764
3765         * aarch64-tdep.c (aarch64_make_prologue_cache): Update comment.
3766         New argument this_cache.  Return early if this_cache is already
3767         set.  Set this_cache.
3768         (aarch64_prologue_this_id): Update call to
3769         aarch64_make_prologue_cache.
3770         (aarch64_prologue_prev_register): Likewise.
3771         (aarch64_normal_frame_base): Likewise.
3772
3773 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
3774
3775         * c-valprint.c (c_val_print): Factor out memberptr printing code
3776         from c_val_print to ...
3777         (c_val_print_memberptr): ... this new function.
3778
3779 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
3780
3781         * c-valprint.c (c_val_print): Factor out int printing code to ...
3782         (c_val_print_int): ... this new function.
3783
3784 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
3785
3786         * c-valprint.c (c_val_print): Factor out struct and union
3787         printing code to ...
3788         (c_val_print_struct): ... this new function ...
3789         (c_val_print_union): ... and this new function.
3790
3791 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
3792
3793         * c-valprint.c (c_val_print): Factor out pointer printing code
3794         to ...
3795         (c_val_print_ptr): ... this new function.
3796
3797 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
3798
3799         * c-valprint.c (c_valprint): Factor our array printing code from
3800         c_val_print to ...
3801         (c_val_print_array): ... this new function.
3802
3803 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
3804
3805         * c-valprint.c (c_val_print): Factor out pointer printing code
3806         to ...
3807         (print_unpacked_pointer): ... this new function.
3808
3809 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
3810
3811         * c-valprint.c (c_val_print): Remove an assignment to i and move
3812         its declaration.
3813
3814 2015-07-09  Yao Qi  <yao.qi@linaro.org>
3815
3816         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Add
3817         argument ptid.  Update comments.  Caller update.
3818
3819 2015-07-09  Markus Metzger  <markus.t.metzger@intel.com>
3820
3821         * btrace.c (pt_print_packet): Print stop, vmcs, tma, mtc, cyc, and
3822         mnt packets.
3823
3824 2015-07-09  Markus Metzger  <markus.t.metzger@intel.com>
3825
3826         * btrace.c (btrace_pt_readmem_callback): Change type of PC argument.
3827
3828 2015-07-08  Simon Marchi  <simon.marchi@ericsson.com>
3829
3830         * progspace.c (delete_program_space): Add missing spaces.
3831
3832 2015-07-08  Simon Marchi  <simon.marchi@ericsson.com>
3833
3834         * inferior.c (delete_inferior_1): Rename to ...
3835         (delete_inferior): ..., remove 'silent' parameter, delete
3836         program space when unused and remove call to prune_program_spaces.
3837         Remove the old, unused, delete_inferior.
3838         (delete_inferior_silent): Remove.
3839         (prune_inferiors): Change call from delete_inferior_1 to
3840         delete_inferior and remove 'silent' parameter. Remove call to
3841         prune_program_spaces.
3842         (remove_inferior_command): Idem.
3843         * inferior.h (delete_inferior_1): Rename to...
3844         (delete_inferior): ..., remove 'silent' parameter and remove the
3845         original delete_inferior.
3846         (delete_inferior_silent): Remove.
3847         * mi/mi-main.c (mi_cmd_remove_inferior): Change call from
3848         delete_inferior_1 to delete_inferior and remove 'silent'
3849         parameter.
3850         * progspace.c (prune_program_spaces): Remove.
3851         (pspace_empty_p): Rename to...
3852         (program_space_empty_p): ... and make non-static.
3853         (delete_program_space): New.
3854         * progspace.h (prune_program_spaces): Remove declaration.
3855         (program_space_empty_p): New declaration.
3856         (delete_program_space): New declaration.
3857         * monitor.c (monitor_close): Replace call to
3858         delete_thread_silent and delete_inferior_silent with
3859         discard_all_inferiors.
3860
3861 2015-07-08  Patrick Palka  <patrick@parcs.ath.cx>
3862
3863         * defs.h (deprecated_register_changed_hook): Remove prototype.
3864         * interps.c (clear_iterpreter_hooks): Remove reference to
3865         deprecated_register_changed_hook.
3866         * top.c (deprecated_register_changed_hook): Remove prototype.
3867         * valops.c (value_assign): Remove reference to
3868         deprecated_register_changed_hook.
3869         * tui/tui-hooks.c (tui_register_changed): Add parameter "frame".
3870         Add comment documenting the function.
3871         (tui_register_changed_observer): Define.
3872         (tui_install_hooks): Remove reference to
3873         deprecated_register_changed_hook.  Set
3874         tui_register_changed_observer.
3875         (tui_remove_hooks): Remove reference to
3876         deprecated_register_changed_hook.  Unset
3877         tui_register_changed_observer.
3878
3879 2015-07-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
3880
3881         PR compile/18484
3882         * compile/compile-c-types.c (insert_type): Change gdb_assert to error.
3883
3884 2015-07-08  Robert O'Callahan  <robert@ocallahan.org>
3885
3886         PR exp/18617
3887         * ax-gdb.c (gen_conversion): Extend to 'to' bits, not 'from'.
3888
3889 2015-07-08  Markus Metzger  <markus.t.metzger@intel.com>
3890
3891         * MAINTAINERS (Write After Approval): Add Markus T. Metzger.
3892
3893 2015-07-08  Markus Metzger  <markus.t.metzger@intel.com>
3894
3895         * nat/linux-btrace.c (kernel_supports_bts, kernel_supports_pt):
3896         Use safe_strerror() instead of strerror().
3897
3898 2015-07-07  Yao Qi  <yao.qi@linaro.org>
3899
3900         * features/arm-with-m-fpa-layout.xml: Set architecture to arm.
3901         * features/arm-with-m-fpa-layout.c: Regenerated.
3902         * features/arm-with-m-vfp-d16.xml: Likewise.
3903         * features/arm-with-m-vfp-d16.c: Regenerated.
3904         * features/arm-with-m.xml: Likewise.
3905         * features/arm-with-m.c: Regenerated.
3906         * features/arm-with-neon.xml: Likewise.
3907         * features/arm-with-neon.c: Regenerated.
3908         * features/arm-with-vfpv2.xml: Likewise.
3909         * features/arm-with-vfpv2.c: Regenerated.
3910         * features/arm-with-vfpv3.xml: Likewise.
3911         * features/arm-with-vfpv3.c: Regenerated.
3912
3913 2015-07-07  Yao Qi  <yao.qi@linaro.org>
3914
3915         * aarch32-linux-nat.h (VFP_REGS_SIZE): New macro, moved from
3916         arm-linux-nat.c.
3917         * aarch64-linux-nat.c: Include aarch32-linux-nat.h and
3918         elf/external.h.
3919         (fetch_gregs_from_thread): Call aarch32_gp_regcache_supply
3920         if target is 32-bit.
3921         (store_gregs_to_thread): Call aarch32_gp_regcache_collect
3922         if target is 32-bit.
3923         (fetch_fpregs_from_thread): Call aarch32_vfp_regcache_supply
3924         if target is 32-bit.
3925         (store_fpregs_to_thread): Call aarch32_vfp_regcache_collect
3926         if target is 32-bit.
3927         (tdesc_arm_with_vfpv3, tdesc_arm_with_neon): Declare.
3928         (aarch64_linux_read_description): Return the right target
3929         description.
3930         * arm-linux-nat.c (VFP_REGS_SIZE): Moved to aarch32-linux-nat.h.
3931         * config/aarch64/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o.
3932         * configure.tgt (aarch64*-*-linux*): Add arm-tdep.o and
3933         arm-linux-tdep.o.
3934
3935 2015-07-07  Yao Qi  <yao.qi@linaro.org>
3936
3937         * aarch32-linux-nat.c: New file.
3938         * aarch32-linux-nat.h: New file.
3939         * arm-linux-nat.c: Include aarch32-linux-nat.h.
3940         (fetch_regs): Move code to aarch32-linux-nat.c.  Call
3941         aarch32_gp_regcache_supply.
3942         (store_regs): Move code to aarch32-linux-nat.c.  Call
3943         aarch32_gp_regcache_collect.
3944         (fetch_vfp_regs): Move code to aarch32-linux-nat.c.  Call
3945         aarch32_vfp_regcache_supply.
3946         (store_vfp_regs): Move code to aarch32-linux-nat.c.  Call
3947         aarch32_vfp_regcache_collect.
3948         * config/arm/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o.
3949
3950 2015-07-07  Yao Qi  <yao.qi@linaro.org>
3951
3952         * arm-linux-nat.c (store_fpregister): Remove.
3953         (store_register): Likewise.
3954         (fetch_fpregister): Likewise.
3955         (fetch_register): Likewise.
3956         (arm_linux_store_inferior_registers): Call store_regs and
3957         store_fpregs instead.
3958         (arm_linux_fetch_inferior_registers): Call fetch_fpregs and
3959         fetch_regs instead.
3960
3961 2015-07-06  Andrew Burgess  <andrew.burgess@embecosm.com>
3962
3963         * doc/gdb.texinfo (TUI): Restructure documentation on TUI layout
3964         and focus commands.
3965
3966 2015-07-06  Joel Brobecker  <brobecker@adacore.com>
3967
3968         * NEWS: Create a new section for the next release branch.
3969         Rename the section of the current branch, now that it has
3970         been cut.
3971
3972 2015-07-06  Joel Brobecker  <brobecker@adacore.com>
3973
3974         GDB 7.10 branch created (66c4b3e8a628a207bc6aafef6af0c4128195f56e):
3975         * version.in: Bump version to 7.10.50.DATE-cvs.
3976
3977 2015-07-06  Luis Machado  <lgustavo@codesourcery.com>
3978
3979         * breakpoint.c (remove_breakpoint_1): Don't handle permanent
3980         breakpoints in a special way.
3981         (remove_breakpoint): Likewise.
3982         (mark_breakpoints_out): Likewise.
3983
3984 2015-07-06  Andrew Burgess  <andrew.burgess@embecosm.com>
3985
3986         * doc/gdb.texinfo (TUI): Add comma after @xref.
3987
3988 2015-07-06  Andrew Burgess  <andrew.burgess@embecosm.com>
3989
3990         * tui/tui-win.c (tui_set_focus): Use structure member 'generic'
3991         instead of casting the structure type.
3992
3993 2015-07-06  Simon Marchi  <simon.marchi@ericsson.com>
3994
3995         * valops.c (search_struct_field): Remove OFFSET parameter.
3996         (value_cast_structs): Adjust calls to search_struct_field.
3997         (value_struct_elt): Same.
3998         (find_overload_match): Same.
3999
4000 2015-07-06  Simon Marchi  <simon.marchi@ericsson.com>
4001
4002         * value.c (value_fetch_lazy): Update comment, change return
4003         value to void.
4004         * value.h (value_fetch_lazy): Change return value to void.
4005
4006 2015-07-06  Andrew Burgess  <andrew.burgess@embecosm.com>
4007
4008         * tui/tui-data.c (tui_partial_win_by_name): Window name is const.
4009         (tui_win_name): Make parameter and result const.
4010         * tui/tui-data.h (tui_win_name): Make parameter and result const.
4011
4012 2015-07-06  Patrick Palka  <patrick@parcs.ath.cx>
4013
4014         * i386-tdep.c (i386_mpx_info_bounds): Don't call error, instead
4015         use printf_unfiltered.
4016         (set_mpx_cmd): Add missing trailing space to command string
4017         literal.
4018         (_initialize_i386_tdep): Give the "mpx" prefix command its
4019         correct name.
4020
4021 2015-07-02  Kevin Buettner  <kevinb@redhat.com>
4022
4023         * rx-tdep.c (RX_USP_REGNUM, RX_BPC_REGNUM): New constants.
4024         (enum rx_frame_type): New.
4025         (struct rx_prologue): Add new field `frame_type'.
4026         (rx_analyze_prologue): Add `frame_type' parameter. Cache this
4027         parameter in the prologue struct.  Add code for recording
4028         locations of PC and PSW for fast interrupt and exception frames.
4029         (rx_skip_prologue): Adjust call to rx_analyze_prologue.
4030         (rx_analyze_frame_prologue): Add `frame_type' parameter.
4031         (rx_frame_type): New function.
4032         (rx_frame_base): Fetch frame type and pass it to rx_analyze_prologue.
4033         (rx_frame_this_id): Rename parameter `this_prologue_cache' to
4034         `this_cache'.
4035         (rx_frame_prev_register): Rename parameter `this_prologue_cache' to
4036         `this_cache'.  Add cases for RX_FRAME_TYPE_EXCEPTION and
4037         RX_FRAME_TYPE_FAST_INTERRUPT.
4038         (normal_frame_p, exception_frame_p, rx_frame_sniffer_common)
4039         (rx_frame_sniffer, rx_exception_sniffer): New functions.
4040         (rx_frame_unwind): Use rx_frame_sniffer instead of
4041         default_frame_sniffer.
4042         (rx_frame_unwind): New unwinder.
4043         (rx_gdbarch_init): Register new unwinder.
4044
4045 2015-07-02  Kevin Buettner  <kevinb@redhat.com>
4046
4047         * rx-tdep.c (RX_BPSW_REGNUM, RX_FPSW_REGNUM): New constants.
4048         (struct gdbarch_tdep): Add fields rx_psw_type and rx_fpsw_type.
4049         (rx_register_type): Add cases for RX_PSW_REGNUM, RX_BPSW_REGNUM,
4050         and RX_FPSW_REGNUM.
4051         (rx_gdbarch_init): Initialize PSW, BPSW, and FPSW flags types.
4052
4053 2015-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4054
4055         Fix GCC false warning.
4056         * s390-linux-tdep.c (s390_handle_arg): Initialize VAL.
4057
4058 2015-07-02  Yao Qi  <yao.qi@linaro.org>
4059
4060         * aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint): Fix
4061         typo in the debugging message.
4062
4063 2015-07-02  Markus Metzger  <markus.t.metzger@intel.com>
4064
4065         * btrace.c: Include gdbcmd.h, cli/cli-utils.h, and ctype.h.
4066         (maint_btrace_cmdlist, maint_btrace_set_cmdlist)
4067         (maint_btrace_show_cmdlist, maint_btrace_pt_set_cmdlist)
4068         (maint_btrace_pt_show_cmdlist, maint_btrace_pt_skip_pad)
4069         (btrace_maint_clear): New.
4070         (btrace_fetch, btrace_clear): Call btrace_maint_clear.
4071         (pt_print_packet, btrace_maint_decode_pt)
4072         (btrace_maint_update_pt_packets, btrace_maint_update_packets)
4073         (btrace_maint_print_packets, get_uint, get_context_size, no_chunk)
4074         (maint_btrace_packet_history_cmd)
4075         (maint_btrace_clear_packet_history_cmd, maint_btrace_clear_cmd)
4076         (maint_btrace_cmd, maint_btrace_set_cmd, maint_btrace_show_cmd)
4077         (maint_btrace_pt_set_cmd, maint_btrace_pt_show_cmd)
4078         (maint_info_btrace_cmd, _initialize_btrace): New.
4079         * btrace.h (btrace_pt_packet, btrace_pt_packet_s)
4080         (btrace_maint_packet_history, btrace_maint_info): New.
4081         (btrace_thread_info) <maint>: New.
4082         * NEWS: Announce it.
4083
4084 2015-07-02  Markus Metzger  <markus.t.metzger@intel.com>
4085
4086         * btrace.c (btrace_fetch): Append the new trace data.
4087         (btrace_clear): Clear the stored trace data.
4088         * btrace.h (btrace_thread_info) <data>: New.
4089         * common/btrace-common.h (btrace_data_clear)
4090         (btrace_data_append): New.
4091         * common/btrace-common.c (btrace_data_clear)
4092         (btrace_data_append): New.
4093
4094 2015-07-02  Markus Metzger  <markus.t.metzger@intel.com>
4095
4096         * nat/linux-btrace.c (linux_enable_bts): Check for
4097         PERF_ATTR_SIZE_VER5.
4098         Check for data_offset and data_size fields.  Use them.
4099
4100 2015-07-02  Markus Metzger  <markus.t.metzger@intel.com>
4101
4102         * NEWS: Announce new commands "record btrace pt" and "record pt".
4103         Announce new options "set|show record btrace pt buffer-size".
4104         * btrace.c: Include "rsp-low.h".
4105         Include "inttypes.h".
4106         (btrace_add_pc): Add forward declaration.
4107         (pt_reclassify_insn, ftrace_add_pt, btrace_pt_readmem_callback)
4108         (pt_translate_cpu_vendor, btrace_finalize_ftrace_pt)
4109         (btrace_compute_ftrace_pt): New.
4110         (btrace_compute_ftrace): Support BTRACE_FORMAT_PT.
4111         (check_xml_btrace_version): Update version check.
4112         (parse_xml_raw, parse_xml_btrace_pt_config_cpu)
4113         (parse_xml_btrace_pt_raw, parse_xml_btrace_pt)
4114         (btrace_pt_config_cpu_attributes, btrace_pt_config_children)
4115         (btrace_pt_children): New.
4116         (btrace_children): Add support for "pt".
4117         (parse_xml_btrace_conf_pt, btrace_conf_pt_attributes): New.
4118         (btrace_conf_children): Add support for "pt".
4119         * btrace.h: Include "intel-pt.h".
4120         (btrace_pt_error): New.
4121         * common/btrace-common.c (btrace_format_string, btrace_data_fini)
4122         (btrace_data_empty): Support BTRACE_FORMAT_PT.
4123         * common/btrace-common.h (btrace_format): Add BTRACE_FORMAT_PT.
4124         (struct btrace_config_pt): New.
4125         (struct btrace_config)<pt>: New.
4126         (struct btrace_data_pt_config, struct btrace_data_pt): New.
4127         (struct btrace_data)<pt>: New.
4128         * features/btrace-conf.dtd (btrace-conf)<pt>: New.
4129         (pt): New.
4130         * features/btrace.dtd (btrace)<pt>: New.
4131         (pt, pt-config, cpu): New.
4132         * nat/linux-btrace.c (perf_event_read, perf_event_read_all)
4133         (perf_event_pt_event_type, kernel_supports_pt)
4134         (linux_supports_pt): New.
4135         (linux_supports_btrace): Support BTRACE_FORMAT_PT.
4136         (linux_enable_bts): Free tinfo on error.
4137         (linux_enable_pt): New.
4138         (linux_enable_btrace): Support BTRACE_FORMAT_PT.
4139         (linux_disable_pt): New.
4140         (linux_disable_btrace): Support BTRACE_FORMAT_PT.
4141         (linux_fill_btrace_pt_config, linux_read_pt): New.
4142         (linux_read_btrace): Support BTRACE_FORMAT_PT.
4143         * nat/linux-btrace.h (struct btrace_tinfo_pt): New.
4144         (struct btrace_target_info)<pt>: New.
4145         * record-btrace.c (set_record_btrace_pt_cmdlist)
4146         (show_record_btrace_pt_cmdlist): New.
4147         (record_btrace_print_pt_conf): New.
4148         (record_btrace_print_conf): Support BTRACE_FORMAT_PT.
4149         (btrace_ui_out_decode_error): Support BTRACE_FORMAT_PT.
4150         (cmd_record_btrace_pt_start): New.
4151         (cmd_record_btrace_start): Support BTRACE_FORMAT_PT.
4152         (cmd_set_record_btrace_pt, cmd_show_record_btrace_pt): New.
4153         (_initialize_record_btrace): Add new commands.
4154         * remote.c (PACKET_Qbtrace_pt, PACKET_Qbtrace_conf_pt_size): New.
4155         (remote_protocol_features): Add "Qbtrace:pt".
4156         Add "Qbtrace-conf:pt:size".
4157         (remote_supports_btrace): Support BTRACE_FORMAT_PT.
4158         (btrace_sync_conf): Support PACKET_Qbtrace_conf_pt_size.
4159         (remote_enable_btrace): Support BTRACE_FORMAT_PT.
4160         (_initialize_remote): Add new commands.
4161
4162 2015-07-02  Markus Metzger  <markus.t.metzger@intel.com>
4163
4164         * configure.ac: check for libipt
4165         * configure: Regenerate.
4166         * config.in: Regenerate.
4167         * Makefile.in (LIBIPT): New.
4168         (CLIBS): Add $LIBIPT.
4169         * NEWS: document new configure options
4170
4171 2015-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4172
4173         * compile/compile-object-load.c (compile_object_load): Replace debug
4174         message "lookup undefined ELF symbol" by 3 more specific messages.
4175
4176 2015-07-01  Kevin Buettner  <kevinb@redhat.com>
4177
4178         * rl78-tdep.c (struct gdbarch_tdep): Add new field, rl78_psw_type.
4179         (rl78_register_type): Add case for RL78_PSW_REGNUM.
4180         (rl78_gdbarch_init): Initialize rl78_psw_type.
4181
4182 2015-07-01  Patrick Palka  <patrick@parcs.ath.cx>
4183
4184         * tui/tui-hooks.c (tui_refresh_frame_and_register_information):
4185         Update commentary.  Always refresh the registers when frame
4186         information has changed.
4187         * tui/tui-stack.c (tui_show_frame_info): Update commentary.
4188         Change return type to int.  Return 1 if frame information has
4189         changed, 0 otherwise.
4190         (tui_before_prompt): Update commentary.
4191         * tui/tui-stack.h (tui_show_frame_info): Change return type to
4192         int.
4193
4194 2015-06-30  Patrick Palka  <patrick@parcs.ath.cx>
4195
4196         PR tui/13378
4197         * frame.c (select_frame): Remove reference to
4198         deprecated_selected_frame_level_changed_hook.
4199         * frame.h (deprecated_selected_frame_level_changed_hook): Remove
4200         declaration.
4201         * stack.c (deprecated_selected_frame_level_changed_hook):
4202         Likewise.
4203         * tui/tui-hooks.c (tui_selected_frame_level_changed_hook):
4204         Rename to ...
4205         (tui_refresh_frame_and_register_information): ... this.  Bail
4206         out if there is no stack.  Don't update register information
4207         unless registers_too_p is true.
4208         (tui_print_frame_info_listing_hook): Rename to ...
4209         (tui_dummy_print_frame_info_listing_hook): ... this.
4210         (tui_before_prompt): New function.
4211         (tui_normal_stop): New function.
4212         (tui_before_prompt_observer): New observer.
4213         (tui_normal_stop_observer): New observer.
4214         (tui_install_hooks): Set
4215         deprecated_print_frame_info_listing_hook to
4216         tui_dummy_print_frame_info_listing_hook.  Register
4217         tui_before_prompt_observer to call tui_before_prompt and
4218         tui_normal_stop_observer to call tui_normal_stop.  Remove
4219         reference to deprecated_selected_frame_level_changed_hook.
4220         (tui_remove_hooks): Detach and unset tui_before_prompt_observer
4221         and tui_normal_stop_observer.  Remove reference to
4222         deprecated_selected_frame_level_changed_hook.
4223
4224 2015-06-30  Patrick Palka  <patrick@parcs.ath.cx>
4225
4226         PR tui/13378
4227         * tui/tui-stack.c (tui_set_locator_info): Change prototype to
4228         return an int instead of void.  Return whether the locator
4229         window has changed.
4230         (tui_show_frame_info): If the locator info has not changed, then
4231         bail out early to avoid refreshing the windows.
4232
4233 2015-06-30  Patrick Palka  <patrick@parcs.ath.cx>
4234
4235         * tui/tui-stack.c (tui_set_locator_info): Explicitly pass
4236         LOCATOR_WIN to tui_alloc_content.
4237
4238 2015-06-30  Yao Qi  <yao.qi@linaro.org>
4239
4240         PR tdep/18605
4241         * arm-tdep.c (arm_get_next_pc_raw): Break for media
4242         instructions.
4243
4244 2015-06-29  Kevin Buettner  <kevinb@redhat.com>
4245
4246         * rx-tdep.c (RX_PSW_REGNUM): New enum constant.
4247         (rx_dwarf_reg_to_regnum): New function.
4248         (rx_gdbarch_init): Register rx_dwarf_reg_to_regnum.  Use dwarf2
4249         unwinding.
4250
4251 2015-06-29  Pedro Alves  <palves@redhat.com>
4252
4253         PR threads/18127
4254         * infcall.c (run_inferior_call): On infcall success, if the thread
4255         was marked stopped before, reset it back to stopped.
4256         * infrun.c (resume): Don't suppress the set_running calls when
4257         doing an infcall.
4258         (normal_stop): Only discard the finish_thread_state cleanup if the
4259         infcall succeeded.
4260
4261 2015-06-29  Pierre Langlois  <pierre.langlois@arm.com>
4262
4263         * MAINTAINERS (Write After Approval): Update my email address.
4264
4265 2015-06-26  Keith Seitz  <keiths@redhat.com>
4266             Doug Evans  <dje@google.com>
4267
4268         PR 16253
4269         * block.c (block_lookup_symbol): For non-function blocks,
4270         continue to search for a symbol with an exact domain match
4271         Otherwise, return any previously found "best domain" symbol.
4272         (block_lookup_symbol_primary): Likewise.
4273
4274 2015-06-26  Patrick Palka  <patrick@parcs.ath.cx>
4275
4276         * NEWS: Mention the new option "history remove-duplicates".
4277         * top.c (history_remove_duplicates): New static variable.
4278         (show_history_remove_duplicates): New static function.
4279         (gdb_add_history): Conditionally remove duplicate history
4280         entries.
4281         (init_main): Add "history remove-duplicates" option.
4282
4283 2015-06-26  Patrick Palka  <patrick@parcs.ath.cx>
4284
4285         * tui/tui-win.c (focus_completer): New static function.
4286         (_initialize_tui_win): Set the completion function of the
4287         "focus" command to focus_completer.
4288
4289 2015-06-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
4290
4291         * linespec.c (minsym_found): Reset sal.PC for COMPUNIT_LOCATIONS_VALID
4292         and language_asm..
4293         * symtab.c (find_function_start_sal): Likewise.
4294
4295 2015-06-25  Gary Benson  <gbenson@redhat.com>
4296
4297         * solib.c (solib_find_1): Set local variable sysroot to NULL if
4298         it is the empty string after trailing slashes have been stripped.
4299
4300 2015-06-25  Gary Benson  <gbenson@redhat.com>
4301
4302         * exec.c (exec_file_locate_attach): Remove gdb_sysroot NULL check.
4303         * infrun.c (follow_exec): Likewise.
4304         * remote.c (remote_filesystem_is_local): Likewise.
4305         * solib.c (solib_find_1): Likewise.
4306
4307 2015-06-24  Keith Seitz  <keiths@redhat.com>
4308
4309         * build-id.c (build_id_to_debug_bfd): Add cleanup to free
4310         return value from lrealpath.
4311
4312 2015-06-24  Mike Frysinger  <vapier@gentoo.org>
4313
4314         * remote-sim.c (gdbsim_open): Move sysroot update to the top.
4315
4316 2015-06-24  Mike Frysinger  <vapier@gentoo.org>
4317
4318         * remote-sim.c: Include gdb_bfd.h.
4319         (gdbsim_open): Declare new local sysroot pointing to gdb_sysroot.
4320         Skip TARGET_SYSROOT_PREFIX in gdb_sysroot when it is active.
4321
4322 2015-06-24  Yao Qi  <yao.qi@linaro.org>
4323
4324         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Don't call
4325         set_gdbarch_get_siginfo_type.
4326         * amd64-linux-tdep.c (amd64_linux_init_abi_common): Likewise.
4327         * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
4328         * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
4329         * m68klinux-tdep.c (m68k_linux_init_abi): Likewise.
4330         * ppc-linux-tdep.c (ppc_linux_init_abi): Likewise.
4331         * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
4332         * tilegx-linux-tdep.c (tilegx_linux_init_abi): Likewise.
4333         * linux-tdep.c (linux_get_siginfo_type): Change it to static.
4334         (linux_init_abi): Call set_gdbarch_get_siginfo_type.
4335         * linux-tdep.h (linux_get_siginfo_type): Remove the declaration.
4336
4337 2015-06-24  Gary Benson  <gbenson@redhat.com>
4338
4339         * common/buffer.c (stdint.h): Do not include.
4340         * common/print-utils.c (stdint.h): Likewise.
4341         * compile/compile-c-symbols.c (gdb_assert.h): Likewise.
4342         * compile/compile-c-types.c (gdb_assert.h): Likewise.
4343         * ft32-tdep.c (gdb_assert.h): Likewise.
4344         * guile/scm-utils.c (stdint.h): Likewise.
4345         * i386-linux-tdep.c (stdint.h): Likewise.
4346         * i386-tdep.c (stdint.h): Likewise.
4347         * nat/linux-btrace.c (stdint.h): Likewise.
4348         * nat/linux-btrace.h (stdint.h): Likewise.
4349         * nat/linux-ptrace.c (stdint.h): Likewise.
4350         * nat/mips-linux-watch.h (stdint.h): Likewise.
4351         * ppc-linux-nat.c (stdint.h): Likewise.
4352         * python/python-internal.h (stdint.h): Likewise.
4353         * stub-termcap.c (stdlib.h): Likewise.
4354         * target/target.h (stdint.h): Likewise.
4355         * xtensa-linux-nat.c (stdint.h): Likewise.
4356
4357 2015-06-23  Patrick Palka  <patrick@parcs.ath.cx>
4358
4359         * top.c (init_history): Look at errno after calling strtol to
4360         properly map large GDBHISTSIZE values to infinity.
4361
4362 2015-06-23  Doug Evans  <dje@google.com>
4363
4364         * inferior.h (struct inferior_suspend_state): Delete, unused.
4365         All references deleted.
4366
4367 2015-06-23  Mike Frysinger  <vapier@gentoo.org>
4368
4369         * microblaze-tdep.c (microblaze_push_dummy_code): Delete.
4370         (microblaze_push_dummy_call): Likewise.
4371         (microblaze_gdbarch_init): Delete calls to set_gdbarch_push_dummy_code
4372         and set_gdbarch_push_dummy_call.
4373
4374 2015-06-23  Yao Qi  <yao.qi@linaro.org>
4375
4376         * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers):
4377         Check whether have_ptrace_getregset is TRIBOOL_TRUE explicitly.
4378         (amd64_linux_store_inferior_registers): Likewise.
4379         * arm-linux-nat.c (fetch_fpregister): Likewise.
4380         (fetch_fpregs, store_fpregister): Likewise.
4381         (store_fpregister, store_fpregs): Likewise.
4382         (fetch_register, fetch_regs): Likewise.
4383         (store_register, store_regs): Likewise.
4384         (fetch_vfp_regs, store_vfp_regs): Likewise.
4385         (arm_linux_read_description): Check have_ptrace_getregset is
4386         TRIBOOL_UNKNOWN.  Set have_ptrace_getregset to TRIBOOL_TRUE
4387         or TRIBOOL_FALSE.
4388         * i386-linux-nat.c (fetch_xstateregs): Check
4389         have_ptrace_getregset is not TRIBOOL_TRUE.
4390         (store_xstateregs): Likewise.
4391         * linux-nat.c (have_ptrace_getregset): Change its type to
4392         enum tribool.
4393         * linux-nat.h (tribool): New enum.
4394         * x86-linux-nat.c (x86_linux_read_description): Use enum tribool.
4395         Check whether have_ptrace_getregset is TRIBOOL_TRUE.
4396
4397 2015-06-19  Doug Evans  <dje@google.com>
4398
4399         * NEWS: Mention Sun's version of stabs is no longer supported.
4400         * elfread.c (free_elfinfo): Delete.  All uses updated.
4401         (elfstab_offset_sections): Delete.  All uses updated.
4402         * gdb-stabs.h (stab_section_info): Delete.  All uses updated.
4403         * psympriv.h (partial_symtab) <section_offsets>: Delete.
4404         All uses updated.
4405         * psymtab.c (start_psymtab_common): Delete arg section_offsets.
4406         All callers updated.
4407
4408 2015-06-18  Simon Marchi  <simon.marchi@ericsson.com>
4409
4410         * common/rsp-low.c (needs_escaping): New.
4411         (remote_escape_output): Add unit_size parameter. Refactor to
4412         support multi-byte addressable units.  Rename parameters.
4413         * common/rsp-low.h (remote_escape_output): Add unit_size
4414         parameter and rename others. Update doc.
4415         * remote.c (align_for_efficient_write): New.
4416         (remote_write_bytes_aux): Add unit_size parameter and use it.
4417         Rename some variables.  Update doc.
4418         (remote_xfer_partial): Get unit size and use it.
4419         (remote_read_bytes_1): Add unit_size parameter and use it.
4420         Rename some variables. Update doc.
4421         (remote_write_bytes): Same.
4422         (remote_xfer_live_readonly_partial): Same.
4423         (remote_read_bytes): Same.
4424         (remote_flash_write): Update call to remote_write_bytes_aux.
4425         (remote_write_qxfer): Update call to remote_escape_output.
4426         (remote_search_memory): Same.
4427         (remote_hostio_pwrite): Same.
4428
4429 2015-06-17  Luis Machado  <lgustavo@codesourcery.com>
4430
4431         * breakpoint.c (add_location_to_breakpoint): Don't mark permanent
4432         locations as inserted.
4433         Update and expand comment about permanent locations.
4434         (bp_loc_is_permanent): Don't return 0 for bp_call_dummy.
4435         Move comment to add_location_to_breakpoint.
4436         (update_global_location_list): Don't error out if a permanent
4437         breakpoint is not marked inserted.
4438         Don't error out if a non-permanent breakpoint location is inserted on
4439         top of a permanent breakpoint.
4440
4441 2015-06-17  Luis Machado  <lgustavo@codesourcery.com>
4442
4443         * breakpoint.c (make_breakpoint_permanent): Remove unused
4444         function.
4445         * breakpoint.h (make_breakpoint_permanent): Remove declaration.
4446
4447 2015-06-17  Patrick Palka  <patrick@parcs.ath.cx>
4448
4449         PR gdb/16999
4450         * NEWS: Mention new GDBHISTSIZE behavior.
4451         * top.c (init_history): For null or out-of-range GDBHISTSIZE,
4452         set history size to unlimited.  Ignore non-numeric GDBHISTSIZE.
4453
4454 2015-06-17  Patrick Palka  <patrick@parcs.ath.cx>
4455
4456         * NEWS: Mention that GDBHISTSIZE is read instead of HISTSIZE.
4457         * top.c (init_history): Read from GDBHISTSIZE instead of
4458         HISTSIZE.
4459         (init_main): Refer to GDBHISTSIZE instead of HISTSIZE.
4460
4461 2015-06-17  Patrick Palka  <patrick@parcs.ath.cx>
4462
4463         * top.c (gdb_safe_append_history): Do not call
4464         history_truncate_file if the history is not stifled.
4465
4466 2015-06-17  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4467
4468         * syscalls/s390-linux.xml: Add syscalls 344 through 354.
4469         * syscalls/s390x-linux.xml: Likewise.
4470
4471 2015-06-16  Michael Eager  <eager@eagercon.com>
4472
4473         * nat/linux-namespaces.c (MSG_CMSG_CLOEXEC): Define if not defined.
4474
4475 2015-06-16  Patrick Palka  <patrick@parcs.ath.cx>
4476
4477         * tui/tui-hooks.c (tui_selected_frame_level_changed_hook): Call
4478         target_terminal_ours_for_output() before calling
4479         tui_show_frame_info(), and restore the original terminal
4480         settings afterwards.
4481
4482 2015-06-16  Martin Simmons  <martin@lispworks.com>  (tiny patch)
4483
4484         * arm-linux-nat.c: Include nat/linux-ptrace.h.
4485
4486 2015-06-15  Simon Marchi  <simon.marchi@ericsson.com>
4487
4488         * mi/mi-main.c (mi_cmd_data_read_memory_bytes): Consider addressable
4489         memory unit size.
4490         (mi_cmd_data_write_memory_bytes): Same.
4491
4492 2015-06-15  Simon Marchi  <simon.marchi@ericsson.com>
4493
4494         * corefile.c (write_memory): Update doc.
4495         * gdbcore.h (write_memory): Same.
4496
4497 2015-06-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
4498
4499         * linux-tdep.c (enum filterflags): Make it from anonymous enum.
4500         (dump_mapping_p): Use it for parameter filterflags.
4501         (linux_find_memory_regions_full): Use it for variable filterflags.
4502
4503 2015-06-15  Aleksandar Ristovski  <aristovski@qnx.com
4504             Jan Kratochvil  <jan.kratochvil@redhat.com>
4505
4506         Merge multiple hex conversions.
4507         * monitor.c: Include rsp-low.h.
4508         (fromhex): Remove definition.
4509
4510 2015-06-15  Aleksandar Ristovski  <aristovski@qnx.com
4511             Jan Kratochvil  <jan.kratochvil@redhat.com>
4512
4513         Move utility functions to common/.
4514         * cli/cli-utils.c (skip_spaces, skip_spaces_const, skip_to_space_const):
4515         Move defs to common/common-utils.c.
4516         * cli/cli-utils.h (skip_spaces, skip_spaces_const, skip_to_space)
4517         (skip_to_space_const): Move decls to common/common-utils.h.
4518         * common/common-defs.h: Move include of common-types.h before
4519         common-utils.h.
4520         * common/common-utils.c: Include host-defs.h and ctype.h.
4521         (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int, strtoulst): Move
4522         from utils.c.
4523         (skip_spaces, skip_spaces_const, skip_to_space_const): Move from
4524         cli/cli-utils.c.
4525         * common/common-utils.h (strtoulst): Move decl from utils.h.
4526         (skip_spaces, skip_spaces_const, skip_to_space, skip_to_space_const):
4527         Move from cli/cli-utils.h.
4528         * common/host-defs.h: Include limits.h.
4529         (TARGET_CHAR_BIT, HOST_CHAR_BIT): Moved from defs.h.
4530         (skip_spaces, skip_spaces_const): Move decls from cli/cli-utils.h.
4531         * defs.h (TARGET_CHAR_BIT, HOST_CHAR_BIT): Move to
4532         common/common-utils.h.
4533         * utils.c (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int)
4534         (strtoulst): Move to common/common-utils.c.
4535         * utils.h (strtoulst): Moved decl to common/common-utils.h.
4536
4537 2015-06-15  Yao Qi  <yao.qi@linaro.org>
4538
4539         * data-directory/Makefile.in (SYSCALLS_FILES): Add aarch64-linux.xml.
4540
4541 2015-06-10  Jon Turney  <jon.turney@dronecode.org.uk>
4542
4543         * build-id.c: Don't include elf-bfd.h.
4544         (build_id_bfd_get): Use bfd_build_id.
4545         (build_id_verify): Ditto.
4546         * build-id.h: Ditto.
4547         (find_separate_debug_file_by_buildid): Ditto.
4548         * python/py-objfile.c: Don't include elf-bfd.h.
4549         (objfpy_get_build_id) Use bfd_build_id.
4550         (objfpy_build_id_matches, objfpy_lookup_objfile_by_build_id): Ditto.
4551         * coffread.c: Include build-id.h.
4552         (coff_symfile_read): Try find_separate_debug_file_by_buildid.
4553
4554 2015-06-03  Jon Turney  <jon.turney@dronecode.org.uk>
4555
4556         * windows-nat.c (do_windows_fetch_inferior_registers)
4557         (handle_output_debug_string): Replace __COPY_CONTEXT_SIZE
4558         conditional with __CYGWIN__.
4559
4560 2015-06-13  Andrew Burgess  <andrew.burgess@embecosm.com>
4561
4562         * completer.c: Add arch-utils.h include.
4563         (enum reg_completer_targets): New enum.
4564         (reg_or_group_completer_1): New function containing old
4565         reg_or_group_completer, add and use new parameter to control what
4566         is completed on.  Use get_current_arch rather than architecture of
4567         currently selected frame.
4568         (reg_or_group_completer): Call new reg_or_group_completer_1.
4569         (reggroup_completer): Call new reg_or_group_completer_1.
4570         * completer.h (reggroup_completer): Add declaration.
4571         * tui/tui-regs.c: Add 'completer.h' include.
4572         (tui_reg_next_command): Renamed to...
4573         (tui_reg_next): ...this.  Adjust parameters and return rather than
4574         display new group.
4575         (tui_reg_prev_command): Renamed to...
4576         (tui_reg_prev): ...this.  Adjust parameters and return rather than
4577         display new group.
4578         (tui_reg_float_command): Delete.
4579         (tui_reg_general_command): Delete.
4580         (tui_reg_system_command): Delete.
4581         (tui_reg_command): Rewrite to perform switching of register group.
4582         Add header comment.
4583         (tuireglist): Remove.
4584         (tui_reggroup_completer): New function.
4585         (_initialize_tui_regs): Remove 'tui reg' sub-commands, update
4586         creation of 'tui reg' command.
4587         * NEWS: Add comment about 'tui reg' changes.
4588
4589 2015-06-12  Simon Marchi  <simon.marchi@ericsson.com>
4590
4591         * target.c (target_read): Consider addressable unit size when
4592         reading from a memory object.
4593         (read_memory_robust): Same.
4594         (read_whatever_is_readable): Same.
4595         (target_write_with_progress): Consider addressable unit size
4596         when writing to a memory object.
4597         * target.h (target_read): Update documentation.
4598         (target_write): Add documentation.
4599
4600 2015-06-12  Simon Marchi  <simon.marchi@ericsson.com>
4601
4602         * arch-utils.h (default_addressable_memory_unit_size): New.
4603         * arch-utils.c (default_addressable_memory_unit_size): New.
4604         * gdbarch.sh (addressable_memory_unit_size): New.
4605         * gdbarch.h: Re-generate.
4606         * gdbarch.c: Re-generate.
4607
4608 2015-06-12  Simon Marchi  <simon.marchi@ericsson.com>
4609
4610         * target.c (target_read): Rename variables and use
4611         TARGET_XFER_E_IO.
4612         (target_read_with_progress): Same.
4613         (read_memory_robust): Constify parameters and rename
4614         variables.
4615         (read_whatever_is_readable): Constify parameters,
4616         rename variables, adjust formatting.
4617         * target.h (read_memory_robust): Constify parameters.
4618
4619 2015-06-12  Ulrich Weigand  <uweigand@de.ibm.com>
4620
4621         * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value_base): Handle short
4622         synthetic (non-AltiVec) vector types.
4623         (ppc64_sysv_abi_return_value): Likewise.
4624
4625 2015-06-12  Antoine Tremblay  <antoine.tremblay@ericsson.com>
4626
4627         PR breakpoints/16465
4628         * breakpoint.c (create_breakpoint): Save extra_string for
4629         pending breakpoints.
4630
4631 2015-06-10  Walfred Tedeschi  <walfred.tedeschi@intel.com>
4632
4633         * i386-tdep.c (i386_mpx_get_bt_entry): Add a cast for mpx_bd_mask
4634         and bt_mask to CORE_ADDR.
4635
4636 2015-06-11  Gary Benson <gbenson@redhat.com>
4637
4638         * nat/linux-namespaces.c (mnsh_send_message): Use pulongest.
4639         (mnsh_recv_message): Likewise.
4640
4641 2015-06-11  Walfred Tedeschi  <walfred.tedeschi@intel.com>
4642
4643         * i386-tdep.c (i386_mpx_print_bounds): use of LONGEST instead of
4644         long long int and plongest instead of %ll.
4645
4646 2015-06-11  Gary Benson <gbenson@redhat.com>
4647
4648         * nat/linux-namespaces.c (gdb_wait.h): New include.
4649         (sys/wait.h): Do not include.
4650
4651 2015-06-10  Simon Marchi  <simon.marchi@ericsson.com>
4652
4653         * dwarf2read.c (dwarf_record_line): Call dwarf_record_line if
4654         end_sequence is true.
4655
4656 2015-06-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
4657
4658         Code cleanup.
4659         * solib-target.c (library_list_start_list): Use explicit NULL
4660         comparison.
4661
4662 2015-06-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
4663
4664         * solib-target.c (library_list_start_list): Do not dereference
4665         variable version in its initialization.  Make the VERSION check handle
4666         NULL.
4667         (library_list_attributes): Make "version" GDB_XML_AF_OPTIONAL.
4668
4669 2015-06-10  Gary Benson <gbenson@redhat.com>
4670
4671         * NEWS: Announce support for direct access of executable and
4672         shared library files when attaching to inferiors in containers
4673         on GNU/Linux systems.
4674
4675 2015-06-10  Gary Benson <gbenson@redhat.com>
4676
4677         * remote.c (struct remote_state) <fs_pid>: New field.
4678         (new_remote_state): Initialize the above.
4679         (PACKET_vFile_setfs): New enum value.
4680         (remote_hostio_set_filesystem): New function.
4681         (remote_hostio_open): Call the above.
4682         (remote_hostio_unlink): Likewise.
4683         (remote_hostio_readlink): Likewise.
4684         (_initialize_remote): Register new "set/show remote
4685         hostio-setfs-packet" command.
4686         * NEWS: Announce new vFile:setfs packet.
4687
4688 2015-06-10  Gary Benson <gbenson@redhat.com>
4689
4690         * linux-nat.c (nat/linux-namespaces.h): New include.
4691         (fileio.h): Likewise.
4692         (linux_nat_filesystem_is_local): New function.
4693         (linux_nat_fileio_pid_of): Likewise.
4694         (linux_nat_fileio_open): Likewise.
4695         (linux_nat_fileio_readlink): Likewise.
4696         (linux_nat_fileio_unlink): Likewise.
4697         (linux_nat_add_target): Initialize to_filesystem_is_local,
4698         to_fileio_open, to_fileio_readlink and to_fileio_unlink.
4699         (_initialize_linux_nat): New "set/show debug linux-namespaces"
4700         commands.
4701         * NEWS: Mention new "set/show debug linux-namespaces" commands.
4702
4703 2015-06-10  Gary Benson <gbenson@redhat.com>
4704
4705         * target.h (struct inferior): New forward declaration.
4706         (struct target_ops) <to_filesystem_is_local>: Update comment.
4707         (struct target_ops) <to_fileio_open>: New argument inf.
4708         Update comment.  All implementations updated.
4709         (struct target_ops) <to_fileio_unlink>: Likewise.
4710         (struct target_ops) <to_fileio_readlink>: Likewise.
4711         (target_filesystem_is_local): Update comment.
4712         (target_fileio_open): New argument inf.  Update comment.
4713         (target_fileio_unlink): Likewise.
4714         (target_fileio_readlink): Likewise.
4715         (target_fileio_read_alloc): Likewise.
4716         (target_fileio_read_stralloc): Likewise.
4717         * target.c (target_fileio_open): New argument inf.
4718         Pass inf to implementation.  Update debug printing.
4719         (target_fileio_unlink): Likewise.
4720         (target_fileio_readlink): Likewise.
4721         (target_fileio_read_alloc_1): New argument inf. Pass inf
4722         to target_fileio_open.
4723         (target_fileio_read_alloc): New argument inf. Pass inf to
4724         target_fileio_read_alloc_1.
4725         (target_fileio_read_stralloc): Likewise.
4726         * gdb_bfd.c (inferior.h): New include.
4727         (gdb_bfd_iovec_fileio_open): Replace unused "open_closure"
4728         argument with new argument "inferior".  Pass inferior to
4729         target_fileio_open.
4730         (gdb_bfd_open): Supply inferior argument to
4731         gdb_bfd_iovec_fileio_open.
4732         * linux-tdep.c (linux_info_proc): Supply inf argument to
4733         relevant target_fileio calls.
4734         (linux_find_memory_regions_full): Likewise.
4735         (linux_fill_prpsinfo): Likewise.
4736         * remote.c (remote_filesystem_is_local): Supply inf
4737         argument to remote_hostio_open.
4738         (remote_file_put): Likewise.
4739         (remote_file_get): Likewise.
4740         (remote_file_delete): Supply inf argument to
4741         remote_hostio_unlink.
4742
4743 2015-06-10  Gary Benson <gbenson@redhat.com>
4744
4745         * inf-child.c (inf_child_fileio_open): Replace comment.
4746         (inf_child_fileio_pwrite): Likewise.
4747         (inf_child_fileio_pread): Likewise.
4748         (inf_child_fileio_fstat): Insert blank line before comment.
4749         (inf_child_fileio_close): Replace comment.
4750         (inf_child_fileio_unlink): Likewise.
4751         (inf_child_fileio_readlink): Likewise.
4752         * remote.c (remote_hostio_open): Likewise.
4753         (remote_hostio_pread): Likewise.
4754         (remote_hostio_pwrite): Likewise.
4755         (remote_hostio_close): Likewise.
4756         (remote_hostio_unlink): Likewise.
4757         (remote_hostio_readlink): Likewise.
4758         (remote_hostio_fstat): Likewise.
4759         (remote_filesystem_is_local): Likewise.
4760         * target.c (target_fileio_open): Likewise.
4761         (target_fileio_pwrite): Likewise.
4762         (target_fileio_pread): Likewise.
4763         (target_fileio_fstat): Insert blank line before comment.
4764         (target_fileio_close): Replace comment.
4765         (target_fileio_unlink): Likewise.
4766         (target_fileio_readlink): Likewise.
4767         (target_fileio_read_alloc): Likewise.
4768         (target_fileio_read_stralloc): Likewise.
4769
4770 2015-06-10  Gary Benson <gbenson@redhat.com>
4771
4772         * linux-thread-db.c (nat/linux-namespaces.h): New include.
4773         (check_pid_namespace_match): Use linux_ns_same rather than
4774         linux_proc_pid_get_ns to spot PID namespace mismatches.
4775         * nat/linux-procfs.h (linux_proc_pid_get_ns): Remove.
4776         * nat/linux-procfs.c (linux_proc_pid_get_ns): Likewise.
4777
4778 2015-06-10  Gary Benson <gbenson@redhat.com>
4779
4780         * configure.ac (AC_CHECK_FUNCS): Add setns.
4781         * config.in: Regenerate.
4782         * configure: Likewise.
4783         * nat/linux-namespaces.h: New file.
4784         * nat/linux-namespaces.c: Likewise.
4785         * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-namespaces.h.
4786         (linux-namespaces.o): New rule.
4787         * config/aarch64/linux.mh (NATDEPFILES): Add linux-namespaces.o.
4788         * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
4789         * config/arm/linux.mh (NATDEPFILES): Likewise.
4790         * config/i386/linux.mh (NATDEPFILES): Likewise.
4791         * config/i386/linux64.mh (NATDEPFILES): Likewise.
4792         * config/ia64/linux.mh (NATDEPFILES): Likewise.
4793         * config/m32r/linux.mh (NATDEPFILES): Likewise.
4794         * config/m68k/linux.mh (NATDEPFILES): Likewise.
4795         * config/mips/linux.mh (NATDEPFILES): Likewise.
4796         * config/pa/linux.mh (NATDEPFILES): Likewise.
4797         * config/powerpc/linux.mh (NATDEPFILES): Likewise.
4798         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
4799         * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
4800         * config/s390/linux.mh (NATDEPFILES): Likewise.
4801         * config/sparc/linux.mh (NATDEPFILES): Likewise.
4802         * config/sparc/linux64.mh (NATDEPFILES): Likewise.
4803         * config/tilegx/linux.mh (NATDEPFILES): Likewise.
4804         * config/xtensa/linux.mh (NATDEPFILES): Likewise.
4805
4806 2015-06-10  Gary Benson <gbenson@redhat.com>
4807
4808         * utils.h (make_cleanup_close): Moved to common/filestuff.h.
4809         * utils.c (do_close_cleanup): Moved to common/filestuff.c.
4810         (make_cleanup_close): Likewise.
4811         * common/filestuff.h (make_cleanup_close): Moved from utils.h.
4812         * common/filestuff.c (do_close_cleanup): Moved from utils.c.
4813         (make_cleanup_close): Likewise.
4814
4815 2015-06-03  Jon Turney  <jon.turney@dronecode.org.uk>
4816
4817         * windows-nat.c (thread_rec): Also ignore ERROR_INVALID_HANDLE
4818         from SuspendThread().
4819
4820 2015-06-03  Jon Turney  <jon.turney@dronecode.org.uk>
4821
4822         * windows-nat.c (handle_output_debug_string): Trim trailing '\n'
4823         from OutputDebugString.
4824
4825 2015-06-10  Walfred Tedeschi  <walfred.tedeschi@intel.com>
4826                         Mircea Gherzan  <mircea.gherzan@intel.com>
4827
4828         * i386-tdep.c (MPX_BASE_MASK, MPX_BD_MASK, MPX_BT_MASK, MPX_BD_MASK_32,
4829         MPX_BT_MASK_32): New macros.
4830         (i386_mpx_set_bounds): New function that implements
4831         the command "set-mpx-bound".
4832         (i386_mpx_enabled): Helper function to test MPX availability.
4833         (i386_mpx_bd_base): Helper function to calculate the base directory
4834         address.
4835         (i386_mpx_get_bt_entry): Helper function to access a bound
4836         table entry.
4837         (i386_mpx_print_bounds): Effectively display bound information.
4838         (_initialize_i386_tdep): Add new commands to commands "set mpx" and
4839         "show mpx".
4840         (_initialize_i386_tdep):
4841         Add "bound" to the commands "show mpx" and "set mpx" commands.
4842         (mpx_set_cmdlist and mpx_show_cmdlist): List for the new prefixed "set mpx"
4843         and "show mpx" commands.
4844         * NEWS: List new commands for MPX support.
4845
4846 2015-06-09  Gary Benson <gbenson@redhat.com>
4847
4848         * common/fileio.h (fileio_to_host_mode): New declaration.
4849         * common/fileio.c (fileio_to_host_mode): New Function.
4850         * inf-child.c (inf_child_fileio_open): Process mode argument
4851         with fileio_to_host_mode.
4852
4853 2015-06-09  Gary Benson <gbenson@redhat.com>
4854
4855         * common/fileio.c (fileio_mode_pack): Fix preprocessor
4856         conditional.
4857
4858 2015-06-05  Gary Benson <gbenson@redhat.com>
4859
4860         * gdb_bfd.c (gdb_bfd_open): Move vgdb special case to...
4861         * remote.c (remote_filesystem_is_local): ...here.
4862
4863 2015-06-04  Yao Qi  <yao.qi@linaro.org>
4864
4865         * gdbarch.c: Regenerate it.
4866
4867 2015-06-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
4868
4869         * arch-utils.c (default_infcall_munmap): New.
4870         * arch-utils.h (default_infcall_munmap): New declaration.
4871         * compile/compile-object-load.c (struct munmap_list, munmap_list_add)
4872         (munmap_list_free, munmap_listp_free_cleanup): New.
4873         (struct setup_sections_data): Add field munmap_list_headp.
4874         (setup_sections): Call munmap_list_add.
4875         (compile_object_load): New variable munmap_list_head, initialize
4876         setup_sections_data.munmap_list_headp, return munmap_list_head.
4877         * compile/compile-object-load.h (struct munmap_list): New declaration.
4878         (struct compile_module): Add field munmap_list_head.
4879         (munmap_list_free): New declaration.
4880         * compile/compile-object-run.c (struct do_module_cleanup): Add field
4881         munmap_list_head.
4882         (do_module_cleanup): Call munmap_list_free.
4883         (compile_object_run): Pass munmap_list_head to do_module_cleanup.
4884         * gdbarch.c: Regenerate.
4885         * gdbarch.h: Regenerate.
4886         * gdbarch.sh (infcall_munmap): New.
4887         * linux-tdep.c (linux_infcall_munmap): New.
4888         (linux_init_abi): Install it.
4889
4890 2015-06-02  Simon Marchi  <simon.marchi@ericsson.com>
4891
4892         PR gdb/15564
4893         * inferior.c (detach_inferior): Call exit_inferior_1 with silent = 0.
4894
4895 2015-06-02  Yao Qi  <yao.qi@linaro.org>
4896
4897         * i386-linux-nat.c: Include linux-nat.h.
4898
4899 2015-06-01  Andreas Schwab  <schwab@linux-m68k.org>
4900             Jan Kratochvil  <jan.kratochvil@redhat.com>
4901
4902         PR symtab/18392
4903         * dwarf2-frame-tailcall.c (pretended_chain_levels): Correct
4904         assertion.
4905         * dwarf2loc.c (chain_candidate): Likewise.
4906
4907 2015-06-01  Yao Qi  <yao.qi@linaro.org>
4908
4909         * arm-linux-nat.c (fetch_vfp_regs): Use PTRACE_GETREGSET.
4910         (store_vfp_regs): Use PTRACE_SETREGSET.
4911
4912 2015-06-01  Yao Qi  <yao.qi@linaro.org>
4913
4914         * arm-linux-nat.c (fetch_fpregister): Use PTRACE_GETREGSET.
4915         (fetch_fpregs): Likewise.
4916         * arm-linux-nat.c (store_fpregister): Use PTRACE_SETREGSET.
4917         (store_fpregs): Likewise.
4918
4919 2015-06-01  Yao Qi  <yao.qi@linaro.org>
4920
4921         * arm-linux-nat.c (fetch_register): Use PTRACE_GETREGSET.
4922         (fetch_regs): Likewise.
4923         (store_regs): Use PTRACE_SETREGSET.
4924         (store_register): Likewise.
4925
4926 2015-06-01  Yao Qi  <yao.qi@linaro.org>
4927
4928         * arm-linux-nat.c (arm_linux_read_description): Check whether
4929         kernel supports PTRACE_GETREGSET.
4930
4931 2015-06-01  Yao Qi  <yao.qi@linaro.org>
4932
4933         * x86-linux-nat.c (have_ptrace_getregset): Move it to ...
4934         * linux-nat.c: ... here.
4935         * x86-linux-nat.h (have_ptrace_getregset): Move the declaration
4936         to ...
4937         * linux-nat.h: ... here.
4938
4939 2015-06-01  Yao Qi  <yao.qi@linaro.org>
4940
4941         * amd64-linux-nat.c: Include "nat/linux-ptrace.h".
4942         * i386-linux-nat.c: Likewise.
4943         * nat/linux-ptrace.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Define.
4944         * s390-linux-nat.c: Include "nat/linux-ptrace.h".
4945         (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
4946         * x86-linux-nat.c: Include "nat/linux-ptrace.h".
4947         * x86-linux-nat.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
4948
4949 2015-05-30  Eli Zaretskii  <eliz@gnu.org>
4950
4951         * go32-nat.c (go32_xfer_memory): Fix the return value to be
4952         compatible to what read_child and write_child return.  This
4953         unbreaks that DJGPP build of GDB which was broken since v7.7.
4954
4955 2015-05-29  Martin Galvan  <martin.galvan@tallertechnologies.com>
4956
4957         * MAINTAINERS (Write After Approval): Add Martin Galvan.
4958
4959 2015-05-29  Roland McGrath  <mcgrathr@google.com>
4960
4961         PR gdb/18464
4962         * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Use warning
4963         rather than internal_error for an unrecognized value.
4964
4965 2015-05-29  Max Filippov  <jcmvbkbc@gmail.com>
4966
4967         * xtensa-tdep.c (xtensa_pseudo_register_read)
4968         (xtensa_pseudo_register_write): Don't alias last pseudo register
4969         to a1.
4970
4971 2015-05-28  Don Breazeal  <donb@codesourcery.com>
4972
4973         * infrun.c (follow_fork_inferior): Ensure the use of
4974         process-style ptids (pid,0,0) in verbose/debug "Detaching"
4975         messages.
4976
4977 2015-05-28  Doug Evans  <dje@google.com>
4978
4979         * dwarf2read.c (record_line_ftype): Remove, duplicate.
4980
4981 2015-05-28  Yao Qi  <yao.qi@linaro.org>
4982
4983         * arm-linux-nat.c (arm_linux_has_wmmx_registers): Remove.
4984         (arm_linux_fetch_inferior_registers): Use
4985         tdep->have_wmmx_registers instead of arm_linux_has_wmmx_registers.
4986         (arm_linux_store_inferior_registers): Likewise.
4987         (arm_linux_read_description): Don't set
4988         arm_linux_has_wmmx_registers.
4989         * arm-tdep.c (arm_gdbarch_init): Set
4990         tdep->have_wmmx_registers according target descriptions.
4991         * arm-tdep.h (struct gdbarch_tdep) <have_wmmx_registers>: New
4992         field.
4993
4994 2015-05-28  Yao Qi  <yao.qi@linaro.org>
4995
4996         * arm-linux-nat.c (arm_linux_vfp_register_count): Remove.
4997         (fetch_vfp_regs): Use vfp_register_count from gdbarch_tdep
4998         instead of arm_linux_vfp_register_count.
4999         (store_vfp_regs): Likewise.
5000         (arm_linux_fetch_inferior_registers): Likewise.
5001         (arm_linux_store_inferior_registers): Likewise.
5002         (arm_linux_read_description): Don't set
5003         arm_linux_vfp_register_count.
5004         * arm-linux-tdep.c (arm_linux_iterate_over_regset_sections):
5005         Adjust.
5006         * arm-tdep.c (arm_gdbarch_init): Add assert on
5007         vfp_register_count.
5008         * arm-tdep.h (struct gdbarch_tdep) <have_vfp_registers>: Rename
5009         field to vfp_register_count.  All users updated.
5010
5011 2015-05-28  Kyle Huey  <me@kylehuey.com>  (tiny patch)
5012
5013         * gdb/arm-tdep.c (arm_gdbarch_init): Perform arm_abi detection on
5014         ELFOSABI_GNU binaries.
5015
5016 2015-05-27  Doug Evans  <dje@google.com>
5017
5018         * dwarf2read.c (lnp_state_machine): New typedef.
5019         (lnp_reader_state): New typedef.
5020         (dwarf_record_line_1): Renamed from dwarf_record_line.
5021         All callers updated.
5022         (dwarf_record_line): New function.
5023         (init_lnp_state_machine): New function.
5024         (check_line_address): Replace p_record_line parameter with state.
5025         All callers updated.
5026         (dwarf_decode_lines_1): Call dwarf_record_line, init_lnp_state_machine.
5027         Update to record state in lnp_state_machine.
5028
5029 2015-05-27  Doug Evans  <dje@google.com>
5030
5031         * dwarf2read.c (record_line_ftype): New typedef.
5032         (check_line_address): New function.
5033         (dwarf_decode_lines_1): Call it.
5034
5035 2015-05-27  Doug Evans  <dje@google.com>
5036
5037         * NEWS: Mention "set debug dwarf-line".
5038         * dwarf2read.c (dwarf_line_debug): New static global.
5039         (add_include_dir): Add debug dwarf-line support.
5040         (add_file_name, dwarf_record_line, dwarf_finish_line): Ditto.
5041         (_initialize_dwarf2_read): New parameter "debug dwarf-line".
5042
5043 2015-05-27  Doug Evans  <dje@google.com>
5044
5045         * cp-namespace.c (cp_lookup_nested_symbol): New arg "domain".
5046         All callers updated.
5047         (cp_lookup_nested_symbol_1, find_symbol_in_baseclass): Ditto.
5048         * cp-support.h (cp_lookup_nested_symbol): Update.
5049
5050 2015-05-27  Doug Evans  <dje@google.com>
5051
5052         PR symtab/18258
5053         * block.c (block_find_symbol): New function.
5054         (block_find_non_opaque_type): Ditto.
5055         (block_find_non_opaque_type_preferred): Ditto.
5056         * block.h (block_symbol_matcher_ftype): New typedef.
5057         (block_find_symbol): Declare.
5058         (block_find_non_opaque_type): Ditto.
5059         (block_find_non_opaque_type_preferred): Ditto.
5060         * dwarf2read.c (dw2_lookup_symbol): Call block_find_symbol.
5061         * psymtab.c (psym_lookup_symbol): Ditto.
5062         * symtab.c (basic_lookup_transparent_type_1): New function.
5063         (basic_lookup_transparent_type): Call it.
5064
5065 2015-05-27  Yao Qi  <yao.qi@linaro.org>
5066
5067         * aarch64-tdep.c (aarch64_record_data_proc_simd_fp): Return
5068         AARCH64_RECORD_UNKNOWN for unknown instruction encoding.
5069
5070 2015-05-27  Yao Qi  <yao.qi@linaro.org>
5071
5072         * aarch64-tdep.c (aarch64_record_branch_except_sys): Split lines
5073         before operator &&.
5074         (aarch64_record_load_store): Likewise.
5075
5076 2015-05-26  Doug Evans  <dje@google.com>
5077
5078         PR c++/18141, c++/18417.
5079         * cp-support.c (cp_lookup_rtti_type): Handle the case of NAME being
5080         a typedef.
5081
5082 2015-05-26  Doug Evans  <dje@google.com>
5083
5084         * NEWS: Add entries for command renamings.
5085         * dwarf2read.c (dwarf_read_debug): Renamed from dwarf2_read_debug.
5086         All uses updated.
5087         (dwarf_die_debug): Renamed from dwarf2_die_debug.  All uses updated.
5088         (dwarf_max_cache_age): Renamed from dwarf2_max_cache_age.
5089         All uses updated.
5090         (show_dwarf_max_cache_age): Renamed from show_dwarf2_max_cache_age.
5091         All callers updated.  Fix spelling of DWARF in help text.
5092         (set_dwarf_cmdlist): Renamed from set_dwarf2_cmdlist.
5093         All uses updated.
5094         (show_dwarf_cmdlist): Renamed from show_dwarf2_cmdlist.
5095         All uses updated.
5096         (set_dwarf_cmd): Renamed from set_dwarf2_cmd.  All callers updated.
5097         (show_dwarf_cmd): Renamed from show_dwarf2_cmd.  All callers updated.
5098         (dwarf_always_disassemble): Renamed from dwarf_always_disassemble.
5099         All uses updated.
5100         (show_dwarf_always_disassemble): Renamed from
5101         show_dwarf2_always_disassemble.  All callers updated.
5102         (_initialize_dwarf2_read): Rename "set/show dwarf2" prefix to
5103         "set/show dwarf".  Rename "set/show dwarf2 max-cache-age" to
5104         "set/show dwarf max-cache-age".  Rename
5105         "set/show dwarf2 always-disassemble" to
5106         "set/show dwarf always-disassemble".  Rename
5107         "set/show debug dwarf2-read" to "set/show debug dwarf-read".  Rename
5108         "set/show debug dwarf2-die" to "set/show debug dwarf-die".
5109
5110 2015-05-26  Doug Evans  <dje@google.com>
5111
5112         PR python/18438
5113         * python/py-lazy-string.c (stpy_convert_to_value): Use
5114         gdbpy_gdb_memory_error not PyExc_MemoryError.
5115         (gdbpy_create_lazy_string_object): Ditto.
5116
5117 2015-05-26  Andrew Burgess  <andrew.burgess@embecosm.com>
5118
5119         * tui/tui-regs.c (tui_reg_next_command): Compare against NULL.
5120
5121 2015-05-26  Andrew Burgess  <andrew.burgess@embecosm.com>
5122
5123         * tui/tui-regs.c (tui_reg_prev_command): New function.
5124         (_initialize_tui_regs): Add 'prev' command for 'tui reg'.
5125         * reggroups.c (reggroup_prev): New function.
5126         * reggroups.h (reggroup_prev): Add declaration.  Update comment.
5127
5128 2015-05-26  Omair Javaid  <omair.javaid@linaro.org>
5129             Yao Qi  <yao.qi@linaro.org>
5130
5131         * aarch64-linux-tdep.c: Include linux-record.h and
5132         record-full.h.
5133         (struct linux_record_tdep aarch64_linux_record_tdep): Declare.
5134         (aarch64_syscall): New enum.
5135         (aarch64_canonicalize_syscall): New function.
5136         (aarch64_all_but_pc_registers_record): New function.
5137         (aarch64_linux_syscall_record): New function.
5138         (aarch64_linux_init_abi): Install AArch64 process record
5139         handler.  Update to handle syscall recording.
5140         * aarch64-tdep.c: Include record.h and record-full.h.
5141         (submask, bit, bits, REG_ALLOC, MEM_ALLOC): New macros.
5142         (struct aarch64_mem_r): Define.
5143         (aarch64_record_result): New enum.
5144         (struct insn_decode_record): Define.
5145         (insn_decode_record): New typedef.
5146         (aarch64_record_data_proc_reg): New function.
5147         (aarch64_record_data_proc_imm): New function.
5148         (aarch64_record_branch_except_sys): New function.
5149         (aarch64_record_load_store): New function.
5150         (aarch64_record_data_proc_simd_fp): New function.
5151         (aarch64_record_asimd_load_store): New function.
5152         (aarch64_record_decode_insn_handler): New function.
5153         (deallocate_reg_mem): New function.
5154         (aarch64_process_record): New function.
5155         * aarch64-tdep.h (struct gdbarch_tdep) <aarch64_syscall_record>:
5156         New field.
5157         (aarch64_process_record): New extern declaration.
5158         * configure.tgt: Add linux-record.o to gdb_target_obs.
5159         * linux-record.h (struct linux_record_tdep) <arg7>: New field.
5160
5161 2015-05-26  Omair Javaid  <omair.javaid@linaro.org>
5162
5163         * NEWS: Add a note on process record-replay support on aarch64*-linux*
5164         targets.
5165
5166 2015-05-26  Martin Galvan  <martin.galvan@tallertechnologies.com>
5167
5168         * amd64-tdep.c: Replace in_function_epilogue_p with
5169         stack_frame_destroyed_p throughout.
5170         * arch-utils.c: Ditto.
5171         * arch-utils.h: Ditto.
5172         * arm-tdep.c: Ditto.
5173         * breakpoint.c: Ditto.
5174         * gdbarch.sh: Ditto.
5175         * hppa-tdep.c: Ditto.
5176         * i386-tdep.c: Ditto.
5177         * mips-tdep.c: Ditto.
5178         * nios2-tdep.c: Ditto.
5179         * rs6000-tdep.c: Ditto.
5180         * s390-linux-tdep.c: Ditto.
5181         * score-tdep.c: Ditto.
5182         * sh-tdep.c: Ditto.
5183         * sparc-tdep.c: Ditto.
5184         * sparc-tdep.h: Ditto.
5185         * sparc64-tdep.c: Ditto.
5186         * spu-tdep.c: Ditto.
5187         * tic6x-tdep.c: Ditto.
5188         * tilegx-tdep.c: Ditto.
5189         * xstormy16-tdep.c: Ditto.
5190         * gdbarch.c, gdbarch.h: Re-generated.
5191
5192 2015-05-22  Andrew Burgess  <andrew.burgess@embecosm.com>
5193
5194         * NEWS: Mention 'tui enable' and 'tui disable'.
5195         * tui/tui.c (tui_enable_command): New function.
5196         (tui_disable_command): New function.
5197         (_initialize_tui): New function.
5198
5199 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
5200
5201         * tui/tui-regs.c (tui_reg_next_command): Use NULL not 0.
5202
5203 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
5204
5205         * tui/tui-layout.c (tui_set_layout_for_display_command): Ensure
5206         buf_ptr is freed.
5207
5208 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
5209
5210         * tui/tui-layout.c (tui_layout_command): Move call to tui_enable
5211         into ...
5212         (tui_set_layout_for_display_command): ...here, before calling
5213         tui_set_layout.  Only set the layout if gdb has not already
5214         entered the TUI_FAILURE state.
5215
5216 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
5217
5218         * tui/tui-layout.c (layout_completer): New function.
5219         (_initialize_tui_layout): Set completer on layout command.
5220
5221 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
5222
5223         * tui/tui-layout.c (tui_set_layout): Remove
5224         tui_register_display_type parameter.  Remove all checking of this
5225         parameter, and reindent function.  Update header comment.
5226         (tui_set_layout_for_display_command): Rename to...
5227         (tui_set_layout_by_name): ...this, and don't check for different
5228         register class types, don't pass a tui_register_display_type to
5229         tui_set_layout.  Update header comment.
5230         (layout_names): Remove register set specific names.
5231         * tui/tui-layout.h (tui_set_layout): Remove
5232         tui_register_display_type parameter.
5233         * tui/tui.c (tui_rl_change_windows): Don't pass a
5234         tui_register_display_type to tui_set_layout.
5235         (tui_rl_delete_other_windows): Likewise.
5236         (tui_enable): Likewise.
5237         * tui/tui-data.h (TUI_FLOAT_REGS_NAME): Remove.
5238         (TUI_FLOAT_REGS_NAME_LOWER): Remove.
5239         (TUI_GENERAL_REGS_NAME): Remove.
5240         (TUI_GENERAL_REGS_NAME_LOWER): Remove.
5241         (TUI_SPECIAL_REGS_NAME): Remove.
5242         (TUI_SPECIAL_REGS_NAME_LOWER): Remove.
5243         (TUI_GENERAL_SPECIAL_REGS_NAME): Remove.
5244         (TUI_GENERAL_SPECIAL_REGS_NAME_LOWER): Remove.
5245         (enum tui_register_display_type): Remove.
5246         (struct tui_layout_def): Remove regs_display_type and
5247         float_regs_display_type fields.
5248         (struct tui_data_info): Remove regs_display_type field.
5249         (tui_layout_command): Use new name for
5250         tui_set_layout_for_display_command.
5251         * tui/tui-data.c (layout_def): Don't initialise removed fields.
5252         (tui_clear_win_detail): Don't initialise removed fields of
5253         win_info.
5254         * tui/tui-regs.c (tui_show_registers): Use new name for
5255         tui_set_layout_for_display_command.
5256         * tui/tui.h (tui_set_layout_for_display_command): Rename
5257         declaration to...
5258         (tui_set_layout_by_name): ...this.
5259         * printcmd.c (display_command): Remove tui related layout call,
5260         and reindent.
5261
5262 2015-05-20  Joel Brobecker  <brobecker@adacore.com>
5263
5264         * infrun.c (handle_inferior_event_1): Renames handle_inferior_event.
5265         (handle_inferior_event): New function.
5266
5267 2015-05-20  Joel Brobecker  <brobecker@adacore.com>
5268
5269         * ada-lang.c (to_fixed_array_type): Rename local variable
5270         typename into type_name.
5271
5272 2015-05-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
5273
5274         Fix ASAN crash for gdb.compile/compile.exp.
5275         * infcall.c (call_function_by_hand_dummy): Use xstrdup for NAME.
5276
5277 2015-05-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
5278
5279         * compile/compile-c-symbols.c (convert_symbol_sym, gcc_convert_symbol)
5280         (gcc_symbol_address): Change gdb_stdout to gdb_stdlog.
5281         * compile/compile-object-load.c (setup_sections, compile_object_load):
5282         Likewise.
5283         * compile/compile.c (compile_to_object): Likewise.
5284
5285 2015-05-16  Doug Evans  <xdje42@gmail.com>
5286
5287         * NEWS: Mention support for unbuffered Guile memory ports.
5288         * scm-ports.c (ioscm_memory_port): Update comments on end, size.
5289         (ioscm_lseek_address): Improve overflow calculation.
5290         (gdbscm_memory_port_fill_input): Add assert.
5291         (gdbscm_memory_port_write): Handle unbuffered ports.
5292         Handle large writes identical to Guile's fport_write.
5293         (gdbscm_memory_port_seek): Fix seeking past end check.
5294         (gdbscm_memory_port_close): Handle closing unbuffered port.
5295         (ioscm_parse_mode_bits): Recognize "0" for unbuffered ports.
5296         (ioscm_init_memory_port): Handle unbuffered ports.
5297         (ioscm_reinit_memory_port): Ditto.
5298         (ioscm_init_memory_port): Update size calculation.
5299         (gdbscm_open_memory): Support zero sized ports.
5300
5301 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
5302
5303         * compile/compile-object-load.c (get_out_value_type): Fix uninitialized
5304         variable compiler warnings.
5305
5306 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
5307
5308         * compile/compile-object-load.c (get_out_value_type): Fix returned type.
5309
5310 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
5311             Phil Muldoon  <pmuldoon@redhat.com>
5312
5313         * NEWS (Changes since GDB 7.9): Add compile print.
5314         * compile/compile-c-support.c (add_code_header, add_code_footer)
5315         (c_compute_program): Add COMPILE_I_PRINT_ADDRESS_SCOPE and
5316         COMPILE_I_PRINT_VALUE_SCOPE.
5317         * compile/compile-internal.h (COMPILE_I_PRINT_OUT_ARG_TYPE)
5318         (COMPILE_I_PRINT_OUT_ARG, COMPILE_I_EXPR_VAL, COMPILE_I_EXPR_PTR_TYPE):
5319         New.
5320         * compile/compile-object-load.c: Include block.h.
5321         (get_out_value_type): New function.
5322         (compile_object_load): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
5323         COMPILE_I_PRINT_VALUE_SCOPE.  Set compile_module's OUT_VALUE_ADDR and
5324         OUT_VALUE_TYPE.
5325         * compile/compile-object-load.h (struct compile_module): Add fields
5326         out_value_addr and out_value_type.
5327         * compile/compile-object-run.c: Include valprint.h and compile.h.
5328         (struct do_module_cleanup): Add fields out_value_addr and
5329         out_value_type.
5330         (do_module_cleanup): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
5331         COMPILE_I_PRINT_VALUE_SCOPE.
5332         (compile_object_run): Propagate out_value_addr and out_value_type.
5333         Pass OUT_VALUE_ADDR.
5334         * compile/compile.c: Include valprint.h.
5335         (compile_print_value, compile_print_command): New functions.
5336         (eval_compile_command): Handle failed COMPILE_I_PRINT_ADDRESS_SCOPE.
5337         (_initialize_compile): Update compile code help text.  Install
5338         compile_print_command.
5339         * compile/compile.h (compile_print_value): New prototype.
5340         * defs.h (enum compile_i_scope_types): Add
5341         COMPILE_I_PRINT_ADDRESS_SCOPE and COMPILE_I_PRINT_VALUE_SCOPE.
5342
5343 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
5344
5345         * compile/compile-object-load.c (get_regs_type): Add parameter func_sym.
5346         Rely on its parameter count.
5347         (compile_object_load): Replace lookup_minimal_symbol_text by
5348         lookup_global_symbol_from_objfile.  Verify FUNC_SYM.  Set it in the
5349         return value.
5350         * compile/compile-object-load.h (struct compile_module): Replace
5351         func_addr by func_sym.
5352         * compile/compile-object-run.c: Include block.h.
5353         (compile_object_run): Reset module variable after it is freed.  Use
5354         FUNC_SYM instead of FUNC_ADDR.  Rely on it.
5355
5356 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
5357
5358         * compile/compile-c-support.c (print_one_macro): Use #ifndef.
5359         (generate_register_struct): Use __gdb_uintptr for TYPE_CODE_PTR.
5360         (c_compute_program): Call generate_register_struct after typedefs.
5361         * compile/compile-loc2c.c (push, pushf_register_address)
5362         (pushf_register): Cast to GCC_UINTPTR.
5363         (do_compile_dwarf_expr_to_c): Use unused attribute.  Add space after
5364         type.  Use GCC_UINTPTR instead of void *.  Remove excessive cast.
5365         (compile_dwarf_expr_to_c): Use GCC_UINTPTR instead of void *.
5366         * compile/compile.c (_initialize_compile): Enable warnings for
5367         COMPILE_ARGS.
5368
5369 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
5370
5371         * cli/cli-script.c (execute_control_command): Update
5372         eval_compile_command caller.
5373         * compile/compile-object-load.c (compile_object_load): Add parameters
5374         scope and scope_data.  Set them.
5375         * compile/compile-object-load.h (struct compile_module): Add fields
5376         scope and scope_data.
5377         (compile_object_load): Add parameters scope and scope_data.
5378         * compile/compile-object-run.c (struct do_module_cleanup): Add fields
5379         scope and scope_data.
5380         (compile_object_run): Propagate the fields scope and scope_data.
5381         * compile/compile.c (compile_file_command, compile_code_command):
5382         Update eval_compile_command callers.
5383         (eval_compile_command): Add parameter scope_data.  Pass it plus scope.
5384         * compile/compile.h (eval_compile_command): Add parameter scope_data.
5385         * defs.h (struct command_line): Add field scope_data.
5386
5387 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
5388
5389         * printcmd.c (struct format_data): Move it to valprint.h.
5390         (print_command_parse_format, print_value): New functions from ...
5391         (print_command_1): ... here.  Call them.
5392         * valprint.h (struct format_data): Move it here from printcmd.c.
5393         (print_command_parse_format, print_value): New declarations.
5394
5395 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
5396
5397         * compile/compile-object-load.c (compile_object_load): Add
5398         COMPILE_DEBUG message.
5399
5400 2015-05-15  Jerome Guitton  <guitton@adacore.com>
5401
5402         * ada-lang.c (ada_value_ptr_subscript): Use enum position of
5403         index to get element instead of enum value.
5404         (ada_value_slice_from_ptr, ada_value_slice): Use enum position
5405         of index to compute length, but enum values to compute bounds.
5406         (ada_array_length): Use enum position of index instead of enum value.
5407         (pos_atr): Move position computation to...
5408         (ada_evaluate_subexp): Use enum values to compute bounds.
5409         * gdbtypes.c (discrete_position): ...this new function.
5410         * gdbtypes.h (discrete_position): New function declaration.
5411         * valprint.c (val_print_array_elements): Call discrete_position
5412         to handle array indexed by non-contiguous enumeration types.
5413
5414 2015-05-15  Jerome Guitton  <guitton@adacore.com>
5415
5416         * ada-lang.c (find_parallel_type_by_descriptive_type):
5417         Go through typedefs during lookup.
5418         (to_fixed_array_type): Add support for non-bit packed arrays
5419         as variable-length fields.
5420
5421 2015-05-15  Pedro Alves  <palves@redhat.com>
5422             Simon Marchi  <simon.marchi@ericsson.com>
5423
5424         * event-loop.c (gdb_notifier) <next_file_handler,
5425         next_poll_fds_index>: New fields.
5426         (get_next_file_handler_to_handle_and_advance): New function.
5427         (delete_file_handler): If deleting the next file handler to
5428         handle, advance to the next file handler.
5429         (gdb_wait_for_event): Bail early if no event fired.  Poll file
5430         handlers in round-robin fashion.
5431
5432 2015-05-15  Pedro Alves  <palves@redhat.com>
5433
5434         * linux-tdep.c (linux_find_memory_regions_full): Rename local
5435         'private' to 'priv'.
5436
5437 2015-05-15  Pedro Alves  <palves@redhat.com>
5438
5439         * nat/linux-nat.h: Include "target/waitstatus.h".
5440
5441 2015-05-15  Yuanhui Zhang  <asmwarrior@gmail.com>
5442
5443         * python/py-unwind.c (struct reg_info): Move out of ...
5444         (struct cached_frame_info): ... this scope.
5445         (pending_frame_object_type, unwind_info_object_type): Make extern.
5446
5447 2015-05-15  Joel Brobecker  <brobecker@adacore.com>
5448
5449         * ada-lang.c (ada_value_primitive_packed_val): Make sure
5450         accumSize is never negative.
5451
5452 2015-05-14  Patrick Palka  <patrick@parcs.ath.cx>
5453
5454         * tui/tui-command.c: Remove include of <ctype.h>.
5455         (tui_dispatch_ctrl_char): Remove workaround for xterm terminals.
5456
5457 2015-05-13  Martin Galvan  <martin.galvan@tallertechnologies.com>
5458
5459         * dwarf2read.c (die_needs_namespace): Return 1 for
5460         DW_TAG_inlined_subroutine.
5461
5462 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5463
5464         * regcache.c (regcache_cpy_no_passthrough): New declaration.
5465         (regcache_cpy_no_passthrough): Make it static, add function comment.
5466         * regcache.h (regcache_dup, regcache_cpy): Reduce/update their comment.
5467         (regcache_cpy_no_passthrough): Remove declaration.
5468
5469 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5470
5471         * gdbthread.h (struct thread_control_state): Update comment for
5472         proceed_to_finish.
5473         * infcall.c (run_inferior_call): Update comment about
5474         proceed_to_finish.
5475         * infcmd.c (get_return_value): Update comment about stop_registers.
5476         (finish_forward): Update comment about proceed_to_finish.
5477         * infrun.c (stop_registers): Remove.
5478         (clear_proceed_status, normal_stop): Remove stop_registers handling.
5479         * infrun.h (stop_registers): Remove.
5480
5481 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5482
5483         * infcall.c (struct dummy_frame_context_saver)
5484         (dummy_frame_context_saver_data_free, dummy_frame_context_saver_dtor)
5485         (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
5486         (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
5487         New.
5488         (call_function_by_hand_dummy): Move discard_cleanups of
5489         inf_status_cleanup before dummy_frame_push.  Call
5490         dummy_frame_context_saver_setup and prepare context_saver_cleanup.
5491         Use dummy_frame_context_saver_get_regs instead of stop_registers.
5492         * infcall.h (struct dummy_frame_context_saver)
5493         (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
5494         (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
5495         New declarations.
5496         * infcmd.c: Include infcall.h.
5497         (get_return_value): Add parameter ctx_saver, use it instead of
5498         stop_registers.
5499         (print_return_value): Add parameter ctx_saver, pass it.
5500         (struct finish_command_continuation_args): Add field ctx_saver.
5501         (finish_command_continuation): Update print_return_value caller.
5502         (finish_command_continuation_free_arg): Free also ctx_saver.
5503         (finish_forward): Call dummy_frame_context_saver_setup.
5504         * inferior.h (struct dummy_frame_context_saver): New declaration.
5505         (get_return_value): Add parameter ctx_saver.
5506         * python/py-finishbreakpoint.c (bpfinishpy_pre_stop_hook): Update
5507         get_return_value caller.
5508
5509 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5510
5511         * dummy-frame.c (struct dummy_frame_dtor_list): New.
5512         (struct dummy_frame): Replace dtor and dtor_data by dtor_list.
5513         (remove_dummy_frame): Process dtor_list.
5514         (pop_dummy_frame): Process dtor_list.
5515         (register_dummy_frame_dtor): Maintain dtor_list.
5516         (find_dummy_frame_dtor): Handle dtor_list.
5517         * dummy-frame.h (register_dummy_frame_dtor, find_dummy_frame_dtor):
5518         Update comments.
5519
5520 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5521
5522         * compile/compile-object-run.c (do_module_cleanup): Add parameter
5523         registers_valid.
5524         (compile_object_run): Update do_module_cleanup caller.
5525         * dummy-frame.c: Include infcall.h.
5526         (struct dummy_frame): Update dtor comment.
5527         (remove_dummy_frame): Call dtor.
5528         (pop_dummy_frame): Update dtor caller.
5529         * dummy-frame.h (dummy_frame_dtor_ftype): Add parameter
5530         registers_valid.
5531
5532 2015-05-13  Joel Brobecker  <brobecker@adacore.com>
5533
5534         GDB 7.9.1 released.
5535
5536 2015-05-13  Joel Brobecker  <brobecker@adacore.com>
5537
5538         * NEWS: Create "Changes in GDB 7.9.1" section.  Move news about
5539         Xmethods now being able to specify a result type to that new
5540         sectioin.
5541
5542 2015-05-13  Patrick Palka  <patrick@parcs.ath.cx>
5543
5544         * tui/tui-win.c (tui_async_resize_screen): Clear win_resized
5545         first before resizing the window.
5546         * tui/tui.c (tui_enable): Likewise.
5547
5548 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5549
5550         * dummy-frame.c (struct dummy_frame): Use proper typedef for dtor.
5551         * dummy-frame.h (dummy_frame_dtor_ftype): Add its comment.
5552         * infcall.c (call_function_by_hand_dummy): Use proper typedef for
5553         dummy_dtor parameter.
5554         * infcall.h: Include dummy-frame.h.
5555         (call_function_by_hand_dummy_dtor_ftype): Remove.
5556         (call_function_by_hand_dummy): Use proper typedef for dummy_dtor
5557         parameter.
5558
5559 2015-05-13  Patrick Palka  <patrick@parcs.ath.cx>
5560
5561         PR gdb/17820
5562         * top.c (history_size_setshow_var): Change type to signed.
5563         Initialize to -2.  Update documentation.
5564         (set_readline_history_size): Define.
5565         (set_history_size_command): Use it.  Remove logic for handling
5566         out-of-range sizes.
5567         (init_history): Use set_readline_history_size().  Test for a
5568         value of -2 instead of 0 when determining whether to set a
5569         default history size.
5570         (init_main): Decode the argument of the "size" command as a
5571         zuinteger_unlimited.
5572
5573 2015-05-12  Doug Evans  <dje@google.com>
5574
5575         * dwarf2read.c (struct file_entry): Tweak comments.
5576         (get_debug_line_section): Tweak comments.
5577
5578 2015-05-12  Don Breazeal  <donb@codesourcery.com>
5579
5580         * NEWS: Announce fork support in the RSP and support
5581         for fork debugging in extended mode.
5582
5583 2015-05-12  Don Breazeal  <donb@codesourcery.com>
5584
5585         * remote.c (remote_insert_fork_catchpoint): New function.
5586         (remote_remove_fork_catchpoint): New function.
5587         (remote_insert_vfork_catchpoint): New function.
5588         (remote_remove_vfork_catchpoint): New function.
5589         (pending_fork_parent_callback): New function.
5590         (remove_new_fork_child): New function.
5591         (remote_update_thread_list): Call remote_notif_get_pending_events
5592         and remove_new_fork_child.
5593         (extended_remote_kill): Kill fork child when killing the
5594         parent before follow_fork completes.
5595         (init_extended_remote_ops): Initialize target vector with
5596         new fork catchpoint functions.
5597
5598 2015-05-12  Don Breazeal  <donb@codesourcery.com>
5599
5600         * remote.c (remove_vfork_event_p): New function.
5601         (remote_follow_fork): Add vfork event type to event checking.
5602         (remote_parse_stop_reply): New stop reasons "vfork" and
5603         "vforkdone" for RSP 'T' Stop Reply Packet.
5604
5605 2015-05-12  Don Breazeal  <donb@codesourcery.com>
5606
5607         * linux-nat.c (linux_nat_ptrace_options): New function.
5608         (linux_init_ptrace, wait_lwp, linux_nat_filter_event):
5609         Call linux_nat_ptrace_options and use different argument to
5610         linux_enable_event_reporting.
5611         (_initialize_linux_nat): Delete call to
5612         linux_ptrace_set_additional_flags.
5613         * nat/linux-ptrace.c (current_ptrace_options): Rename to
5614         supported_ptrace_options.
5615         (additional_flags): Delete variable.
5616         (linux_check_ptrace_features): Use supported_ptrace_options.
5617         (linux_test_for_tracesysgood, linux_test_for_tracefork):
5618         Likewise, and remove additional_flags check.
5619         (linux_enable_event_reporting): Change 'attached' argument to
5620         'options'.  Use supported_ptrace_options.
5621         (ptrace_supports_feature): Change comment.  Use
5622         supported_ptrace_options.
5623         (linux_ptrace_set_additional_flags): Delete function.
5624         * nat/linux-ptrace.h (linux_ptrace_set_additional_flags):
5625         Delete function prototype.
5626         * remote.c (remote_fork_event_p): New function.
5627         (remote_detach_pid): New function.
5628         (remote_detach_1): Call remote_detach_pid, don't mourn inferior
5629         if doing detach-on-fork.
5630         (remote_follow_fork): New function.
5631         (remote_parse_stop_reply): Handle new "T" stop reason "fork".
5632         (remote_pid_to_str): Print "process" strings for pid/0/0 ptids.
5633         (init_extended_remote_ops): Initialize to_follow_fork.
5634
5635 2015-05-12  Don Breazeal  <donb@codesourcery.com>
5636
5637         * nat/linux-ptrace.c (linux_check_ptrace_features): Change
5638         from static to extern.
5639         * nat/linux-ptrace.h (linux_check_ptrace_features): Declare.
5640         * remote.c (anonymous enum): <PACKET_fork_event_feature,
5641         * PACKET_vfork_event_feature>: New enumeration constants.
5642         (remote_protocol_features): Add table entries for new packets.
5643         (remote_query_supported): Add new feature queries to qSupported
5644         packet.
5645
5646 2015-05-12  Gary Benson <gbenson@redhat.com>
5647
5648         * remote.c (remote_add_inferior): Call exec_file_locate_attach
5649         for fake PIDs as well as real ones.
5650         (remote_pid_to_exec_file): Send empty annex if PID is fake.
5651
5652 2015-05-09  Siva Chandra Reddy  <sivachandra@google.com>
5653
5654         * NEWS (Python Scripting): Mention the new gdb.Value methods.
5655         * python/py-value.c (valpy_reference_value): New function.
5656         (valpy_const_value): Likewise.
5657         (value_object_methods): Add new methods.
5658         * value.c (make_cv_value): New function.
5659         * value.h (make_cv_value): Declare.
5660
5661 2015-05-08  Yao Qi  <yao@codesourcery.com>
5662             Sandra Loosemore  <sandra@codesourcery.com>
5663
5664         * dwarf2read.c (setup_type_unit_groups): Do NULL pointer check
5665         to 'lh->include_dirs' before accessing to it.
5666         (psymtab_include_file_name): Likewise.
5667         (dwarf_decode_lines_1): Likewise.
5668         (dwarf_decode_lines): Likewise.
5669         (file_file_name): Likewise.
5670
5671 2015-05-08  Sandra Loosemore  <sandra@codesourcery.com>
5672
5673         * nios2-linux-tdep.c (NIOS2_SIGRETURN_TRAMP_ADDR): Define.
5674         (NIOS2_SIGRETURN_REGSAVE_OFFSET): Define.
5675         (nios2_linux_rt_sigreturn_init): Adjust base address of
5676         register save area.
5677
5678 2015-05-08  Sandra Loosemore  <sandra@codesourcery.com>
5679
5680         * nios2-tdep.c (nios2_breakpoint_from_pc): Revert to using
5681         "trap 31" as the breakpoint instruction on all targets.
5682
5683 2015-05-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
5684
5685         * infcmd.c (print_return_value): Remove unused declaration.
5686
5687 2015-05-08  Joel Brobecker  <brobecker@adacore.com>
5688
5689         * dwarf2read.c (attr_to_dynamic_prop)
5690         <DW_AT_data_member_location>: Use read_type_die isntead of
5691         get_die_type.
5692
5693 2015-05-08  Joel Brobecker  <brobecker@adacore.com>
5694
5695         * ada-lang.c (ada_convert_actual): Add handling of formals
5696         passed inside an aligner type.
5697
5698 2015-05-08  Joel Brobecker  <brobecker@adacore.com>
5699
5700         * copyright.py (NOT_FSF_LIST): Remove sim/erc32 entries.
5701
5702 2015-05-08  Siva Chandra Reddy  <sivachandra@google.com>
5703
5704         PR python/18291
5705         * python/lib/gdb/command/xmethods.py (print_xm_info): Fix typo.
5706         Print xmethod matcher status.
5707
5708 2015-05-08  Andreas Arnez  <arnez@linux.vnet.ibm.com>
5709
5710         * s390-linux-nat.c (fill_gregset): Avoid relying on the PSWA
5711         register in the regcache when treating the PSWM register, and vice
5712         versa.
5713
5714 2015-05-07  Gary Benson <gbenson@redhat.com>
5715
5716         * linux-thread-db.c (struct thread_db_info)
5717         <td_ta_map_id2thr_p>: Remove field.
5718         (try_thread_db_load_1): Remove initialization for the above.
5719
5720 2015-05-07  Gary Benson <gbenson@redhat.com>
5721
5722         * linux-thread-db.c (struct thread_db_info)
5723         <td_thr_validate_p>: Remove field.
5724         (try_thread_db_load_1): Remove initialization for the above.
5725
5726 2015-05-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
5727
5728         * compile/compile-object-load.c (compile_object_load): Support
5729         mst_text_gnu_ifunc.
5730
5731 2015-05-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
5732
5733         * compile/compile.c (compile_to_object): Make the cmd_string parameter
5734         const.  Use new variables for the const compatibility.
5735         (eval_compile_command): Make the cmd_string parameter const.
5736         * compile/compile.h (eval_compile_command): Make the cmd_string
5737         parameter const.
5738
5739 2015-05-06  Joel Brobecker  <brobecker@adacore.com>
5740
5741         * defs.h (deprecated_init_ui_hook): Delete.  Remove associated
5742         comment.
5743         * top.c (deprecated_init_ui_hook): Delete.
5744         (gdb_init): Remove handling of deprecated_init_ui_hook.
5745         * interps.c (clear_interpreter_hooks): Remove handling of
5746         deprecated_init_ui_hook.
5747         * main.c (captured_main): Update comment.
5748
5749 2015-05-06  Joel Brobecker  <brobecker@adacore.com>
5750
5751         * solib.c (_initialize_solib): Add "info dll" alias creation.
5752         * windows-nat.c (set_windows_aliases): Delete.
5753         (_initialize_windows_nat): Remove deprecated_init_ui_hook
5754         assignment.
5755         * NEWS: Add news entry about "info dll" now being available
5756         on all platforms.
5757
5758 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
5759
5760         * ada-lang.c (value_assign_to_component): Reformat and improve
5761         documentation. Remove all trailing spaces.
5762
5763 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
5764
5765         * inline-frame.c (inline_frame_sniffer, skip_inline_frames):
5766         Stop counting inlined frames as soon as an out-of-line function
5767         is found.
5768
5769 2014-05-05  Pierre-Marie de Rodat  <derodat@adacore.com>
5770
5771         * dwarf2read.c (inherit_abstract_dies): Skip
5772         DW_TAG_GNU_call_site dies while inheriting children of an
5773         abstract DIE into a scope.
5774         (read_lexical_block_scope): Inherit abstract DIE's for
5775         lexical scopes.
5776
5777 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
5778
5779         * ada-valprint.c (val_print_packed_array_elements): Delete
5780         variable "len".  Add a type-length check when comparing two
5781         consecutive elements of the array.  Use the element's actual
5782         length in call to value_contents_eq.
5783         * ada-lang.c (ada_value_primitive_packed_val): Always return
5784         a value whose type has been resolved.
5785
5786 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
5787
5788         * ada-lang.c (ada_value_primitive_packed_val): Recompute
5789         BIT_SIZE and LEN if the size of the resolved type is smaller
5790         than BIT_SIZE * HOST_CHAR_BIT.
5791
5792 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
5793
5794         * ada-lang.c (ada_value_primitive_packed_val): Use a more
5795         correct address in call to value_at.  Adjust call to
5796         value_address accordingly.
5797
5798 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
5799
5800         * ada-valprint.c (ada_val_print_1): Resolve TYPE before trying
5801         to print it.
5802
5803 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
5804
5805         * dwarf2loc.h (struct property_addr_info): Add "valaddr" field.
5806         * dwarf2loc.c (dwarf2_evaluate_property): Add handling of
5807         pinfo->valaddr.
5808         * gdbtypes.h (resolve_dynamic_type): Add "valaddr" parameter.
5809         * gdbtypes.c (resolve_dynamic_struct): Set pinfo.valaddr.
5810         (resolve_dynamic_type_internal): Set pinfo.valaddr.
5811         Add handling of addr_stack->valaddr.
5812         (resolve_dynamic_type): Add "valaddr" parameter.
5813         Set pinfo.valaddr field.
5814         * ada-lang.c (ada_discrete_type_high_bound): Update call to
5815         resolve_dynamic_type.
5816         (ada_discrete_type_low_bound): Likewise.
5817         * findvar.c (default_read_var_value): Likewise.
5818         * value.c (value_from_contents_and_address): Likewise.
5819
5820 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
5821
5822         * gdbtypes.c (resolve_dynamic_array): Use
5823         create_array_type_with_stride instead of create_array_type.
5824
5825 2015-04-30  DJ Delorie  <dj@redhat.com>
5826
5827         * rl78-tdep.c (rl78_analyze_prologue): Pass RL78_ISA_DEFAULT to
5828         rl78_decode_opcode
5829
5830 2015-04-29  Doug Evans  <dje@google.com>
5831
5832         PR python/18285
5833         * NEWS: Document new gdb.XMethodWorker.get_result_type method.
5834         * eval.c (evaluate_subexp_standard) <OP_FUNCALL>: Handle
5835         EVAL_AVOID_SIDE_EFFECTS for xmethods.
5836         * extension-priv.h (struct extension_language_ops)
5837         <get_xmethod_result_type>: New member.
5838         * extension.c (get_xmethod_result_type): New function.
5839         * extension.h (get_xmethod_result_type): Declare.
5840         * python/py-xmethods.c (get_result_type_method_name): New static
5841         global.
5842         (py_get_result_type_method_name): Ditto.
5843         (gdbpy_get_xmethod_result_type): New function.
5844         (gdbpy_initialize_xmethods): Initialize py_get_result_type_method_name.
5845         * python/python-internal.h (gdbpy_get_xmethod_result_type): Declare.
5846         * python/python.c (python_extension_ops): Add
5847         gdbpy_get_xmethod_result_type.
5848         * python/lib/gdb/xmethod.py (XMethodWorker): Add get_result_type.
5849         * valarith.c (value_x_binop): Handle EVAL_AVOID_SIDE_EFFECTS for
5850         xmethods.
5851         (value_x_unop): Ditto.
5852         * value.c (result_type_of_xmethod): New function.
5853         * value.h (result_type_of_xmethod): Declare.
5854
5855 2015-04-29  Gary Benson <gbenson@redhat.com>
5856
5857         * solib.c (solib_find_1): Allow fd argument to be NULL.
5858         (exec_file_find): Update comment.
5859         (solib_find): Likewise.
5860         * exec.c (exec_file_locate_attach): Use NULL as fd
5861         argument to exec_file_find to avoid having to close
5862         the opened file.
5863         * infrun.c (follow_exec): Likewise.
5864
5865 2015-04-28  Doug Evans  <dje@google.com>
5866
5867         PR python/18299
5868         * python/lib/gdb/printing.py (register_pretty_printer): Handle
5869         name or __name__ attributes.  Handle gdb module as first argument.
5870
5871 2015-04-28  Doug Evans  <dje@google.com>
5872
5873         PR python/18089
5874         * python/py-prettyprint.c (print_children): Verify result of children
5875         iterator.  Provide better error message.
5876         * python/python-internal..h (gdbpy_print_python_errors_p): Declare.
5877         * python/python.c (gdbpy_print_python_errors_p): New function.
5878
5879 2015-04-28  Doug Evans  <dje@google.com>
5880
5881         * gdbtypes.h (struct cplus_struct_type) <n_baseclasses>: Fix comment.
5882
5883 2015-04-28  Sasha Smundak  <asmundak@google.com>
5884
5885         * NEWS: Mention gdb.Type.optimized_out method.
5886         * python/py-type.c (typy_optimized_out):  New function.
5887
5888 2015-04-28  John Baldwin  <jhb@FreeBSD.org>
5889
5890         * fbsd-nat.c: Include "gdb_wait.h" instead of <sys/wait.h>.
5891
5892 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
5893
5894         * utils.c (init_page_info): Set rl_catch_sigwinch to zero.
5895         (initialize_utils): Move call of init_page_info() to ...
5896         * top.c (gdb_init): ... here.
5897
5898 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
5899
5900         * tui/tui-win.c (tui_sigwinch_handler): Remove now-stale comment.
5901         (tui_sigwinch_handler): Still update our idea of
5902         the terminal's width and height even when TUI is not active.
5903
5904 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
5905
5906         * utils.h (set_screen_width_and_height): Declare.
5907         * utils.c (set_screen_width_and_height): Define.
5908         * tui/tui-win.c (tui_update_gdb_sizes): Use it.
5909
5910 2015-04-28  Gary Benson <gbenson@redhat.com>
5911
5912         * infrun.c (solist.h): New include.
5913         (follow_exec): Use exec_file_find to prefix execd_pathname
5914         with gdb_sysroot.
5915
5916 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
5917
5918         * tui/tui-source.c (tui_set_source_content): Avoid calling
5919         strcpy() when offset is 0.
5920
5921 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
5922
5923         PR gdb/18155
5924         * tui/tui-data.c (tui_free_window): Don't free the locator
5925         window when passed an SRC_WIN or a DISASSEM_WIN.
5926
5927 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
5928
5929         * tui/tui-data.h (struct tui_win_element): Forward-declare.
5930         (tui_win_content): Move declaration.
5931         (struct tui_gen_win_info): Give 'content' field the
5932         type tui_win_content.
5933         * tui/tui-data.c (init_content_element): Remove redundant and
5934         erroneous casts.
5935         (tui_add_content_elements): Remove erroneous cast.
5936         * tui/tui-disasm.c (tui_set_disassem_content): Remove redundant
5937         casts.
5938         (tui_get_begin_asm_address): Likewise.
5939         * tui/tui-regs.c (tui_show_registers): Likewise.
5940         (tui_show_register_group): Likewise.
5941         (tui_display_registers_from): Likewise.
5942         (tui_check_register_values): Likewise.
5943         * tui/tui-source.c (tui_set_source_content): Likewise.
5944         (tui_set_source_content_nil): Likewise.
5945         (tui_source_is_displayed): Likewise.
5946         * tui/tui-stack.c (tui_show_locator_content): Likewise.
5947         (tui_set_locator_fullname): Likewise.
5948         (tui_set_locator_info): Likewise.
5949         (tui_show_frame_info): Likewise.
5950         * tui/tui-winsource.c (tui_clear_source_content): Likewise.
5951         (tui_show_source_line): Likewise.
5952         (tui_horizontal_source_scroll): Likewise.
5953         (tui_update_breakpoint_info): Likewise.
5954         (tui_set_exec_info_content): Likewise.
5955         (tui_show_exec_info_content): Likewise.
5956         (tui_alloc_source_buffer): Likewise.
5957         (tui_line_is_displayed): Likewise.
5958         (tui_addr_is_displayed): Likewise.
5959
5960 2015-04-27  John Baldwin  <jhb@FreeBSD.org>
5961
5962         * fbsd-nat.c: (fbsd_wait) [PL_FLAG_EXEC]: Report TARGET_WAITKIND_EXECD
5963         event if PL_FLAG_EXEC is set.
5964         [PL_FLAG_EXEC] (fbsd_insert_exec_catchpoint): New function.
5965         [PL_FLAG_EXEC] (fbsd_remove_exec_catchpoint): New function.
5966         (fbsd_nat_add_target) [PL_FLAG_EXEC]: Set
5967         "to_insert_exec_catchpoint" to "fbsd_insert_exec_catchpoint".
5968         Set "to_remove_exec_catchpoint" to "fbsd_remove_exec_catchpoint".
5969
5970 2015-04-27  John Baldwin  <jhb@FreeBSD.org>
5971
5972         * fbsd-nat.c: [PT_LWPINFO] New variable super_wait.
5973         [TDP_RFPPWAIT] New variable fbsd_pending_children.
5974         [TDP_RFPPWAIT] (fbsd_remember_child): New function.
5975         [TDP_RFPPWAIT] (fbsd_is_child_pending): New function.
5976         [TDP_RFPPWAIT] (fbsd_fetch_kinfo_proc): New function.
5977         [PT_LWPINFO] (fbsd_wait): New function.
5978         [TDP_RFPPWAIT] (fbsd_follow_fork): New function.
5979         [TDP_RFPPWAIT] (fbsd_insert_fork_catchpoint): New function.
5980         [TDP_RFPPWAIT] (fbsd_remove_fork_catchpoint): New function.
5981         [TDP_RFPPWAIT] (fbsd_insert_vfork_catchpoint): New function.
5982         [TDP_RFPPWAIT] (fbsd_remove_vfork_catchpoint): New function.
5983         [TDP_RFPPWAIT] (fbsd_enable_follow_fork): New function.
5984         [TDP_RFPPWAIT] (fbsd_post_startup_inferior): New function.
5985         [TDP_RFPPWAIT] (fbsd_post_attach): New function.
5986         (fbsd_nat_add_target) [PT_LWPINFO] Set "to_wait" to
5987         "fbsd_wait".
5988         [TDP_RFPPWAIT] Set "to_follow_fork" to "fbsd_follow_fork".
5989         Set "to_insert_fork_catchpoint" to "fbsd_insert_fork_catchpoint".
5990         Set "to_remove_fork_catchpoint" to "fbsd_remove_fork_catchpoint".
5991         Set "to_insert_vfork_catchpoint" to "fbsd_insert_vfork_catchpoint".
5992         Set "to_remove_vfork_catchpoint" to "fbsd_remove_vfork_catchpoint".
5993         Set "to_post_startup_inferior" to "fbsd_post_startup_inferior".
5994         Set "to_post_attach" to "fbsd_post_attach".
5995
5996 2015-04-27  John Baldwin  <jhb@FreeBSD.org>
5997
5998         * fbsd-nat.c (fbsd_pid_to_exec_file): Mark static.
5999         (fbsd_find_memory_regions): Mark static.
6000         (fbsd_nat_add_target): New function.
6001         * fbsd-nat.h: Export fbsd_nat_add_target and remove prototypes for
6002         fbsd_pid_to_exec_file and fbsd_find_memory_regions.
6003         * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Use fbsd_nat_add_target.
6004         * i386fbsd-nat.c (_initialize_i386fbsd_nat): Likewise.
6005         * ppcfbsd-nat.c (_initialize_ppcfbsd_nat): Likewise.
6006         * sparc64fbsd-nat.c (_initialize_sparc64fbsd_nat): Likewise.
6007
6008 2015-04-27  Gary Benson <gbenson@redhat.com>
6009
6010         * objfiles.c (allocate_objfile): Do not attempt to expand name
6011         if name is a "target:" filename.
6012         * auto-load.c (load_auto_scripts_for_objfile): Do not attempt
6013         to load auto-load scripts for objfiles with "target:" filenames.
6014
6015 2015-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
6016
6017         * s390-linux-tdep.c: Include "elf/s390.h" and "elf-bfd.h".
6018         (enum s390_vector_abi_kind): New enum.
6019         (struct gdbarch_tdep)<vector_abi>: New field.
6020         (s390_effective_inner_type): Add parameter min_size.  Stop
6021         unwrapping if the inner type is smaller than min_size.
6022         (s390_function_arg_float): Adjust call to
6023         s390_effective_inner_type.
6024         (s390_function_arg_vector): New function.
6025         (s390_function_arg_integer): Adjust comment.
6026         (struct s390_arg_state)<vr>: New field.
6027         (s390_handle_arg): Add parameter 'is_unnamed'.  Pass vector
6028         arguments according to vector ABI when appropriate.
6029         (s390_push_dummy_call): Initialize the argument state's field
6030         'vr'.  Adjust calls to s390_handle_arg.
6031         (s390_register_return_value): Handle vector return values.
6032         (s390_return_value): Apply the "register" return value convention
6033         to a vector when appropriate.
6034         (s390_gdbarch_init): Initialize tdep->vector_abi.
6035         * NEWS: Announce S390 vector ABI support.
6036
6037 2015-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
6038
6039         * s390-linux-tdep.c (s390_return_value_convention): Remove
6040         function.  Inline its logic...
6041         (s390_return_value): ...here.  Instead, move the handling of the
6042         "register" return value convention...
6043         (s390_register_return_value): ...here.  New function.
6044
6045 2015-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
6046
6047         * s390-linux-tdep.c
6048         (is_float_singleton): Remove function.  Move the "singleton" part
6049         of the logic...
6050         (s390_effective_inner_type): ...here.  New function.
6051         (is_float_like): Remove function.  Inline its logic...
6052         (s390_function_arg_float): ...here.
6053         (is_pointer_like, is_integer_like, is_struct_like): Remove
6054         functions.  Inline their logic...
6055         (s390_function_arg_integer): ...here.
6056         (s390_function_arg_pass_by_reference): Remove function.
6057         (extend_simple_arg): Remove function.
6058         (alignment_of): Remove function.
6059         (struct s390_arg_state): New structure.
6060         (s390_handle_arg): New function.
6061         (s390_push_dummy_call): Move parameter placement logic to the new
6062         function s390_handle_arg.  Call it for calculating the stack area
6063         sizes first, and again for actually writing the parameters.
6064
6065 2015-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
6066
6067         * s390-linux-tdep.c (is_power_of_two): Add comment.  Return
6068           false if the argument is zero.
6069
6070 2015-04-27  Pierre-Marie de Rodat  <derodat@adacore.com>
6071
6072         * ada-lang.c (template_to_static_fixed_type): Return input type
6073         when it is already fixed.  Cache the input type itself when not
6074         creating a static fixed copy.  Make it explicit that we never
6075         molestate the input type.
6076         * gdbtypes.c (resolve_dynamic_struct): Reset the
6077         TYPE_TARGET_TYPE field for resolved copies.
6078
6079 2015-04-27  Joel Brobecker  <brobecker@adacore.com>
6080
6081         * ada-lang.c (ada_is_tagged_type): Add call to ada_check_typedef.
6082         (ada_lookup_struct_elt_type): Remove calls to ada_check_typedef.
6083         (template_to_static_fixed_type): Call ada_check_typedef only
6084         when necessary.
6085
6086 2015-04-24  Andrew Burgess  <andrew.burgess@embecosm.com>
6087
6088         * cli/cli-dump.c (srec_dump_command): Add internationalization
6089         mark ups.
6090         (ihex_dump_command): Likewise.
6091         (tekhex_dump_command): Likewise.
6092         (binary_dump_command): Likewise.
6093         (binary_append_command): Likewise.
6094
6095 2015-04-24  Andrew Burgess  <andrew.burgess@embecosm.com>
6096
6097         * cli/cli-dump.c (verilog_cmdlist): New variable.
6098         (dump_verilog_memory): New function.
6099         (dump_verilog_value): New function.
6100         (verilog_dump_command): New function.
6101         (_initialize_cli_dump): Add new commands to support verilog dump
6102         format.
6103         * NEWS: Add entry for "dump verilog".
6104
6105 2015-04-24  Pierre-Marie de Rodat  <derodat@adacore.com>
6106
6107         * gdbtypes.c (print_gnat_stuff): Do not recurse on the
6108         descriptive type when there is none.
6109
6110 2015-04-23  Patrick Palka  <patrick@parcs.ath.cx>
6111
6112         * tui/tui-win.c (tui_async_resize_screen): Call
6113         rl_resize_terminal().
6114
6115 2015-04-22  Jon Turney  <jon.turney@dronecode.org.uk>
6116
6117         * windows-nat.c (handle_output_debug_string): Don't change
6118         current_event.dwThreadId.
6119         (get_windows_debug_event): Use thread_id, rather than relying on
6120         current_event.dwThreadId being changed.
6121
6122 2015-04-22  Jon Turney  <jon.turney@dronecode.org.uk>
6123
6124         * windows-nat.c (windows_continue): Report an error if
6125         ContinueDebugEvent() fails.
6126
6127 2015-04-16  Jon Turney  <jon.turney@dronecode.org.uk>
6128
6129         * windows-nat.c (windows_resume): Fix misspelling in debug output.
6130
6131 2015-04-16  Jon Turney  <jon.turney@dronecode.org.uk>
6132
6133         * windows-nat.c (get_windows_debug_event): Replace retval with
6134         thread_id throughout.  Update stale comment.
6135
6136 2015-04-16  Jon Turney  <jon.turney@dronecode.org.uk>
6137
6138         * windows-nat.c (get_windows_debug_event): Don't use ternary
6139         conditional operator.
6140
6141 2015-04-21  Pierre Muller  <muller@sourceware.org>
6142
6143         PR pascal/17815
6144         p-exp.y (yylex): Reorganize code to return the matched pattern
6145         for a field of this.
6146
6147 2015-04-21  Gary Benson <gbenson@redhat.com>
6148
6149         * common/fileio.h (fileio_to_host_openflags): New declaration.
6150         * common/fileio.c (fcntl.h): New include.
6151         (fileio_to_host_openflags): New function, factored out from...
6152         * inf-child.c (inf_child_fileio_open_flags_to_host): ...here.
6153         Single use updated.
6154
6155 2015-04-21  Kevin Buettner  <kevinb@redhat.com>
6156
6157         * rl78-tdep.c (RL78_SP_ADDR): Define.
6158         (opc_reg_to_gdb_regnum): New static function.
6159         (rl78_analyze_prologue): Recognize instructions forming slightly
6160         more interesting prologues.
6161
6162 2015-04-20  Pierre-Marie de Rodat  <derodat@adacore.com>
6163
6164         Revert:
6165         2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
6166         * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
6167         TYPE_CODE_REF types so that they are not considered as dynamic
6168         depending on the referenced type.
6169         (resolve_dynamic_type_internal): Likewise.
6170
6171 2015-04-20  Pierre-Marie de Rodat  <derodat@adacore.com>
6172
6173         Revert:
6174         2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
6175         * gdbtypes.c (is_dynamic_type_internal): Remove the unused
6176         "top_level" parameter.
6177         (resolve_dynamic_type_internal): Remove the unused "top_level"
6178         parameter.  Update call to is_dynamic_type_internal.
6179         (is_dynamic_type): Update call to is_dynamic_type_internal.
6180         (resolve_dynamic_range): Update call to
6181         resolve_dynamic_type_internal.
6182         (resolve_dynamic_union): Likewise.
6183         (resolve_dynamic_struct): Likewise.
6184         (resolve_dynamic_type): Likewise.
6185
6186 2015-04-19  Gabriel Krisman Bertazi  <gabriel@krisman.be>
6187
6188         * breakpoint.c (update_dprintf_command_list): Remove duplicated
6189         xmalloc.
6190
6191 2015-04-20  Thomas Schwinge  <thomas@codesourcery.com>
6192
6193         * reply_mig_hack.awk: Robustify parsing.
6194
6195         * reply_mig_hack.awk: Don't bother to declare an intermediate
6196         function pointer variable.
6197
6198 2015-04-17  Doug Evans  <dje@google.com>
6199
6200         * solib-svr4.c (svr4_exec_displacement): Rename outer "displacement"
6201         to "exec_displacement" to avoid confusion with inner use of the name.
6202
6203 2015-04-17  Pedro Alves  <palves@redhat.com>
6204
6205         * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Return zero
6206         if HW point of TYPE isn't supported.
6207
6208 2015-04-17  Yao Qi  <yao.qi@linaro.org>
6209             Pedro Alves  <palves@redhat.com>
6210
6211         * target.h (target_can_use_hardware_watchpoint): Update comments.
6212         Remove trailing ";".
6213
6214 2015-04-17  Gary Benson <gbenson@redhat.com>
6215
6216         * remote.c (remote_add_inferior): New argument try_open_exec.
6217         If nonzero, attempt to open the inferior's executable file as
6218         the main executable if no main executable is open already.
6219         All callers updated.
6220         * NEWS: Mention that GDB now supports automatic location and
6221         retrieval of executable + files from remote targets.
6222
6223 2015-04-17  Gary Benson <gbenson@redhat.com>
6224
6225         * target.h (TARGET_OBJECT_EXEC_FILE): New enum value.
6226         * remote.c (PACKET_qXfer_exec_file): Likewise.
6227         (remote_protocol_features): Register the
6228         "qXfer:exec-file:read" feature.
6229         (remote_xfer_partial): Handle TARGET_OBJECT_EXEC_FILE.
6230         (remote_pid_to_exec_file): New function.
6231         (init_remote_ops): Initialize to_pid_to_exec_file.
6232         (_initialize_remote): Register new "set/show remote
6233         pid-to-exec-file-packet" command.
6234         * NEWS: Announce new qXfer:exec-file:read packet.
6235
6236 2015-04-17  Gary Benson <gbenson@redhat.com>
6237
6238         * nat/linux-procfs.h (linux_proc_pid_to_exec_file):
6239         New declaration.
6240         * nat/linux-procfs.c (linux_proc_pid_to_exec_file):
6241         New function, factored out from...
6242         * linux-nat.c (linux_child_pid_to_exec_file): ...here.
6243
6244 2015-04-17  Gary Benson <gbenson@redhat.com>
6245
6246         * exec.c (solist.h): New include.
6247         (exec_file_locate_attach): Prefix absolute executable
6248         paths with gdb_sysroot if set.
6249         * NEWS: Mention that executable paths may be prepended
6250         with sysroot.
6251
6252 2015-04-17  Gary Benson <gbenson@redhat.com>
6253
6254         * solist.h (exec_file_find): New declaration.
6255         * solib.c (solib_find_1): New function, factored out from...
6256         (solib_find): ...here.
6257         (exec_file_find): New function.
6258
6259 2015-04-17  Gary Benson <gbenson@redhat.com>
6260
6261         * gdbcore.h (exec_file_locate_attach): New declaration.
6262         * exec.c (exec_file_locate_attach): New function, factored
6263         out from...
6264         * infcmd.c (attach_command_post_wait): ...here.
6265
6266 2015-04-17  Mike Frysinger  <vapier@gentoo.org>
6267
6268         * MAINTAINERS: Add myself for Blackfin/write-after-approval.
6269
6270 2015-04-16  Yao Qi  <yao.qi@linaro.org>
6271
6272         * infrun.c (maybe_software_singlestep): Declare.
6273         (displaced_step_fixup): Call maybe_software_singlestep.
6274
6275 2015-04-15  Doug Evans  <dje@google.com>
6276
6277         * psymtab.c (psym_expand_symtabs_matching): Add QUIT call.
6278
6279 2015-04-15  Doug Evans  <dje@google.com>
6280
6281         * dwarf2read.c (dw2_expand_symtabs_matching): Add some QUIT calls.
6282
6283 2015-04-15  Simon Marchi  <simon.marchi@ericsson.com>
6284
6285         * python/lib/gdb/command/unwinders.py: Add parentheses.
6286
6287 2015-04-15  Yao Qi  <yao.qi@linaro.org>
6288
6289         * arm-linux-tdep.c (arm_linux_copy_svc): Update debug message.
6290
6291 2015-04-15  Yao Qi  <yao.qi@linaro.org>
6292
6293         * arm-linux-tdep.c (arm_linux_copy_svc): Fix indentation.
6294
6295 2015-04-15  Yao Qi  <yao.qi@linaro.org>
6296
6297         * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
6298         dsc->insn_size instead of 4.
6299
6300 2015-04-14  Gary Benson <gbenson@redhat.com>
6301
6302         * jit.c (mem_bfd_iovec_stat): Zero supplied buffer.
6303         * minidebug.c (lzma_stat): Likewise.
6304         * solib-spu.c (spu_bfd_iovec_stat): Likewise.
6305         * spu-linux-nat.c (spu_bfd_iovec_stat): Likewise.
6306
6307 2015-04-13  Stan Shebs  <stanshebs@google.com>
6308
6309         * MAINTAINERS: Update my email address.
6310
6311 2015-04-13  John Baldwin  <jhb@FreeBSD.org>
6312
6313         * amd64-tdep.c (amd64_target_description): New function.
6314         * amd64-tdep.h: Export amd64_target_description and tdesc_amd64.
6315         * amd64bsd-nat.c [PT_GETXSTATE_INFO]: New variable amd64bsd_xsave_len.
6316         (amd64bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
6317         x86 extended save area.
6318         (amd64bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
6319         * amd64bsd-nat.h: Export amd64bsd_xsave_len.
6320         * amd64fbsd-nat.c (amd64fbsd_read_description): New function.
6321         (_initialize_amd64fbsd_nat): Set "to_read_description" to
6322         "amd64fbsd_read_description".
6323         * amd64fbsd-tdep.c (amd64fbsd_core_read_description): New function.
6324         (amd64fbsd_supply_xstateregset): New function.
6325         (amd64fbsd_collect_xstateregset): New function.
6326         Add "amd64fbsd_xstateregset".
6327         (amd64fbsd_iterate_over_regset_sections): New function.
6328         (amd64fbsd_init_abi): Set "xsave_xcr0_offset" to
6329         "I386_FBSD_XSAVE_XCR0_OFFSET".
6330         Add "iterate_over_regset_sections" gdbarch method.
6331         Add "core_read_description" gdbarch method.
6332         * i386-tdep.c (i386_target_description): New function.
6333         * i386-tdep.h: Export i386_target_description and tdesc_i386.
6334         * i386bsd-nat.c [PT_GETXSTATE_INFO]: New variable i386bsd_xsave_len.
6335         (i386bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
6336         x86 extended save area.
6337         (i386bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
6338         * i386bsd-nat.h: Export i386bsd_xsave_len.
6339         * i386fbsd-nat.c (i386fbsd_read_description): New function.
6340         (_initialize_i386fbsd_nat): Set "to_read_description" to
6341         "i386fbsd_read_description".
6342         * i386fbsd-tdep.c (i386fbsd_core_read_xcr0): New function.
6343         (i386fbsd_core_read_description): New function.
6344         (i386fbsd_supply_xstateregset): New function.
6345         (i386fbsd_collect_xstateregset): New function.
6346         Add "i386fbsd_xstateregset".
6347         (i386fbsd_iterate_over_regset_sections): New function.
6348         (i386fbsd4_init_abi): Set "xsave_xcr0_offset" to
6349         "I386_FBSD_XSAVE_XCR0_OFFSET".
6350         Add "iterate_over_regset_sections" gdbarch method.
6351         Add "core_read_description" gdbarch method.
6352         * i386fbsd-tdep.h: New file.
6353
6354 2015-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
6355
6356         * NEWS (Changes since GDB 7.9): Add removed -xdb.
6357         * breakpoint.c (command_line_is_silent): Remove xdb_commands
6358         conditional.
6359         (_initialize_breakpoint): Remove xdb_commands for bc, ab, sb, db, ba
6360         and lb.
6361         * cli/cli-cmds.c (_initialize_cli_cmds): Remove xdb_commands for v and
6362         va.
6363         * cli/cli-decode.c (find_command_name_length): Remove xdb_commands
6364         conditional.
6365         * defs.h (xdb_commands): Remove declaration.
6366         * f-valprint.c (_initialize_f_valprint): Remove xdb_commands for lc.
6367         * guile/scm-cmd.c (command_classes): Remove xdb from comment.
6368         * infcmd.c (run_no_args_command, go_command): Remove.
6369         (_initialize_infcmd): Remove xdb_commands for S, go, g, R and lr.
6370         * infrun.c (xdb_handle_command): Remove.
6371         (_initialize_infrun): Remove xdb_commands for lz and z.
6372         * main.c (xdb_commands): Remove variable.
6373         (captured_main): Remove "xdb" from long_options.
6374         (print_gdb_help): Remove --xdb from help.
6375         * python/py-cmd.c (gdbpy_initialize_commands): Remove xdb from comment.
6376         * source.c (_initialize_source): Remove xdb_commands for D, ld, / and ?.
6377         * stack.c (backtrace_full_command, args_plus_locals_info)
6378         (current_frame_command): Remove.
6379         (_initialize_stack): Remove xdb_commands for t, T and l.
6380         * symtab.c (_initialize_symtab): Remove xdb_commands for lf and lg.
6381         * thread.c (_initialize_thread): Remove xdb_commands condition.
6382         * tui/tui-layout.c (tui_toggle_layout_command)
6383         (tui_toggle_split_layout_command, tui_handle_xdb_layout): Remove.
6384         (_initialize_tui_layout): Remove xdb_commands for td and ts.
6385         * tui/tui-regs.c (tui_scroll_regs_forward_command)
6386         (tui_scroll_regs_backward_command): Remove.
6387         (_initialize_tui_regs): Remove xdb_commands for fr, gr, sr, +r and -r.
6388         * tui/tui-win.c (tui_xdb_set_win_height_command): Remove.
6389         (_initialize_tui_win): Remove xdb_commands for U and w.
6390         * utils.c (pagination_on_command, pagination_off_command): Remove.
6391         (initialize_utils): Remove xdb_commands for am and sm.
6392
6393 2015-04-10  Pedro Alves  <palves@redhat.com>
6394
6395         * infrun.c (displaced_step_fixup): Switch to the event ptid
6396         earlier.  If the thread stopped for a watchpoint and the
6397         target/arch has non-continuable watchpoints, cancel the displaced
6398         step.
6399         (resume): Don't start a displaced step if in-line step-over info
6400         is valid.
6401
6402 2015-04-10  Pedro Alves  <palves@redhat.com>
6403
6404         * infrun.c (displaced_step_in_progress): New function.
6405         (do_target_resume): Advise target to report all signals if
6406         displaced stepping.
6407
6408 2015-04-10  Pedro Alves  <palves@redhat.com>
6409
6410         PR gdb/18216
6411         * infrun.c (process_event_stop_test): Don't assume a step-resume
6412         is set if tp->stepped_breakpoint is true.
6413
6414 2015-04-10  Yao Qi  <yao.qi@linaro.org>
6415
6416         * arm-tdep.c (install_alu_reg): Update comment.
6417         (thumb_copy_alu_reg): Remove local variable rn.  Update
6418         debugging message.  Use r2 instead of r1 in the modified
6419         instruction.
6420
6421 2015-04-10  Pedro Alves  <palves@redhat.com>
6422
6423         PR gdb/13858
6424         * amd64-linux-tdep.c (amd64_linux_init_abi_common): Install
6425         linux_displaced_step_location as gdbarch_displaced_step_location
6426         hook.
6427         * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
6428         * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
6429         * linux-tdep.c (linux_displaced_step_location): New function,
6430         based on ppc_linux_displaced_step_location.
6431         * linux-tdep.h (linux_displaced_step_location): New declaration.
6432         * ppc-linux-tdep.c (ppc_linux_entry_point_addr): Delete.
6433         (ppc_linux_inferior_created, ppc_linux_displaced_step_location):
6434         Delete.
6435         (ppc_linux_init_abi): Install linux_displaced_step_location as
6436         gdbarch_displaced_step_location hook, even without Cell/B.E..
6437         (_initialize_ppc_linux_tdep): Don't install
6438         ppc_linux_inferior_created as inferior_created observer.
6439         * s390-linux-tdep.c (s390_gdbarch_init): Install
6440         linux_displaced_step_location as gdbarch_displaced_step_location
6441         hook.
6442
6443 2015-04-09  Gary Benson <gbenson@redhat.com>
6444
6445         * common/common-remote-fileio.h: Rename to...
6446         * common/fileio.h: ...this.  Update all references.
6447         (remote_fileio_to_fio_error): Rename to...
6448         (host_to_fileio_error): ...this.
6449         (remote_fileio_to_be): Rename to...
6450         (host_to_bigendian): ...this.  Update all callers.
6451         (remote_fileio_to_fio_uint): Rename to...
6452         (host_to_fileio_uint): ...this.  Update all callers.
6453         (remote_fileio_to_fio_time): Rename to...
6454         (host_to_fileio_time): ...this.  Update all callers.
6455         (remote_fileio_to_fio_stat): Rename to...
6456         (host_to_fileio_stat): ...this.
6457         Update all references.
6458         * common/common-remote-fileio.c: Rename to...
6459         * common/fileio.c: ...this.  Update all references.
6460         (remote_fileio_to_fio_error): Rename to...
6461         (host_to_fileio_error): ...this.  Update all callers.
6462         (remote_fileio_mode_to_target): Rename to...
6463         (fileio_mode_pack): ...this.  Update all callers.
6464         (remote_fileio_to_fio_mode): Rename to...
6465         (host_to_fileio_mode): ...this.  Update all callers.
6466         (remote_fileio_to_fio_ulong): Rename to...
6467         (host_to_fileio_ulong): ...this.  Update all callers.
6468         (remote_fileio_to_fio_stat): Rename to...
6469         (host_to_fileio_stat): ...this.  Update all callers.
6470
6471 2015-04-09  Andy Wingo  <wingo@igalia.com>
6472
6473         * guile/scm-frame.c (gdbscm_frame_read_register): New function.
6474         (frame_functions): Bind gdbscm_frame_read_register to
6475         frame-read-register.
6476         * guile/lib/gdb.scm (frame-read-register): Export.
6477
6478 2015-04-09  Gary Benson <gbenson@redhat.com>
6479
6480         * common/common-remote-fileio.h (remote_fileio_to_fio_error):
6481         New declaration.
6482         * common/common-remote-fileio.c (remote_fileio_to_fio_error):
6483         New function, factored out the named functions below.
6484         * inf-child.c (gdb/fileio.h): Remove include.
6485         (common-remote-fileio.h): New include.
6486         (inf_child_errno_to_fileio_error): Remove function.  Update
6487         all callers to use remote_fileio_to_fio_error.
6488         * remote-fileio.c (remote_fileio_errno_to_target): Likewise.
6489
6490 2015-04-09  Andy Wingo  <wingo@igalia.com>
6491
6492         * MAINTAINERS (Write After Approval): Add Andy Wingo.
6493
6494 2015-04-09  H.J. Lu  <hongjiu.lu@intel.com>
6495
6496         * acinclude.m4: (GDB_AC_CHECK_BFD): Set ZLIBDIR with $zlibdir.
6497         Replace $zlibdir with $ZLIBDIR in LDFLAGS.
6498         * configure: Regenerated.
6499
6500 2015-04-09  Pedro Alves  <palves@redhat.com>
6501
6502         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strtok_r.
6503         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/strtok_r.m4.
6504         * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4: Regenerate.
6505         * gnulib/import/Makefile.am: Update.
6506         * gnulib/import/Makefile.in: Update.
6507         * gnulib/import/m4/gnulib-cache.m4: Update.
6508         * gnulib/import/m4/gnulib-comp.m4: Update.
6509         * gnulib/import/m4/strtok_r.m4: New file.
6510         * gnulib/import/strtok_r.c: New file.
6511
6512 2015-04-09  Pedro Alves  <palves@redhat.com>
6513
6514         * gnulib/update-gnulib.sh (aclocal version check): Filter out
6515         "called too early to check prototype".
6516
6517 2015-04-08  Sergio Durigan Junior  <sergiodj@redhat.com>
6518
6519         PR python/16699
6520         * python/py-cmd.c (cmdpy_completer_helper): Adjust function to not
6521         use a caching mechanism.  Adjust comments and code to reflect
6522         that.  Replace 'sizeof' by 'strlen' when fetching 'wordobj'.
6523         (cmdpy_completer_handle_brkchars): Adjust call to
6524         cmdpy_completer_helper.  Call Py_XDECREF for 'resultobj'.
6525         (cmdpy_completer): Likewise.
6526
6527 2015-04-08  Yao Qi  <yao.qi@linaro.org>
6528
6529         * spu-tdep.c (spu_gdbarch_init): Don't call
6530         set_gdbarch_cannot_step_breakpoint.
6531
6532 2015-04-07  Sergio Durigan Junior  <sergiodj@redhat.com>
6533
6534         * linux-tdep.c (decode_vmflags): Initialize 'saveptr'.
6535
6536 2015-04-07  Pedro Alves  <palves@redhat.com>
6537
6538         * gdbthread.h (ALL_NON_EXITED_THREADS_SAFE): Rename to ...
6539         (ALL_THREADS_SAFE): ... this, and don't skip exited threads.
6540         (delete_exited_threads): New declaration.
6541         * infrun.c (follow_exec): Use ALL_THREADS_SAFE.
6542         * linux-nat.c (linux_nat_update_thread_list): New function.
6543         (linux_nat_add_target): Install it.
6544         * remote.c (remote_update_thread_list): Use ALL_THREADS_SAFE.
6545         * thread.c (prune_threads): Use ALL_THREADS_SAFE.
6546         (delete_exited_threads): New function.
6547
6548 2015-04-07  Pedro Alves  <pedro@codesourcery.com>
6549
6550         * infrun.c (resume) <displaced stepping debug output>: Get the
6551         leader thread's regcache, not resume_ptid's.
6552
6553 2015-04-06  Doug Evans  <xdje42@gmail.com>
6554
6555         * symtab.c (hash_symbol_entry): Hash STRUCT_DOMAIN symbols as
6556         VAR_DOMAIN.
6557         (symbol_cache_lookup): Clarify use of bsc_ptr, slot_ptr parameters.
6558         Include symbol domain in debugging output.
6559
6560 2015-04-06  Pedro Alves  <palves@redhat.com>
6561             Bernd Edlinger  <bernd.edlinger@hotmail.de>
6562
6563         * configure.ac: Remove the mingw32-specific stub-termcap.o
6564         fallback, and instead fallback to the stub termcap on all hosts.
6565         * configure: Regenerate.
6566         * stub-termcap.c [!__MINGW32__] (PC, BC, UP): Define as weak
6567         symbols.
6568
6569 2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
6570
6571         * gdbtypes.c (is_dynamic_type_internal): Remove the unused
6572         "top_level" parameter.
6573         (resolve_dynamic_type_internal): Remove the unused "top_level"
6574         parameter.  Update call to is_dynamic_type_internal.
6575         (is_dynamic_type): Update call to is_dynamic_type_internal.
6576         (resolve_dynamic_range): Update call to
6577         resolve_dynamic_type_internal.
6578         (resolve_dynamic_union): Likewise.
6579         (resolve_dynamic_struct): Likewise.
6580         (resolve_dynamic_type): Likewise.
6581
6582 2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
6583
6584         * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
6585         TYPE_CODE_REF types so that they are not considered as dynamic
6586         depending on the referenced type.
6587         (resolve_dynamic_type_internal): Likewise.
6588
6589 2015-04-02  H.J. Lu  <hongjiu.lu@intel.com>
6590
6591         * Makefile.in (top_srcdir): New.
6592         * configure: Regenerated.
6593
6594 2015-04-02  Gary Benson <gbenson@redhat.com>
6595
6596         * NEWS: Announce the new default sysroot of "target:".
6597
6598 2015-04-02  Gary Benson <gbenson@redhat.com>
6599
6600         * main.c (captured_main): Set gdb_sysroot to "target:"
6601         if not otherwise set.
6602
6603 2015-04-02  Gary Benson <gbenson@redhat.com>
6604
6605         * exec.c (exec_file_attach): Support "target:" filenames.
6606
6607 2015-04-02  Gary Benson <gbenson@redhat.com>
6608
6609         * solib.c (solib_find): Strip "target:" prefix from sysroot
6610         if accessing local files.
6611
6612 2015-04-02  Gary Benson <gbenson@redhat.com>
6613
6614         * symfile.c (symfile_bfd_open): Reorder to remove duplicated
6615         checks and error messages.
6616
6617 2015-04-02  Gary Benson <gbenson@redhat.com>
6618
6619         * remote.h (REMOTE_SYSROOT_PREFIX): Remove definition.
6620         (remote_filename_p): Remove declaration.
6621         (remote_bfd_open): Likewise.
6622         * remote.c (remote_bfd_iovec_open): Remove function.
6623         (remote_bfd_iovec_close): Likewise.
6624         (remote_bfd_iovec_pread): Likewise.
6625         (remote_bfd_iovec_stat): Likewise.
6626         (remote_filename_p): Likewise.
6627         (remote_bfd_open): Likewise.
6628         * symfile.h (gdb_bfd_open_maybe_remote): Remove declaration.
6629         * symfile.c (separate_debug_file_exists): Use gdb_bfd_open.
6630         (gdb_bfd_open_maybe_remote): Remove function.
6631         (symfile_bfd_open):  Replace remote filename check with
6632         target filename check.
6633         (reread_symbols): Use gdb_bfd_open.
6634         * build-id.c (gdbcore.h): New include.
6635         (build_id_to_debug_bfd): Use gdb_bfd_open.
6636         * infcmd.c (attach_command_post_wait): Remove remote filename
6637         check.
6638         * solib.c (solib_find): Replace remote-specific handling with
6639         target-specific handling.  Update comments where necessary.
6640         (solib_bfd_open): Replace remote-specific handling with
6641         target-specific handling.
6642         (gdb_sysroot_changed): New function.
6643         (_initialize_solib): Call the above when gdb_sysroot changes.
6644         * windows-tdep.c (gdbcore.h): New include.
6645         (windows_xfer_shared_library): Use gdb_bfd_open.
6646
6647 2015-04-02  Gary Benson <gbenson@redhat.com>
6648
6649         * gdb/gdb_bfd.h (TARGET_SYSROOT_PREFIX): New definition.
6650         (is_target_filename): New declaration.
6651         (gdb_bfd_has_target_filename): Likewise.
6652         (gdb_bfd_open): Update documentation comment.
6653         * gdb_bfd.c (target.h): New include.
6654         (gdb/fileio.h): Likewise.
6655         (is_target_filename): New function.
6656         (gdb_bfd_has_target_filename): Likewise.
6657         (fileio_errno_to_host): Likewise.
6658         (gdb_bfd_iovec_fileio_open): Likewise.
6659         (gdb_bfd_iovec_fileio_pread): Likewise.
6660         (gdb_bfd_iovec_fileio_close): Likewise.
6661         (gdb_bfd_iovec_fileio_fstat): Likewise.
6662         (gdb_bfd_open): Use target fileio to access paths prefixed
6663         with "target:" where necessary.
6664
6665 2015-04-02  Gary Benson <gbenson@redhat.com>
6666
6667         * target.h (struct target_ops) <to_filesystem_is_local>:
6668         New field.
6669         (target_filesystem_is_local): New macro.
6670         * target-delegates.c: Regenerate.
6671         * remote.c (remote_filesystem_is_local): New function.
6672         (init_remote_ops): Initialize to_filesystem_is_local.
6673
6674 2015-04-02  Gary Benson <gbenson@redhat.com>
6675
6676         * target.h (struct target_ops) <to_fileio_fstat>: New field.
6677         (target_fileio_fstat): New declaration.
6678         * target.c (target_fileio_fstat): New function.
6679         * inf-child.c (inf_child_fileio_fstat): Likewise.
6680         (inf_child_target): Initialize to_fileio_fstat.
6681         * remote.c (init_remote_ops): Likewise.
6682
6683 2015-04-01  Sasha Smundak  <asmundak@google.com>
6684
6685         * Makefile.in (SUBDIR_PYTHON_OBJS): Add py-unwind.o.
6686         (SUBDIR_PYTHON_SRCS): Add py-unwind.c.
6687         (py-unwind.o): New recipe.
6688         * NEWS: mention Python frame unwinding.
6689         * data-directory/Makefile.in (PYTHON_FILE_LIST): Add
6690         gdb/unwinder.py and gdb/command/unwinder.py
6691         * python/lib/gdb/__init__.py (packages): Add frame_unwinders
6692         list.
6693         (execute_unwinders): New function.
6694         * python/lib/gdb/command/unwinders.py: New file.
6695         * python/lib/gdb/unwinder.py: New file.
6696         * python/py-objfile.c (objfile_object): Add frame_unwinders field.
6697         (objfpy_dealloc): Decrement frame_unwinders reference count.
6698         (objfpy_initialize): Create frame_unwinders list.
6699         (objfpy_get_frame_unwinders): New function.
6700         (objfpy_set_frame_unwinders): Ditto.
6701         (objfile_getset): Add frame_unwinders attribute to Objfile.
6702         * python/py-progspace.c (pspace_object): Add frame_unwinders field.
6703         (pspy_dealloc): Decrement frame_unwinders reference count.
6704         (pspy_initialize): Create frame_unwinders list.
6705         (pspy_get_frame_unwinders): New function.
6706         (pspy_set_frame_unwinders): Ditto.
6707         (pspy_getset): Add frame_unwinders attribute to gdb.Progspace.
6708         * python/py-unwind.c: New file.
6709         * python/python-internal.h (pspy_get_name_unwinders): New prototype.
6710         (objpy_get_frame_unwinders): New prototype.
6711         (gdbpy_initialize_unwind): New prototype.
6712         * python/python.c (gdbpy_apply_type_printers): Call
6713         gdbpy_initialize_unwind.
6714
6715 2015-04-01  Pedro Alves  <palves@redhat.com>
6716
6717         * infrun.c (resume): Check currently_stepping after clearing
6718         stepped_breakpoint, not before.
6719
6720 2015-04-01  Pedro Alves  <palves@redhat.com>
6721
6722         * infrun.c (print_target_wait_results): Print all the ptid
6723         elements.
6724
6725 2015-04-01  Pedro Alves  <palves@redhat.com>
6726
6727         * infrun.c (keep_going): Also discard cleanups if inserting
6728         breakpoints fails.
6729
6730 2015-04-01  Pedro Alves  <palves@redhat.com>
6731
6732         * infrun.c (wait_for_inferior): Install the
6733         finish_thread_state_cleanup cleanup across the whole function, not
6734         just around handle_inferior_event.
6735
6736 2015-04-01  Pedro Alves  <palves@redhat.com>
6737
6738         * infrun.c (resume) <step past permanent breakpoint>: Use
6739         do_target_resume.
6740
6741 2015-04-01  Pedro Alves  <palves@redhat.com>
6742
6743         * linux-nat.c (linux_handle_extended_wait): Always call set_running.
6744
6745 2015-04-01  Pierre-Marie de Rodat  <derodat@adacore.com>
6746
6747         * MAINTAINERS (Write After Approval): Add "Pierre-Marie de Rodat".
6748
6749 2015-04-01  Pedro Alves  <palves@redhat.com>
6750
6751         * linux-thread-db.c (record_thread): Readd the thread to gdb's
6752         list if it was marked exited.
6753
6754 2015-04-01  H.J. Lu  <hongjiu.lu@intel.com>
6755
6756         * configure: Regenerated.
6757
6758 2015-03-31  Sergio Durigan Junior  <sergiodj@redhat.com>
6759             Jan Kratochvil  <jan.kratochvil@redhat.com>
6760             Oleg Nesterov  <oleg@redhat.com>
6761
6762         PR corefiles/16092
6763         * linux-tdep.c: Include 'gdbcmd.h' and 'gdb_regex.h'.
6764         New enum identifying the various options of the coredump_filter
6765         file.
6766         (struct smaps_vmflags): New struct.
6767         (use_coredump_filter): New variable.
6768         (decode_vmflags): New function.
6769         (mapping_is_anonymous_p): Likewise.
6770         (dump_mapping_p): Likewise.
6771         (linux_find_memory_regions_full): New variables
6772         'coredumpfilter_name', 'coredumpfilterdata', 'pid', 'filterflags'.
6773         Removed variable 'modified'.  Read /proc/<PID>/smaps file; improve
6774         parsing of its information.  Implement memory mapping filtering
6775         based on its contents.
6776         (show_use_coredump_filter): New function.
6777         (_initialize_linux_tdep): New command 'set use-coredump-filter'.
6778         * NEWS: Mention the possibility of using the
6779         '/proc/PID/coredump_filter' file when generating a corefile.
6780         Mention new command 'set use-coredump-filter'.
6781
6782 2015-03-31  Sergio Durigan Junior  <sergiodj@redhat.com>
6783
6784         * solib-svr4.c (solib_svr4_r_ldsomap): Catch possible exception by
6785         read_memory_unsigned_integer.
6786
6787 2015-03-31  H.J. Lu  <hongjiu.lu@intel.com>
6788
6789         * Makefile.in (ZLIB): New.
6790         (ZLIBINC): Likewise.
6791         (INTERNAL_CFLAGS_BASE): Add $(ZLIBINC).
6792         (CLIBS): Add $(ZLIB).
6793         * acinclude.m4: (GDB_AC_CHECK_BFD): Add $zlibdir to LDFLAGS.
6794         Add -lz to LIBS.
6795         * gdb_bfd.c: Don't check HAVE_ZLIB_H to include <zlib.h>.
6796         * top.c (print_gdb_configuration): Remove --with-zlib and
6797         --without-zlib.
6798         * config.in: Regenerated.
6799         * configure: Likewise.
6800
6801 2015-03-31  Antoine Tremblay  <antoine.tremblay@ericsson.com>
6802
6803         * NEWS: Mention info os cpus support.
6804         * gdb/nat/linux-osdata.c (linux_xfer_osdata_cpus): New function.
6805         (struct osdata_type): Add cpus entry, reorder the entries in
6806         alphabetical order.
6807
6808 2015-03-31  Matthias Klose  <doko@ubuntu.com>
6809
6810         * compile/compile.c (compile_to_object): Allow triplets with or
6811         without vendor set.
6812
6813 2015-03-30  Doug Evans  <dje@google.com>
6814
6815         PR c++/18141
6816         * cp-namespace.c (cp_search_static_and_baseclasses): Always look for
6817         klass in VAR_DOMAIN.
6818
6819 2015-03-30  Gary Benson <gbenson@redhat.com>
6820
6821         * remote.c (remote_mourn_1): Remove function.  Update all callers
6822         to use remote_mourn.
6823         (extended_remote_mourn_1): Remove function.  Update all callers
6824         to use extended_remote_mourn.
6825         (extended_remote_attach_1): Remove function.  Update all callers
6826         to use extended_remote_attach.
6827
6828 2015-03-28  James Bowman  <james.bowman@ftdichip.com>
6829
6830         * Makefile.in (ALL_TARGET_OBS): Add ft32-tdep.o.
6831         (HFILES_NO_SRCDIR): Add ft32-tdep.h.
6832         (ALLDEPFILES): Add ft32-tdep.c.
6833         * configure.tgt: Add FT32 entry.
6834         * ft32-tdep.c: New file, FT32 target-dependent code.
6835         * ft32-tdep.h: New file, FT32 target-dependent code.
6836
6837 2015-03-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
6838
6839         Revert:
6840         2015-03-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
6841         Code cleanup.
6842         * printcmd.c (print_command_1): Move expr variable scope.
6843
6844 2015-03-27  Joel Brobecker  <brobecker@adacore.com>
6845
6846         * dtrace-probe.c (dtrace_process_dof_probe): Initialize expr to NULL.
6847
6848 2015-03-27  Andrzej Kaczmarek  <andrzej.kaczmarek@tieto.com>
6849
6850         * gdb_bfd.c (gdb_bfd_section_index): Fix off-by-one for special
6851         sections.
6852
6853 2015-03-26  Joel Brobecker  <brobecker@adacore.com>
6854
6855         * dtrace-probe.c (dtrace_process_dof_probe): Contain any
6856         exception raised while parsing the probe arguments.
6857         Force parsing to be done using the C language parser.
6858         * expression.h (parse_expression_with_language): Declare.
6859         * parse.c (parse_expression_with_language): New function.
6860
6861 2015-03-26  Jon Turney  <jon.turney@dronecode.org.uk>
6862
6863         * MAINTAINERS (Write After Approval): Add "Jon Turney".
6864
6865 2015-03-26  Andy Wingo  <wingo@igalia.com>
6866
6867         PR symtab/18148
6868         * dwarf2read.c (struct partial_die_info): Add has_const_value
6869         member.
6870         (add_partial_symbol): Don't punt on symbols that have const_value
6871         attributes.
6872         (read_partial_die): Detect DW_AT_const_value.
6873
6874 2015-03-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
6875
6876         Code cleanup.
6877         * printcmd.c (print_command_1): Move expr variable scope.
6878
6879 2015-03-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
6880
6881         Code cleanup.
6882         * printcmd.c (validate_format): Make the parameter cmdname const.
6883
6884 2015-03-26  Don Breazeal  <donb@codesourcery.com>
6885
6886         * remote.c (_initialize_remote): Update comment.
6887
6888 2015-03-26  Pedro Alves  <palves@redhat.com>
6889             Jon TURNEY  <jon.turney@dronecode.org.uk>
6890
6891         * coffread.c (coff_symfile_read): When constructing the name of an
6892         import stub symbol from import symbol for amd64, only skip the
6893         char after _imp_ if the target is underscored (like i386) and the
6894         char is indeed the target's leading char.
6895
6896 2015-03-25  Pedro Alves  <palves@redhat.com>
6897
6898         * target.h <to_async>: Replace 'callback' and 'context' parameters
6899         with boolean 'enable' parameter.
6900         (target_async): Replace CALLBACK and CONTEXT parameters with
6901         boolean ENABLE parameter.
6902         * inf-loop.c (inferior_event_handler): Adjust.
6903         * linux-nat.c (linux_nat_attach, linux_nat_resume)
6904         (linux_nat_resume): Adjust.
6905         (async_client_callback, async_client_context): Delete.
6906         (handle_target_event): Call inferior_event_handler directly.
6907         (linux_nat_async): Replace 'callback' and 'context' parameters
6908         with boolean 'enable' parameter.  Adjust.  Remove references to
6909         async_client_callback and async_client_context.
6910         (linux_nat_close): Adjust.
6911         * record-btrace.c (record_btrace_async): Replace 'callback' and
6912         'context' parameters with boolean 'enable' parameter.  Adjust.
6913         (record_btrace_resume): Adjust.
6914         * record-full.c (record_full_async): Replace 'callback' and
6915         'context' parameters with boolean 'enable' parameter.  Adjust.
6916         (record_full_resume, record_full_core_resume): Adjust.
6917         * remote.c (struct remote_state) <async_client_callback,
6918         async_client_context>: Delete fields.
6919         (remote_start_remote, extended_remote_attach_1, remote_resume)
6920         (extended_remote_create_inferior): Adjust.
6921         (remote_async_serial_handler): Call inferior_event_handler
6922         directly.
6923         (remote_async): Replace 'callback' and 'context' parameters with
6924         boolean 'enable' parameter.  Adjust.
6925         * top.c (gdb_readline_wrapper_cleanup, gdb_readline_wrapper):
6926         Adjust.
6927         * target-delegates.c: Regenerate.
6928
6929 2015-03-25  Gary Benson <gbenson@redhat.com>
6930             Pedro Alves  <palves@redhat.com>
6931
6932         * target.c (fileio_ft_t): New typedef, define object vector.
6933         (fileio_fhandles): New static variable.
6934         (is_closed_fileio_fh): New macro.
6935         (lowest_closed_fd): New static variable.
6936         (acquire_fileio_fd): New function.
6937         (release_fileio_fd): Likewise.
6938         (fileio_fd_to_fh): New macro.
6939         (target_fileio_open): Wrap the file descriptor on success.
6940         (target_fileio_pwrite): Updated to use wrapped file descriptor.
6941         (target_fileio_pread): Likewise.
6942         (target_fileio_close): Likewise.
6943
6944 2015-03-24  Pedro Alves  <palves@redhat.com>
6945
6946         * thread.c (thread_apply_all_command): Take exited threads into
6947         account.
6948
6949 2015-03-24  Pedro Alves  <palves@redhat.com>
6950
6951         * infrun.c (resume, proceed): Mention
6952         switch_back_to_stepped_thread, not switch_back_to_stepping.
6953
6954 2015-03-24  Pedro Alves  <palves@redhat.com>
6955
6956         * infrun.c (user_visible_resume_ptid): Rewrite going from
6957         most-locked to unlocked instead of the opposite.  Move comment ...
6958         * infrun.h (user_visible_resume_ptid): ... here.
6959
6960 2015-03-24  Pedro Alves  <palves@redhat.com>
6961
6962         * linux-nat.c (linux_nat_resume): Output debug logs before trying
6963         to resume the event lwp.  Use the lwp's ptid instead of the passed
6964         in (maybe wildcard) ptid.
6965         (stop_wait_callback): Tweak debug log output.
6966         (check_stopped_by_breakpoint): Tweak debug log output.  Also dump
6967         TRAP_TRACE.
6968         (linux_nat_filter_event): In debug output, distinguish a
6969         resume_stop SIGSTOP from a delayed SIGSTOP.  Output debug logs
6970         before trying to resume the lwp.
6971
6972 2015-03-24  Joel Brobecker  <brobecker@adacore.com>
6973
6974         * gdbtypes.h (struct dynamic_prop_list) <prop>: Remove
6975         pointer indirection.
6976         * gdbtypes.c (get_dyn_prop): Adjust, following change above.
6977         (add_dyn_prop, copy_dynamic_prop_list): Likewise.
6978
6979 2015-03-24  Joel Brobecker  <brobecker@adacore.com>
6980
6981         * gdbtypes.h (enum dynamic_prop_node_kind) <DYN_PROP_DATA_LOCATION>:
6982         Renames DYN_ATTR_DATA_LOCATION.
6983         (TYPE_DATA_LOCATION): Use DYN_PROP_DATA_LOCATION instead of
6984         DYN_ATTR_DATA_LOCATION.
6985         * dwarf2read.c (set_die_type): Use DYN_PROP_DATA_LOCATION
6986         instead of DYN_ATTR_DATA_LOCATION.
6987
6988 2015-03-24  Pedro Alves  <palves@redhat.com>
6989
6990         * breakpoint.c (until_break_command): Adjust call to proceed.
6991         * gdbthread.h (struct thread_control_state) <stepping_command>:
6992         New field.
6993         * infcall.c (run_inferior_call): Adjust call to proceed.
6994         * infcmd.c (run_command_1, proceed_thread_callback, continue_1):
6995         Adjust calls to proceed.
6996         (set_step_frame): Set the current thread's step_start_function
6997         here.
6998         (step_once): Adjust calls to proceed.
6999         (jump_command, signal_command, until_next_command)
7000         (finish_backward, finish_forward, proceed_after_attach_callback)
7001         (attach_command_post_wait): Adjust calls to proceed.
7002         * infrun.c (proceed_after_vfork_done): Adjust call to proceed.
7003         (do_target_resume): New function, factored out from ...
7004         (resume): ... here.  Remove 'step' parameter.  Instead, check
7005         currently_stepping to determine whether the thread should be
7006         single-stepped.
7007         (proceed): Remove 'step' parameter and don't set the thread's
7008         step_start_function here.  Adjust call to 'resume'.
7009         (handle_inferior_event): Adjust calls to 'resume'.
7010         (switch_back_to_stepped_thread): Use do_target_resume instead of
7011         'resume'.
7012         (keep_going): Adjust calls to 'resume'.
7013         * infrun.h (proceed): Remove 'step' parameter.
7014         (resume): Likewise.
7015         * windows-nat.c (do_initial_windows_stuff): Adjust call to
7016         'resume'.
7017         * mi/mi-main.c (proceed_thread): Adjust call to 'proceed'.
7018
7019 2015-03-24  Pedro Alves  <palves@redhat.com>
7020
7021         * gdbthread.h (struct thread_control_state) <stepping_command>:
7022         New field.
7023         * infcmd.c (step_once): Pass step=1 to clear_proceed_status.  Set
7024         the thread's stepping_command field.
7025         * infrun.c (resume): Check the thread's stepping_command flag to
7026         determine which threads should be resumed.  Rename 'entry_step'
7027         local to user_step.
7028         (clear_proceed_status_thread): Clear 'stepping_command'.
7029         (schedlock_applies): Change parameter type to struct thread_info
7030         pointer.  Adjust.
7031         (find_thread_needs_step_over): Remove 'step' parameter.  Adjust.
7032         (switch_back_to_stepped_thread): Adjust calls to
7033         'schedlock_applies'.
7034         (_initialize_infrun): Adjust "set scheduler-locking step" help.
7035
7036 2015-03-24  Pedro Alves  <palves@redhat.com>
7037
7038         * infrun.c (step_start_function): Delete and ...
7039         * gdbthread.h (struct thread_control_state) <step_start_function>:
7040         ... now a field here.
7041         * infrun.c (clear_proceed_status_thread): Clear the thread's
7042         step_start_function.
7043         (proceed, process_event_stop_test, print_stop_event): Adjust.
7044
7045 2015-03-24  Pedro Alves  <palves@redhat.com>
7046
7047         * infrun.c (proceed): No longer handle negative step.
7048
7049 2015-03-24  Gary Benson  <gbenson@redhat.com>
7050
7051         * nat/x86-linux.h (x86_linux_new_thread): New declaration.
7052         (x86_linux_prepare_to_resume): Likewise.
7053         * x86-linux-nat.c (x86_linux_new_thread):
7054         Moved to nat/x86-linux.c.
7055         (x86_linux_prepare_to_resume): Likewise.
7056         * nat/x86-linux.c (x86_linux_new_thread): New function.
7057         (x86_linux_prepare_to_resume): Likewise.
7058
7059 2015-03-24  Gary Benson  <gbenson@redhat.com>
7060
7061         * nat/x86-linux-dregs.h: New file.
7062         * nat/x86-linux-dregs.c: Likewise.
7063         * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux-dregs.h.
7064         (x86-linux-dregs.o): New rule.
7065         * config/i386/linux.mh (NATDEPFILES): Add x86-linux-dregs.o.
7066         * config/i386/linux64.mh (NATDEPFILES): Likewise.
7067         * x86-linux-nat.c: Include nat/x86-linux-dregs.h.
7068         (u_debugreg_offset): Moved to nat/x86-linux-dregs.c.
7069         (x86_linux_dr_get): Likewise.
7070         (x86_linux_dr_set): Likewise.
7071         (x86_linux_dr_get_addr): Likewise.
7072         (x86_linux_dr_get_control): Likewise.
7073         (x86_linux_dr_get_status): Likewise.
7074         (update_debug_registers_callback): Likewise.
7075         (x86_linux_dr_set_control): Likewise.
7076         (x86_linux_dr_set_addr): Likewise.
7077         (x86_linux_update_debug_registers): Likewise.
7078
7079 2015-03-24  Gary Benson  <gbenson@redhat.com>
7080
7081         * x86-linux-nat.c (x86_linux_update_debug_registers):
7082         New function, factored out from...
7083         (x86_linux_prepare_to_resume): ...this.
7084
7085 2015-03-24  Gary Benson  <gbenson@redhat.com>
7086
7087         * x86-linux-nat.c (x86_linux_dr_get): Update comments.
7088         (x86_linux_dr_set): Likewise.
7089         (x86_linux_dr_get_addr): Likewise.
7090         (x86_linux_dr_get_control): Likewise.
7091         (x86_linux_dr_get_status): Likewise.
7092         (update_debug_registers_callback): Likewise.
7093         (x86_linux_dr_set_control): Likewise.
7094         (x86_linux_dr_set_addr): Likewise.
7095         (x86_linux_prepare_to_resume): Likewise.
7096         (x86_linux_new_thread): Likewise.
7097
7098 2015-03-24  Gary Benson  <gbenson@redhat.com>
7099
7100         * x86-linux-nat.c (x86_linux_dr_set_addr): Update assertion.
7101         (x86_linux_new_thread): Rename argument.
7102
7103 2015-03-24  Gary Benson  <gbenson@redhat.com>
7104
7105         * nat/x86-linux.h: New file.
7106         * nat/x86-linux.c: Likewise.
7107         * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux.h.
7108         (x86-linux.o): New rule.
7109         * config/i386/linux.mh (NATDEPFILES): Add x86-linux.o.
7110         * config/i386/linux64.mh (NATDEPFILES): Likewise.
7111         * nat/linux-nat.h (struct arch_lwp_info): New forward declaration.
7112         (lwp_set_arch_private_info): New declaration.
7113         (lwp_arch_private_info): Likewise.
7114         * linux-nat.c (lwp_set_arch_private_info): New function.
7115         (lwp_arch_private_info): Likewise.
7116         * x86-linux-nat.c: Include nat/x86-linux.h.
7117         (arch_lwp_info): Removed structure.
7118         (update_debug_registers_callback):
7119         Use lwp_set_debug_registers_changed.
7120         (x86_linux_prepare_to_resume): Use lwp_debug_registers_changed
7121         and lwp_set_debug_registers_changed.
7122         (x86_linux_new_thread): Use lwp_set_debug_registers_changed.
7123
7124 2015-03-24  Gary Benson  <gbenson@redhat.com>
7125
7126         * nat/linux-nat.h (ptid_of_lwp): New declaration.
7127         (lwp_is_stopped): Likewise.
7128         (lwp_stop_reason): Likewise.
7129         * linux-nat.c (ptid_of_lwp): New function.
7130         (lwp_is_stopped): Likewise.
7131         (lwp_is_stopped_by_watchpoint): Likewise.
7132         * x86-linux-nat.c (update_debug_registers_callback):
7133         Use lwp_is_stopped.
7134         (x86_linux_prepare_to_resume): Use ptid_of_lwp and
7135         lwp_stop_reason.
7136
7137 2015-03-24  Gary Benson  <gbenson@redhat.com>
7138
7139         * linux-nat.h (linux_stop_lwp): Move declaration to...
7140         * nat/linux-nat.h (linux_stop_lwp): New declaration.
7141
7142 2015-03-24  Gary Benson  <gbenson@redhat.com>
7143
7144         * linux-nat.h: Include nat/linux-nat.h.
7145         (iterate_over_lwps): Move declaration to nat/linux-nat.h.
7146         * nat/linux-nat.h (struct lwp_info): New forward declaration.
7147         (iterate_over_lwps_ftype): New typedef.
7148         (iterate_over_lwps): New declaration.
7149         * linux-nat.h (iterate_over_lwps): Update comment.  Use
7150         iterate_over_lwps_ftype.  Update callback return value check.
7151
7152 2015-03-24  Gary Benson  <gbenson@redhat.com>
7153
7154         * x86-nat.h (x86_debug_reg_state): Move declaration to...
7155         * nat/x86-dregs.h (x86_debug_reg_state): New declaration.
7156
7157 2015-03-24  Gary Benson  <gbenson@redhat.com>
7158
7159         * nat/linux-nat.h (current_lwp_ptid): New declaration.
7160         * linux-nat.c (current_lwp_ptid): New function.
7161         * x86-linux-nat.c: Include nat/linux-nat.h.
7162         (x86_linux_dr_get_addr): Use current_lwp_ptid.
7163         (x86_linux_dr_get_control): Likewise.
7164         (x86_linux_dr_get_status): Likewise.
7165         (x86_linux_dr_set_control): Likewise.
7166         (x86_linux_dr_set_addr): Likewise.
7167
7168 2015-03-24  Antoine Tremblay  <antoine.tremblay@ericsson.com>
7169
7170         PR breakpoints/16466
7171         * breakpoint.c (create_breakpoint): Set thread on breakpoint struct.
7172
7173 2015-03-23  Joel Brobecker  <brobecker@adacore.com>
7174
7175         * ser-mingw.c (ser_windows_setparity): Fix indentation.
7176         * ser-unix.c (hardwire_setparity): Likewise.
7177
7178 2015-03-23  Yurij Grechishhev  <yurij.grechishhev@gmail.com>
7179
7180         * NEWS: Mention set/show serial parity command.
7181         * monitor.c (monitor_open): Call serial_setparity.
7182         * remote.c (remote_open_1): Likewise.
7183         * ser-base.c (ser_base_serparity): New function.
7184         * ser-base.h (ser_base_setparity): Add  declaration.
7185         * ser-go32.c (dos_ops): Set "setparity" field.
7186         * ser-mingw.c (ser_windows_raw): Do not set state.fParity and
7187         state.Parity.
7188         (ser_windows_setparity): New function.
7189         (hardwire_ops): Add ser_windows_setparity.
7190         (tty_ops): Add NULL for setparity field.
7191         (pipe_ops): Add ser_base_setparity.
7192         (tcp_ops): Likewise.
7193         * ser-pipe.c (pipe_ops): Likewise.
7194         * ser-tcp.c (tcp_ops): Likewise.
7195         * ser-unix.c (hardwire_setparity): Add declaration.
7196         (hardwire_raw): Don't reset PARENB flag.
7197         (hardwire_setparity): New function.
7198         (hardwire_ops): Add hardwire_setparity.
7199         * serial.c (serial_setparity): New function.
7200         (serial_parity): New global.
7201         (parity_none, parity_odd, parity_even, parity_enums, parity):
7202         New static globals.
7203         (set_parity): New function.
7204         (_initialize_serial): Add set/show serial parity commands.
7205         * serial.h (GDBPARITY_NONE): Define.
7206         (GDBPARITY_ODD): Define.
7207         (GDBPARITY_EVEN): Define.
7208         (serial_setparity) Add declaration.
7209         (struct serial_ops): Add setparity field.
7210         * target.h (serial_parity): Add declaration.
7211
7212 2015-03-23  Keith Seitz  <keiths@redhat.com>
7213
7214         * linespec.c (linespec_lexer_lex_keyword): Update comment.
7215
7216 2015-03-23  Keith Seitz  <keiths@redhat.com>
7217
7218         * breakpoint.c (parse_breakpoint_sals): Use
7219         linespec_lexer_lex_keyword to ascertain if the user specified
7220         a NULL location.
7221         * linespec.c [IF_KEYWORD_INDEX]: Define.
7222         (linespec_lexer_lex_keyword): Export.
7223         (struct ls_parser) <keyword_ok>: Remove.
7224         A keyword is only a keyword if not followed by another keyword.
7225         (linespec_lexer_lex_one): Remove keyword_ok handling.
7226         Add comment explaining why the parsing stream is not advanced
7227         when a keyword is seen.
7228         (parse_linespec): Remove parser->keyword_ok.
7229         * linespec.h (linespec_lexer_lex_keyword): Add declaration.
7230
7231 2015-03-23  Keith Seitz  <keiths@redhat.com>
7232
7233         PR gdb/18021
7234         * dwarf2read.c (dwarf2_add_member_fn): Issue a complaint
7235         if we find a static method with DW_AT_vtable_elem_location.
7236
7237 2015-03-21  Eli Zaretskii  <eliz@gnu.org>
7238
7239         * tui/tui-io.c (tui_expand_tabs): Reinitialize the column counter
7240         before the second loop, to avoid undefined behavior.  Reported by
7241         Anton Blanchard <anton@samba.org>.
7242
7243 2015-03-20  Keven Boell  <keven.boell@intel.com>
7244
7245         * gdbtypes.c (resolve_dynamic_type_internal): Adapt
7246         data_location usage to linked list.
7247         (resolve_dynamic_type_internal): Adapt data_location to
7248         linked list.
7249         (get_dyn_prop, add_dyn_prop, copy_dynamic_prop_list): New function.
7250         (copy_type_recursive, copy_type): Add copy of linked list.
7251         * gdbtypes.h (enum dynamic_prop_node_kind): New enum.
7252         (struct dynamic_prop_list): New struct.
7253         * dwarf2read.c (set_die_type): Set data_location data.
7254
7255 2015-03-20  Pedro Alves  <palves@redhat.com>
7256
7257         * i386-sol2-tdep.c (i386_sol2_static_transform_name): Move "p" to
7258         inner block and make it const.
7259         * machoread.c (get_archive_prefix_len): Make "lparen" const.
7260
7261 2015-03-20  Pedro Alves  <palves@redhat.com>
7262
7263         * breakpoint.c (set_breakpoint_condition): Make argument "exp" const.
7264         * breakpoint.h (set_breakpoint_condition): Update declaration.
7265
7266 2015-03-20  Pedro Alves  <palves@redhat.com>
7267
7268         * tui/tui-io.c (tui_expand_tabs): Make "s1" const.
7269
7270 2015-03-20  Pedro Alves  <palves@redhat.com>
7271
7272         * xcoffread.c (scan_xcoff_symtab): Make "p" and "q" const.
7273
7274 2015-03-20  Pedro Alves  <palves@redhat.com>
7275
7276         * remote-m32r-sdi.c (m32r_open): Make "port_str" const.
7277
7278 2015-03-20  Pedro Alves  <palves@redhat.com>
7279
7280         * nto-tdep.c (nto_find_and_open_solib): Make "endian" const.
7281         (nto_init_solib_absolute_prefix): Likewise.
7282
7283 2015-03-20  Pedro Alves  <palves@redhat.com>
7284
7285         * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Make "p" const.
7286         * spu-tdep.c (spu_gdbarch_init): Make "name" const.
7287
7288 2015-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
7289
7290         * config/djgpp/README: Remove gdb.hp.
7291
7292 2015-03-20  Yao Qi  <yao.qi@linaro.org>
7293
7294         * aarch64-tdep.c (aarch64_gdbarch_init): Don't call
7295         set_gdbarch_cannot_step_breakpoint.
7296
7297 2015-03-19  Pedro Alves  <palves@redhat.com>
7298
7299         * linux-nat.c (linux_resume_one_lwp): Rename to ...
7300         (linux_resume_one_lwp_throw): ... this.  Don't handle ESRCH here,
7301         instead call perror_with_name.
7302         (check_ptrace_stopped_lwp_gone): New function.
7303         (linux_resume_one_lwp): Reimplement as wrapper around
7304         linux_resume_one_lwp_throw that swallows errors if the LWP is
7305         gone.
7306         (resume_stopped_resumed_lwps): Try register reads in TRY/CATCH and
7307         swallows errors if the LWP is gone.  Use
7308         linux_resume_one_lwp_throw instead of linux_resume_one_lwp.
7309
7310 2015-03-19  Pedro Alves  <palves@redhat.com>
7311
7312         * linux-nat.c (status_callback): Return early if the LWP has no
7313         status pending.
7314
7315 2015-03-19  Pedro Alves  <palves@redhat.com>
7316
7317         * linux-nat.c (select_event_lwp_callback): Update comment to no
7318         longer mention SIGTRAP.
7319
7320 2015-03-18  Tristan Gingold  <gingold@adacore.com>
7321
7322         * amd64-windows-tdep.c (amd64_windows_find_unwind_info): Move
7323         redirection code to ...
7324         (amd64_windows_frame_decode_insns): ... Here.  Fix in prologue
7325         checks.  Fix SAVE_NONVOL operations.  Add debug code and comments.
7326
7327 2015-03-18  Gary Benson <gbenson@redhat.com>
7328
7329         (remote_protocol_features): Remove the "vFile:fstat" feature.
7330         (remote_hostio_fstat): Probe for "vFile:fstat" support.
7331
7332 2015-03-11  Yao Qi  <yao.qi@linaro.org>
7333
7334         PR tdep/18107
7335         * aarch64-linux-tdep.c: Include xml-syscall.h
7336         (aarch64_linux_get_syscall_number): New function.
7337         (aarch64_linux_init_abi): Call
7338         set_gdbarch_get_syscall_number.
7339         * syscalls/aarch64-linux.xml: New file.
7340
7341 2015-03-17  Yurij Grechishhev  <yurij.grechishhev@gmail.com>
7342
7343         * ser-base.h (ser_base_setstopbits): Change second argument name
7344         from "rate" to "num".
7345
7346 2015-03-17  Gary Benson <gbenson@redhat.com>
7347             Luke Allardyce <lukeallardyce@gmail.com>
7348
7349         PR gdb/18131
7350         * common/common-remote-fileio.h (sys/stat.h): New include.
7351         (stuct stat): Remove forward declaration.
7352
7353 2015-03-16  John Baldwin  <jhb@FreeBSD.org>
7354
7355         * fbsd-tdep.c (fbsd_make_corefile_notes): Fetch all target registers
7356         before writing core register notes.
7357
7358 2015-03-16  Yuanhui Zhang  <asmwarrior@gmail.com>
7359             Pedro Alves  <palves@redhat.com>
7360
7361         * gdb_curses.h (tgetnum): Mark with EXTERN_C.
7362         * stub-termcap.c (tgetent, tgetnum, tgetflag, tgetstr, tputs)
7363         (tgoto): Wrap with extern "C".
7364
7365 2015-03-16  Pedro Alves  <palves@redhat.com>
7366             Yuanhui Zhang  <asmwarrior@gmail.com>
7367
7368         * stub-termcap.c (tputs): Change prototype.
7369
7370 2015-03-16  Yuanhui Zhang  <asmwarrior@gmail.com>
7371             Pedro Alves  <palves@redhat.com>
7372
7373         * windows-nat.c (struct thread_info_struct): Rename to ...
7374         (struct windows_thread_info_struct): ... this.
7375         (thread_info): Rename to ...
7376         (windows_thread_info): ... this.
7377         All users updated.
7378
7379 2015-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
7380             Pedro Alves  <palves@redhat.com>
7381
7382         * NEWS: New Removed targets and native configurations.
7383
7384 2015-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
7385
7386         Remove HPUX.
7387         * Makefile.in (ALL_64_TARGET_OBS): Remove ia64-hpux-tdep.o.
7388         (ALL_TARGET_OBS): Remove hppa-hpux-tdep.o, solib-som.o and solib-pa64.o.
7389         (HFILES_NO_SRCDIR): Remove solib-som.h, inf-ttrace.h, solib-pa64.h and
7390         ia64-hpux-tdep.h, solib-ia64-hpux.h.
7391         (ALLDEPFILES): Remove hppa-hpux-tdep.c, hppa-hpux-nat.c,
7392         ia64-hpux-nat.c, ia64-hpux-tdep.c, somread.c and solib-som.c.
7393         * config/djgpp/fnchange.lst: Remove hppa-hpux-nat.c and
7394         hppa-hpux-tdep.c.
7395         * config/ia64/hpux.mh: Remove file.
7396         * config/pa/hpux.mh: Remove file.
7397         * configure: Rebuilt.
7398         * configure.ac (dlgetmodinfo, somread.o): Remove.
7399         * configure.host (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
7400         (ia64-*-hpux*): Remove its float format exception.
7401         * configure.tgt (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
7402         * hppa-hpux-nat.c: Remove file.
7403         * hppa-hpux-tdep.c: Remove file.
7404         * hppa-tdep.c (struct hppa_unwind_info, struct hppa_objfile_private):
7405         Move them here from hppa-tdep.h
7406         (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Make it static.
7407         (hppa_frame_prev_register_helper): Remove HPPA_FLAGS_REGNUM exception.
7408         * hppa-tdep.h (struct hppa_unwind_info, struct hppa_objfile_private):
7409         Move them to hppa-tdep.c.
7410         (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Remove
7411         declarations.
7412         * ia64-hpux-nat.c: Remove file.
7413         * ia64-hpux-tdep.c: Remove file.
7414         * ia64-hpux-tdep.h: Remove file.
7415         * inf-ttrace.c: Remove file.
7416         * inf-ttrace.h: Remove file.
7417         * solib-ia64-hpux.c: Remove file.
7418         * solib-ia64-hpux.h: Remove file.
7419         * solib-pa64.c: Remove file.
7420         * solib-pa64.h: Remove file.
7421         * solib-som.c: Remove file.
7422         * solib-som.h: Remove file.
7423         * somread.c: Remove file.
7424
7425 2015-03-13  John Baldwin  <jhb@FreeBSD.org>
7426
7427         * configure.ac: AC_SEARCH_LIBS(kinfo_getvmmap, util).
7428         * config.in: Regenerate.
7429         * configure: Regenerate.
7430         * fbsd-nat.c [!HAVE_KINFO_GETVMMAP] (fbsd_read_mapping): Don't
7431         define.
7432         (fbsd_find_memory_regions): Use kinfo_getvmmap to
7433         enumerate memory regions if present.
7434
7435 2015-03-13  John Baldwin  <jhb@FreeBSD.org>
7436
7437         * amd64fbsd-tdep.c (amd64fbsd_sigtramp_p): Style fixes.
7438         * i386fbsd-tdep.c: Fix style in various gdb_static_assert
7439         expressions.
7440         (i386fbsd_sigtramp_p): Likewise.
7441
7442 2015-03-12  John Baldwin  <jhb@FreeBSD.org>
7443
7444         * MAINTAINERS (Write After Approval): Add John Baldwin.
7445
7446 2015-03-12  Gary Benson <gbenson@redhat.com>
7447
7448         * solib.c (_initialize_solib): Make "set/show sysroot" use
7449         add_setshow_optional_filename_cmd so it can be restored to
7450         empty after being set.
7451
7452 2015-03-11  Sergio Durigan Junior  <sergiodj@redhat.com>
7453
7454         * Makefile.in (SFILES): New source break-catch-syscall.c.
7455         (COMMON_OBS): New object break-catch-syscall.o.
7456         * break-catch-syscall.c: New file.
7457         * breakpoint.c: Remove inclusion of "xml-syscall.h".
7458         (syscall_catchpoint_p): Move declaration to break-catch-syscall.c
7459         (struct syscall_catchpoint): Likewise.
7460         (dtor_catch_syscall): Likewise.
7461         (catch_syscall_inferior_data): Likewise.
7462         (struct catch_syscall_inferior_data): Likewise.
7463         (get_catch_syscall_inferior_data): Likewise.
7464         (catch_syscall_inferior_data_cleanup): Likewise.
7465         (insert_catch_syscall): Likewise.
7466         (remove_catch_syscall): Likewise.
7467         (breakpoint_hit_catch_syscall): Likewise.
7468         (print_it_catch_syscall): Likewise.
7469         (print_one_catch_syscall): Likewise.
7470         (print_mention_catch_syscall): Likewise.
7471         (print_recreate_catch_syscall): Likewise.
7472         (catch_syscall_breakpoint_ops): Likewise.
7473         (syscall_catchpoint_p): Likewise.
7474         (create_syscall_event_catchpoint): Likewise.
7475         (catch_syscall_split_args): Likewise.
7476         (catch_syscall_command_1): Likewise.
7477         (is_syscall_catchpoint_enabled): Likewise.
7478         (catch_syscall_enabled): Likewise.
7479         (catching_syscall_number): Likewise.
7480         (catch_syscall_completer): Likewise.
7481         (clear_syscall_counts): Likewise.
7482         (initialize_breakpoint_ops): Move initialization of syscall
7483         catchpoints to break-catch-syscall.c.
7484         (_initialize_breakpoint): Move code related to syscall catchpoints
7485         to break-catch-syscall.c.
7486
7487 2015-03-11  Sergio Durigan Junior  <sergiodj@redhat.com>
7488
7489         * breakpoint.c (breakpoint_find_if): New function.
7490         * breakpoint.h (breakpoint_find_if): New prototype.
7491
7492 2015-03-11  Gary Benson <gbenson@redhat.com>
7493
7494         * remote-fileio.h (remote_fileio_to_host_stat): New declaration.
7495         * remote-fileio.c (remote_fileio_to_host_uint): New function.
7496         (remote_fileio_to_host_ulong): Likewise.
7497         (remote_fileio_to_host_mode): Likewise.
7498         (remote_fileio_to_host_time): Likewise.
7499         (remote_fileio_to_host_stat): Likewise.
7500         * remote.c (PACKET_vFile_fstat): New enum value.
7501         (remote_protocol_features): Register the "vFile:fstat" feature.
7502         (remote_hostio_fstat): New function.
7503         (remote_bfd_iovec_stat): Use the above.
7504         (_initialize_remote): Register new "set/show remote
7505         hostio-fstat-packet" command.
7506         * symfile.c (separate_debug_file_exists): Update comment.
7507         * NEWS: Announce new vFile:fstat packet.
7508
7509 2015-03-11  Gary Benson <gbenson@redhat.com>
7510
7511         * common/common-remote-fileio.h: New file.
7512         * common/common-remote-fileio.c: Likewise.
7513         * Makefile.in (SFILES): Add common/common-remote-fileio.c.
7514         (HFILES_NO_SRCDIR): Add common/common-remote-fileio.h.
7515         (COMMON_OBS): Add common-remote-fileio.o.
7516         (common-remote-fileio.o): New rule.
7517         * remote-fileio.h (common-remote-fileio.h): New include.
7518         * remote-fileio.c (gdb/fileio.h): Do not include.
7519         (remote_fileio_to_be): Moved to common-remote-fileio.h.
7520         (remote_fileio_to_fio_uint): Likewise.
7521         (remote_fileio_to_fio_time): Likewise.
7522         (remote_fileio_mode_to_target): Moved to common-remote-fileio.c.
7523         (remote_fileio_to_fio_mode): Likewise.
7524         (remote_fileio_to_fio_ulong): Likewise.
7525         (remote_fileio_to_fio_stat): Likewise.
7526
7527 2015-03-11  Andy Wingo  <wingo@igalia.com>
7528
7529         * guile/scm-value.c (gdbscm_value_dynamic_type): Fix typo in which
7530         we were checking the cached type, not the cached dynamic type.
7531
7532 2015-03-11  Andy Wingo  <wingo@igalia.com>
7533
7534         * guile/scm-cmd.c (cmdscm_destroyer): Don't xfree the name and
7535         other strings, as these are on the GC'd heap, and will be
7536         collected along with the smob.
7537
7538 2015-03-11  Andy Wingo  <wingo@igalia.com>
7539
7540         * guile/scm-objfile.c (gdbscm_objfile_progspace): New function.
7541         (objfile_functions): Bind gdbscm_objfile_progspace to
7542         objfile-progspace.
7543         * guile/lib/gdb.scm: Add objfile-progspace to exports.
7544
7545 2015-03-11  Andy Wingo  <wingo@igalia.com>
7546
7547         * guile/guile.c (_initialize_guile): Disable automatic
7548         finalization, if Guile offers us that possibility.
7549         * guile/guile.c (call_initialize_gdb_module):
7550         * guile/scm-safe-call.c (gdbscm_with_catch): Arrange to run
7551         finalizers in appropriate places.
7552         * configure.ac (AC_TRY_LIBGUILE): Add a check for
7553         scm_set_automatic_finalization_enabled.
7554         * configure: Regenerated.
7555
7556 2015-03-11  Andreas Arnez  <arnez@linux.vnet.ibm.com>
7557
7558         * s390-linux-tdep.c (s390_skip_prologue): Skip the prologue using
7559         SAL, if possible.
7560
7561 2015-03-11  Andreas Arnez  <arnez@linux.vnet.ibm.com>
7562
7563         * s390-linux-nat.c (struct arch_lwp_info): New.
7564         (s390_fix_watch_points): Rename to...
7565         (s390_prepare_to_resume): ...this.  Skip the PER info update
7566         unless the watch points have changed.
7567         (s390_refresh_per_info, s390_new_thread): New functions.
7568         (s390_insert_watchpoint): Call s390_refresh_per_info instead of
7569         s390_fix_watch_points.
7570         (s390_remove_watchpoint): Likewise.
7571         (_initialize_s390_nat): Reflect renaming of s390_fix_watch_points.
7572         Register s390_prepare_to_resume.
7573
7574 2015-03-09  Pedro Alves  <palves@redhat.com>
7575
7576         Revert:
7577         2015-03-07  Pedro Alves  <palves@redhat.com>
7578         * common/gdb_socket.h: New file.
7579         * ser-tcp.c: Include gdb_socket.h.  Don't include netinet/in.h nor
7580         sys/socket.h.
7581         (net_open): Use union gdb_sockaddr_u.
7582
7583 2015-03-07  Pedro Alves  <palves@redhat.com>
7584
7585         * configure.ac (build_warnings): Move -Wmissing-prototypes
7586         -Wdeclaration-after-statement -Wmissing-parameter-type
7587         -Wold-style-declaration -Wold-style-definition to the C-specific
7588         set.
7589         * configure: Regenerate.
7590
7591 2015-03-07  Pedro Alves  <palves@redhat.com>
7592
7593         * common/gdb_socket.h: New file.
7594         * ser-tcp.c: Include gdb_socket.h.  Don't include netinet/in.h nor
7595         sys/socket.h.
7596         (net_open): Use union gdb_sockaddr_u.
7597
7598 2015-03-07  Pedro Alves  <palves@redhat.com>
7599
7600         * common/common-exceptions.c [!__cplusplus] (enum catcher_state)
7601         (exceptions_state_mc_action_iter)
7602         (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
7603         Don't define.
7604         [__cplusplus] (try_scope_depth): New global.
7605         [__cplusplus] (exception_try_scope_entry)
7606         (exception_try_scope_exit, gdb_exception_sliced_copy)
7607         (exception_rethrow): New functions.
7608         (throw_exception): In C++ mode, throw
7609         gdb_exception_RETURN_MASK_QUIT for RETURN_QUIT and
7610         gdb_exception_RETURN_MASK_ERROR for RETURN_ERROR.
7611         (throw_it): In C++ mode, use try_scope_depth.
7612         * common/common-exceptions.h [!__cplusplus]
7613         (exceptions_state_mc_action_iter)
7614         (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
7615         Don't declare.
7616         [__cplusplus] (exception_try_scope_entry)
7617         (exception_try_scope_exit, exception_rethrow): Declare.
7618         [__cplusplus] (struct exception_try_scope): New struct.
7619         [__cplusplus] (TRY, CATCH, END_CATCH): Reimplement on top of real
7620         C++ exceptions.
7621         (struct gdb_exception_RETURN_MASK_ALL)
7622         (struct gdb_exception_RETURN_MASK_ERROR)
7623         (struct gdb_exception_RETURN_MASK_QUIT): New types.
7624
7625 2015-03-07  Pedro Alves  <palves@redhat.com>
7626
7627         * main.c (handle_command_errors): Remove volatile qualifier from
7628         parameter.
7629
7630 2015-03-07  Pedro Alves  <palves@redhat.com>
7631
7632         * breakpoint.c (save_breakpoints): Adjust to avoid code between
7633         TRY and CATCH.
7634         * gdbtypes.c (safe_parse_type): Remove empty line.
7635         (types_deeply_equal):
7636         * guile/scm-frame.c (gdbscm_frame_name):
7637         * linux-thread-db.c (find_new_threads_once):
7638         * python/py-breakpoint.c (bppy_get_commands):
7639         * record-btrace.c (record_btrace_insert_breakpoint)
7640         (record_btrace_remove_breakpoint, record_btrace_start_replaying)
7641         (record_btrace_start_replaying): Adjust to avoid code between TRY
7642         and CATCH.
7643
7644 2015-03-07  Pedro Alves  <palves@redhat.com>
7645
7646         * common/common-exceptions.c (struct catcher) <exception>: No
7647         longer a pointer to volatile exception.  Now an exception value.
7648         <mask>: Delete field.
7649         (exceptions_state_mc_init): Remove all parameters.  Adjust.
7650         (exceptions_state_mc): No longer pop the catcher here.
7651         (exceptions_state_mc_catch): New function.
7652         (throw_exception): Adjust.
7653         * common/common-exceptions.h (exceptions_state_mc_init): Remove
7654         all parameters.
7655         (exceptions_state_mc_catch): Declare.
7656         (TRY_CATCH): Rename to ...
7657         (TRY): ... this.  Remove EXCEPTION and MASK parameters.
7658         (CATCH, END_CATCH): New.
7659         All callers adjusted.
7660
7661 2015-03-07  Tom Tromey  <tromey@redhat.com>
7662
7663         * top.c (quit_force): Inline and delete DO_TRY, DO_PRINT_EX.
7664
7665 2015-03-07  Pedro Alves  <palves@redhat.com>
7666
7667         * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
7668         (amd64_epilogue_frame_cache): Normal exception handling code.
7669         * break-catch-throw.c (check_status_exception_catchpoint)
7670         (re_set_exception_catchpoint): Ditto.
7671         * cli/cli-interp.c (safe_execute_command):
7672         * cli/cli-script.c (script_from_file): Ditto.
7673         * compile/compile-c-symbols.c (generate_c_for_for_one_variable):
7674         Ditto.
7675         * compile/compile-object-run.c (compile_object_run): Ditto.
7676         * cp-abi.c (baseclass_offset): Ditto.
7677         * cp-valprint.c (cp_print_value): Ditto.
7678         * exceptions.c (catch_exceptions_with_msg):
7679         * frame-unwind.c (frame_unwind_try_unwinder): Ditto.
7680         * frame.c (get_frame_address_in_block_if_available): Ditto.
7681         * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
7682         (i386_sigtramp_frame_cache): Ditto.
7683         * infcmd.c (post_create_inferior): Ditto.
7684         * linespec.c (parse_linespec, find_linespec_symbols):
7685         * p-valprint.c (pascal_object_print_value): Ditto.
7686         * parse.c (parse_expression_for_completion): Ditto.
7687         * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
7688         * remote.c (remote_get_noisy_reply): Ditto.
7689         * s390-linux-tdep.c (s390_frame_unwind_cache): Ditto.
7690         * solib-svr4.c (solib_svr4_r_map): Ditto.
7691
7692 2015-03-06  Gary Benson  <gbenson@redhat.com>
7693
7694         * common/common-utils.h (startswith): New inline function.
7695         All places where this logic was used updated to use the above.
7696
7697 2015-03-05  Pedro Alves  <palves@redhat.com>
7698
7699         PR gdb/18002
7700         * mem-break.c (default_memory_insert_breakpoint): Set shadow_len
7701         after reading the breakpoint's shadow memory.
7702
7703 2015-03-05  Mark Kettenis  <kettenis@gnu.org>
7704
7705         * hppabsd-nat.c: Remove file.
7706         * hppaobsd-nat.c: New file.
7707         * Makefile.in (ALLDEPFILES): Remove hppabsd-nat.c.  Add
7708         hppaobsd-nat.c.
7709         * config/pa/obsd.mh (NATDEPFILES): Replace hppabsd-nat.o with
7710         hppaobsd-nat.o.
7711
7712 2015-03-04  Pedro Alves  <palves@redhat.com>
7713
7714         * target.h (struct target_ops) <to_decr_pc_after_break>: Delete.
7715         (target_decr_pc_after_break): Delete declaration.
7716         * target.c (default_target_decr_pc_after_break)
7717         (target_decr_pc_after_break): Delete.
7718         * linux-nat.c (check_stopped_by_breakpoint, linux_nat_wait_1): Use
7719         gdbarch_decr_pc_after_break instead of target_decr_pc_after_break.
7720         * linux-thread-db.c (check_event): Likewise.
7721         * infrun.c (adjust_pc_after_break): Likewise.
7722         * darwin-nat.c (cancel_breakpoint): Likewise.
7723         * aix-thread.c (aix_thread_wait): Likewise.
7724         * target-delegates.c: Regenerate.
7725
7726 2015-03-04  Pedro Alves  <palves@redhat.com>
7727
7728         * linux-nat.c (save_sigtrap): Check for breakpoints before
7729         checking watchpoints.
7730         (status_callback) [USE_SIGTRAP_SIGINFO]: Don't check whether a
7731         breakpoint is inserted if relying on SIGTRAP's siginfo.si_code.
7732         (check_stopped_by_breakpoint) [USE_SIGTRAP_SIGINFO]: Decide whether
7733         a breakpoint triggered based on the SIGTRAP's siginfo.si_code.
7734         (linux_nat_stopped_by_sw_breakpoint)
7735         (linux_nat_supports_stopped_by_sw_breakpoint)
7736         (linux_nat_stopped_by_hw_breakpoint)
7737         (linux_nat_supports_stopped_by_hw_breakpoint): New functions.
7738         (linux_nat_wait_1): Don't re-increment the PC if relying on
7739         SIGTRAP's siginfo->si_code.
7740         (linux_nat_add_target): Install new target methods.
7741         * linux-thread-db.c (check_event): Don't account for breakpoint PC
7742         offset if the target already adjusted the PC.
7743         * nat/linux-ptrace.h (USE_SIGTRAP_SIGINFO): New.
7744         (GDB_ARCH_TRAP_BRKPT): New.
7745         (TRAP_HWBKPT): Define if not already defined.
7746
7747 2015-03-04  Pedro Alves  <palves@redhat.com>
7748
7749         * NEWS: Mention the new "swbreak" and "hwbreak" stop reasons.
7750         * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p>:
7751         Delete field.
7752         <stop_reason>: New field.
7753         (PACKET_swbreak_feature, PACKET_hwbreak_feature): New enum values.
7754         (packet_set_cmd_state): New function.
7755         (remote_protocol_features): Register the "swbreak" and "hwbreak"
7756         features.
7757         (remote_query_supported): If not disabled with the corresponding
7758         "set remote foo-packet" command, report support for the swbreak
7759         and hwbreak features.
7760         (struct stop_reply) <remote_stopped_by_watchpoint_p>: Delete
7761         field.
7762         <stop_reason>: New field.
7763         (remote_parse_stop_reply): Handle "swbreak" and "hwbreak".
7764         (remote_wait_as): Adjust.
7765         (remote_stopped_by_sw_breakpoint)
7766         (remote_supports_stopped_by_sw_breakpoint)
7767         (remote_stopped_by_hw_breakpoint)
7768         (remote_supports_stopped_by_hw_breakpoint): New functions.
7769         (remote_stopped_by_watchpoint): New function.
7770         (init_remote_ops): Install them.
7771         (_initialize_remote): Register new "set/show remote
7772         swbreak-feature-packet" and "set/show remote
7773         swbreak-feature-packet" commands.
7774
7775 2015-03-04  Pedro Alves  <palves@redhat.com>
7776
7777         * btrace.h: Include target/waitstatus.h.
7778         (struct btrace_thread_info) <stop_reason>: New field.
7779         * record-btrace.c (record_btrace_step_thread): Use
7780         record_check_stopped_by_breakpoint instead of breakpoint_here_p.
7781         (record_btrace_decr_pc_after_break): Delete.
7782         (record_btrace_stopped_by_sw_breakpoint)
7783         (record_btrace_supports_stopped_by_sw_breakpoint)
7784         (record_btrace_stopped_by_hw_breakpoint)
7785         (record_btrace_supports_stopped_by_hw_breakpoint): New functions.
7786         (init_record_btrace_ops): Install them.
7787         * record-full.c (record_full_hw_watchpoint): Delete and replace
7788         with ...
7789         (record_full_stop_reason): ... this throughout.
7790         (record_full_exec_insn): Adjust.
7791         (record_full_wait_1): Adjust.  No longer re-increment the PC.
7792         (record_full_wait_1): Adjust.  Use
7793         record_check_stopped_by_breakpoint instead of breakpoint_here_p.
7794         (record_full_stopped_by_watchpoint): Adjust.
7795         (record_full_stopped_by_sw_breakpoint)
7796         (record_full_supports_stopped_by_sw_breakpoint)
7797         (record_full_supports_stopped_by_sw_breakpoint)
7798         (record_full_stopped_by_hw_breakpoint)
7799         (record_full_supports_stopped_by_hw_breakpoint): New functions.
7800         (init_record_full_ops, init_record_full_core_ops): Install them.
7801         * record.c (record_check_stopped_by_breakpoint): New function.
7802         * record.h: Include target/waitstatus.h.
7803         (record_check_stopped_by_breakpoint): New declaration.
7804
7805 2015-03-04  Pedro Alves  <palves@redhat.com>
7806
7807         enum lwp_stop_reason -> enum target_stop_reason
7808         * linux-nat.c (linux_resume_one_lwp, check_stopped_by_watchpoint)
7809         (linux_nat_stopped_by_watchpoint, status_callback)
7810         (linux_nat_wait_1): Adjust.
7811         * linux-nat.h (enum lwp_stop_reason): Delete.
7812         (struct lwp_info) <stop_reason>: Now an enum target_stop_reason.
7813         * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
7814         * target/waitstatus.h (enum target_stop_reason): New.
7815
7816 2015-03-04  Pedro Alves  <palves@redhat.com>
7817
7818         * breakpoint.c (need_moribund_for_location_type): New function.
7819         (bpstat_stop_status): Don't skipping checking moribund locations
7820         of breakpoint types which the target tell caused a stop.
7821         (program_breakpoint_here_p): New function, factored out from ...
7822         (bp_loc_is_permanent): ... this.
7823         (update_global_location_list): Don't create a moribund location if
7824         the target supports reporting stops of the type of the removed
7825         breakpoint.
7826         * breakpoint.h (program_breakpoint_here_p): New declaration.
7827         * infrun.c (adjust_pc_after_break): Return early if the target has
7828         already adjusted the PC.  Add comments.
7829         (handle_signal_stop): If nothing explains a signal, and the target
7830         tells us the stop was caused by a software breakpoint, check if
7831         there's a breakpoint instruction in the memory.  If so, adjust the
7832         PC before presenting the stop to the user.  Otherwise, ignore the
7833         trap.  If nothing explains a signal, and the target tells us the
7834         stop was caused by a hardware breakpoint, ignore the trap.
7835         * target.h (struct target_ops) <to_stopped_by_sw_breakpoint,
7836         to_supports_stopped_by_sw_breakpoint, to_stopped_by_hw_breakpoint,
7837         to_supports_stopped_by_hw_breakpoint>: New fields.
7838         (target_stopped_by_sw_breakpoint)
7839         (target_supports_stopped_by_sw_breakpoint)
7840         (target_stopped_by_hw_breakpoint)
7841         (target_supports_stopped_by_hw_breakpoint): Define.
7842         * target-delegates.c: Regenerate.
7843
7844 2015-03-04  Pedro Alves  <palves@redhat.com>
7845
7846         * infrun.c (follow_fork_inferior): Use the whole of the
7847         inferior_ptid and pending_follow.related_pid ptids instead of
7848         building ptids from the process components.  Adjust verbose output
7849         to use target_pid_to_str.
7850         * linux-nat.c (linux_child_follow_fork): Use the whole of the
7851         inferior_ptid and pending_follow.related_pid ptids instead of
7852         building ptids from the process components.
7853
7854 2015-03-04  Mark Kettenis  <kettenis@gnu.org>
7855
7856         * inf-ptrace.c [PT_GET_PROCESS_STATE]
7857         (inf_ptrace_insert_fork_catchpoint): New function.
7858         (inf_ptrace_remove_fork_catchpoint): New function.
7859         (inf_ptrace_target) [PT_GET_PROCESS_STATE]: Install them.
7860
7861 2015-03-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
7862
7863         * s390-linux-tdep.c (s390_register_name): Return empty string
7864         instead of NULL for registers that shouldn't be visible.
7865
7866 2015-03-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
7867
7868         * s390-linux-tdep.c (s390_gdbarch_init): Use the correct syscall
7869         XML file for 64-bit targets.
7870
7871 2015-03-03  Simon Marchi  <simon.marchi@ericsson.com>
7872
7873         * target.h (find_default_create_inferior): Remove declaration.
7874         (find_default_attach): Likewise.
7875
7876 2015-03-03  Pedro Alves  <palves@redhat.com>
7877
7878         * inf-ptrace.c (inf_ptrace_resume): Remove spurious whitespace.
7879         Use ptid_get_pid to get the overall process id when resuming all
7880         threads.
7881
7882 2015-03-03  Pedro Alves  <palves@redhat.com>
7883
7884         * i386-linux-nat.c (i386_linux_resume): Get the ptrace PID out of
7885         the lwp field of ptid.  Pass the full ptid to get_thread_regcache.
7886         * inf-ptrace.c (get_ptrace_pid): New function.
7887         (inf_ptrace_resume): Use it.
7888         * linux-nat.c (linux_resume_one_lwp): Pass the LWP's ptid ummodified
7889         to the lower layer.
7890
7891 2015-03-03  Markus Metzger  <markus.t.metzger@intel.com>
7892
7893         * nat/linux-btrace.c: Include sys/utsname.h.
7894         (linux_determine_kernel_ptr_bits): New.
7895         (linux_enable_bts): Call linux_determine_kernel_ptr_bits.
7896         * x86-linux-nat.c (x86_linux_enable_btrace): Do not overwrite non-zero
7897         ptr_bits.
7898
7899 2015-03-03  Markus Metzger  <markus.t.metzger@intel.com>
7900
7901         * btrace.c (ftrace_update_function): Treat return as tailcall for
7902         "_dl_runtime_resolve".
7903
7904 2015-03-03  Markus Metzger  <markus.t.metzger@intel.com>
7905
7906         * btrace.h (btrace_function) <lbegin, lend>: Remove.
7907         * btrace.c (ftrace_debug): Do not print the line range.
7908         (ftrace_skip_file, ftrace_update_lines): Remove.
7909         (ftrace_new_function): Remove lbegin and lend initialization.
7910         (btrace_compute_ftrace_bts): Remove call to ftrace_update_lines.
7911         * record-btrace.c (btrace_compute_src_line_range): New.
7912         (btrace_call_history_src_line): Call btrace_compute_src_line_range.
7913
7914 2015-03-02  Pedro Alves  <palves@redhat.com>
7915
7916         * infrun.c (follow_exec): Delete all threads of the process except
7917         the event thread.  Extended comments.
7918
7919 2015-03-02  Joel Brobecker  <brobecker@adacore.com>
7920
7921         * contrib/ari/gdb_ari.sh: Reinstate checks for "true" and "false".
7922
7923 2015-03-02  Joel Brobecker  <brobecker@adacore.com>
7924
7925         * utils.h: Remove <stdbool.h> #include.
7926         (producer_is_gcc): Change return type to "int".
7927         * utils.c (producer_is_gcc): Change return type to int.
7928         Return 1 instead of true, and 0 instead of false.
7929         Adjust function documentation accordingly.
7930
7931 2015-03-02  Andreas Arnez  <arnez@linux.vnet.ibm.com>
7932
7933         * s390-linux-nat.c (have_regset_vxrs): New static variable.
7934         (s390_linux_fetch_inferior_registers): Handle vector registers, if
7935         present.
7936         (s390_linux_store_inferior_registers): Likewise.
7937         (s390_get_hwcap): Remove function.  Embed its logic...
7938         (s390_read_description): ...here.  Yield a target description with
7939         vector registers if applicable.
7940         * s390-linux-tdep.c: Include "features/s390-vx-linux64.c",
7941         "features/s390-tevx-linux64.c", "features/s390x-vx-linux64.c", and
7942         "features/s390x-tevx-linux64.c".
7943         (struct gdbarch_tdep) <v0_full_regnum>: New field.
7944         (s390_dwarf_regmap): Add vector registers.  Remove bogus entries
7945         for "GNU/Linux-specific registers".
7946         (s390_dwarf_reg_r0l): New enum value.
7947         (s390_dwarf_reg_to_regnum): Support vector registers.
7948         (s390_adjust_frame_regnum): Adjust pseudo DWARF register numbers
7949         of GPR lower halves.
7950         (regnum_is_vxr_full): New function.
7951         (s390_register_name): New function.
7952         (s390_pseudo_register_name): Handle v0-v15, which are composed of
7953         f0-f15 and v0l-v15l.
7954         (s390_pseudo_register_type): Likewise.
7955         (s390_pseudo_register_read): Likewise.
7956         (s390_pseudo_register_write): Likewise.
7957         (s390_value_from_register): Account for the fact that values are
7958         placed left-justified in vector registers.
7959         (s390_pseudo_register_reggroup_p): Add pseudo registers v0-v15 to
7960         the vector reggroup and omit them from the general reggroup.
7961         (s390_regmap_vxrs_low, s390_regmap_vxrs_high): New register maps.
7962         (s390_vxrs_low_regset, s390_vxrs_high_regset): New regsets.
7963         (s390_iterate_over_regset_sections): Add iterations for the two
7964         new vector regsets.
7965         (s390_core_read_description): Yield a target description with
7966         vector registers if applicable.
7967         (s390_gdbarch_init): Handle target descriptions with vector
7968         registers.  Add "register_name" gdbarch method.
7969         (_initialize_s390_tdep): Call new tdesc initialization functions.
7970         * s390-linux-tdep.h (HWCAP_S390_VX): New macro.
7971         (S390_V0_LOWER_REGNUM, S390_V1_LOWER_REGNUM, S390_V2_LOWER_REGNUM)
7972         (S390_V3_LOWER_REGNUM, S390_V4_LOWER_REGNUM, S390_V5_LOWER_REGNUM)
7973         (S390_V6_LOWER_REGNUM, S390_V7_LOWER_REGNUM, S390_V8_LOWER_REGNUM)
7974         (S390_V9_LOWER_REGNUM, S390_V10_LOWER_REGNUM)
7975         (S390_V11_LOWER_REGNUM, S390_V12_LOWER_REGNUM)
7976         (S390_V13_LOWER_REGNUM, S390_V14_LOWER_REGNUM)
7977         (S390_V15_LOWER_REGNUM, S390_V16_REGNUM, S390_V17_REGNUM)
7978         (S390_V18_REGNUM, S390_V19_REGNUM, S390_V20_REGNUM)
7979         (S390_V21_REGNUM, S390_V22_REGNUM, S390_V23_REGNUM)
7980         (S390_V24_REGNUM, S390_V25_REGNUM, S390_V26_REGNUM)
7981         (S390_V27_REGNUM, S390_V28_REGNUM, S390_V29_REGNUM)
7982         (S390_V30_REGNUM, S390_V31_REGNUM): New macros.
7983         (S390_NUM_REGS): Adjust value.
7984         (s390_vxrs_low_regset, s390_vxrs_high_regset): Declare.
7985         (tdesc_s390_vx_linux64, tdesc_s390_tevx_linux64)
7986         (tdesc_s390x_vx_linux64, tdesc_s390x_tevx_linux64): Likewise.
7987         * NEWS: Announce S/390 vector register support.
7988
7989 2015-03-02  Andreas Arnez  <arnez@linux.vnet.ibm.com>
7990
7991         * features/s390-tevx-linux64.xml: New file.
7992         * features/s390-vx-linux64.xml: New file.
7993         * features/s390-vx.xml: New file.
7994         * features/s390x-tevx-linux64.xml: New file.
7995         * features/s390x-vx-linux64.xml: New file.
7996         * features/Makefile (WHICH): Add s390-vx-linux64,
7997         s390x-vx-linux64, s390-tevx-linux64, and s390x-tevx-linux64.
7998         (s390-vx-linux64-expedite, s390-tevx-linux64-expedite)
7999         (s390x-vx-linux64-expedite, s390x-tevx-linux64-expedite): New
8000         macros.
8001         * features/s390-tevx-linux64.c: New generated file.
8002         * features/s390-vx-linux64.c: Likewise.
8003         * features/s390x-tevx-linux64.c: Likewise.
8004         * features/s390x-vx-linux64.c: Likewise.
8005         * regformats/s390-tevx-linux64.dat: Likewise.
8006         * regformats/s390-vx-linux64.dat: Likewise.
8007         * regformats/s390x-tevx-linux64.dat: Likewise.
8008         * regformats/s390x-vx-linux64.dat: Likewise.
8009
8010 2015-02-28  Doug Evans  <xdje42@gmail.com>
8011
8012         * symtab.h (struct symtab) <next>: Fix comment.
8013
8014 2015-02-27  Simon Marchi  <simon.marchi@ericsson.com>
8015
8016         * python/python.c (python_GdbModuleDef): Rename GdbMethods to
8017         python_GdbMethods.
8018
8019 2015-02-27  Pedro Alves  <palves@redhat.com>
8020
8021         * dtrace-probe.c (dtrace_probe_ops): Make extern.
8022
8023 2015-02-27  Pedro Alves  <palves@redhat.com>
8024
8025         * common/common-exceptions.h (exception_none): Declare.
8026         * common/common-exceptions.c (exception_none): Moved from
8027         exceptions.c.
8028         (exceptions_state_mc_init): Use exception_none.
8029         * exceptions.c (exception_none): Move to
8030         common/common-exceptions.c.
8031         * exceptions.h (exception_none): Move to
8032         common/common-exceptions.h.
8033
8034 2015-02-27  Pedro Alves  <palves@redhat.com>
8035
8036         * main.c (catch_command_errors, catch_command_errors_const):
8037         Remove 'mask' argument.  Adjust.
8038         (captured_main): Adjust callers.
8039
8040 2015-02-27  Pedro Alves  <palves@redhat.com>
8041
8042         * python/python-internal.h: Include "extension-priv.h".
8043
8044 2015-02-27  Pedro Alves  <palves@redhat.com>
8045
8046         * breakpoint.h (enum print_stop_action): Move further up in the
8047         file.
8048
8049 2015-02-27  Pedro Alves  <palves@redhat.com>
8050
8051         * gdbarch.sh: Include regcache.h.
8052         * gdbarch.h: Regenerate.
8053
8054 2015-02-27  Pedro Alves  <palves@redhat.com>
8055
8056         * arm-tdep.c (decode_insn) <arm_handle_insn, thumb_handle_insn>:
8057         Remove duplicate const.
8058         * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Remove
8059         duplicate const.
8060
8061 2015-02-27  Pedro Alves  <palves@redhat.com>
8062
8063         * cp-valprint.c (vtbl_ptr_name): Use EXPORTED_CONST.
8064         * guile/guile.c (extension_language_guile): Use EXPORTED_CONST.
8065         * features/feature_to_c.sh: Tag the generated xml_builtin array
8066         with extern const in C++ mode.
8067
8068 2015-02-27  Tom Tromey  <tromey@redhat.com>
8069
8070         * minidebug.c (struct lzma_stream): Rename to ...
8071         (struct gdb_lzma_stream): ... this.
8072         (lzma_open, lzma_pread, lzma_close, lzma_stat): Adjust.
8073
8074 2015-02-27  Pedro Alves  <palves@redhat.com>
8075
8076         * mi/mi-cmd-stack.c (mi_apply_ext_lang_frame_filter): New
8077         function.
8078         (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
8079         (mi_cmd_stack_list_variables): Use it.
8080
8081 2015-02-27  Pedro Alves  <palves@redhat.com>
8082
8083         * x86-linux-nat.c (u_debugreg_offset): New function.
8084         (x86_linux_dr_get, x86_linux_dr_set): Use it.
8085
8086 2015-02-27  Pedro Alves  <palves@redhat.com>
8087
8088         * nat/x86-dregs.h (enum target_hw_bp_type): Remove forward
8089         declaration.
8090         Include break-common.h.
8091
8092 2015-02-27  Tom Tromey  <tromey@redhat.com>
8093             Pedro Alves <palves@redhat.com>
8094
8095         * arm-tdep.c (set_fp_model_sfunc, arm_set_abi): Use 'int' for
8096         local used to iterate over enums.
8097         * completer.c (signal_completer): Likewise.
8098         * i386-tdep.c (i386_stap_parse_special_token): Likewise.
8099         * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
8100         * tui/tui-data.c (tui_next_win, tui_prev_win): Likewise.
8101         * tui/tui-layout.c (next_layout, prev_layout): Likewise.
8102         * tui/tui-win.c (tui_refresh_all_win, tui_rehighlight_all)
8103         (tui_resize_all, tui_set_focus_command, tui_all_windows_info): Likewise.
8104         * tui-wingeneral.c (tui_refresh_all):  Likewise.
8105
8106 2015-02-27  Pedro Alves  <palves@redhat.com>
8107
8108         * target.h: Include "infrun.h".
8109
8110 2015-02-27  Pedro Alves  <palves@redhat.com>
8111
8112         * gdb_proc_service.h: Wrap with EXTERN_C_PUSH/EXTERN_C_POP.
8113
8114 2015-02-27  Pedro Alves  <palves@redhat.com>
8115
8116         * common/agent.h (IPA_SYM_EXPORTED_NAME): New.
8117         (IPA_SYM): Use it.
8118         * common/common-defs.h (EXTERN_C_PUSH, EXTERN_C_POP): New macros.
8119
8120 2015-02-27  Pedro Alves  <palves@redhat.com>
8121
8122         * cli-out.c (_rl_erase_entire_line): Move declaration out of
8123         cli_mld_erase_entire_line, and make it extern "C".
8124         * common/common-defs.h (EXTERN_C): New.
8125         * completer.c (_rl_completion_prefix_display_length)
8126         (_rl_print_completions_horizontally, QSFUNC): Move declarations
8127         out of gdb_display_match_list_1.
8128         (_rl_qsort_string_compare): Move declaration out of
8129         gdb_display_match_list_1, and make it extern "C".
8130         * defs.h (re_comp): Use EXTERN_C.
8131         * maint.c (_mcleanup): Move declaration out of mcleanup_wrapper,
8132         and make it extern "C".
8133         (monstartup): Move declaration out of maintenance_set_profile_cmd,
8134         and make it extern "C".
8135         (main): Move declaration out of maintenance_set_profile_cmd.
8136         * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string): Use
8137         EXTERN_C.
8138
8139 2015-02-27  Pedro Alves  <palves@redhat.com>
8140
8141         * python/python.c (GdbMethods): Rename to ...
8142         (python_GdbMethods): ... this and make extern.
8143         (GdbModuleDef): Rename to ...
8144         (python_GdbModuleDef): ... this and make extern.
8145
8146 2015-02-27  Pedro Alves  <palves@redhat.com>
8147
8148         * record-btrace.c (set_record_btrace_cmdlist)
8149         (show_record_btrace_cmdlist): Remove redefinitions.
8150
8151 2015-02-27  Tom Tromey  <tromey@redhat.com>
8152             Pedro Alves  <palves@redhat.com>
8153
8154         * dwarf2-frame.c (enum cfa_how_kind, struct
8155         dwarf2_frame_state_reg_info): Move out of struct
8156         dwarf2_frame_state.
8157         * dwarf2read.c (struct tu_stats): Move out of struct
8158         dwarf2_per_objfile.
8159         (struct file_entry): Move out of struct line_header.
8160         (struct nextfield, struct nextfnfield, struct fnfieldlist, struct
8161         typedef_field_list): Move out of struct field_info.
8162         * gdbtypes.h (enum dynamic_prop_kind, union dynamic_prop_data):
8163         Move out of struct dynamic_prop.
8164         (union type_owner, union field_location, struct field, struct
8165         range_bounds, union type_specific): Move out of struct main_type.
8166         (struct fn_fieldlist, struct fn_field, struct typedef_field)
8167         (VOFFSET_STATIC): Move out of struct cplus_struct_type.
8168         (struct call_site_target, union call_site_parameter_u, struct
8169         call_site_parameter): Move out of struct call_site.
8170         * m32c-tdep.c (enum m32c_prologue_kind): Move out of struct
8171         m32c_prologue.
8172         (enum srcdest_kind): Move out of struct srcdest.
8173         * main.c (enum cmdarg_kind): Move out of struct cmdarg.
8174         * prologue-value.h (enum prologue_value_kind): Move out of struct
8175         prologue_value.
8176         * s390-linux-tdep.c (enum s390_abi_kind): Move out of struct
8177         gdbarch_tdep.
8178         * stabsread.c (struct nextfield, struct next_fnfieldlist): Move
8179         out of struct field_info.
8180         * symfile.h (struct other_sections): Move out of struct
8181         section_addr_info.
8182         * symtab.c (struct symbol_cache_slot): Move out struct
8183         block_symbol_cache.
8184         * target-descriptions.c (enum tdesc_type_kind): Move out of
8185         typedef struct tdesc_type.
8186         * tui/tui-data.h (enum tui_line_or_address_kind): Move out of
8187         struct tui_line_or_address.
8188         * value.c (enum internalvar_kind, union internalvar_data): Move
8189         out of struct internalvar.
8190         * xtensa-tdep.h (struct ctype_cache): Move out of struct
8191         gdbarch_tdep.
8192
8193 2015-02-27  Tom Tromey  <tromey@redhat.com>
8194             Pedro Alves  <palves@redhat.com>
8195
8196         Rename symbols whose names are reserved C++ keywords throughout.
8197
8198 2015-02-27  Pedro Alves  <palves@redhat.com>
8199
8200         * Makefile.in (COMPILER): New, get it from autoconf.
8201         (COMPILE.pre, CC_LD): Use COMPILER.
8202         (CXX): Get from autoconf instead.
8203         (CXX_FOR_TARGET): Default to g++ instead of gcc.
8204         * acinclude.m4: Include build-with-cxx.m4.
8205         * build-with-cxx.m4: New file.
8206         * configure.ac: Call AC_PROG_CXX and GDB_AC_BUILD_WITH_CXX.
8207         Disable -Werror by default if building in C++ mode.
8208         (build_warnings): Add -Wno-sign-compare, -Wno-write-strings and
8209         -Wno-narrowing in C++ mode.  Only enable -Wpointer-sign in C mode.
8210         Run supported-warning-flags tests with the C++ compiler.
8211         Save/restore CXXFLAGS too.
8212         * configure: Regenerate.
8213
8214 2015-02-27  Pedro Alves  <palves@redhat.com>
8215
8216         * libiberty.m4: New file.
8217         * acinclude.m4: Include libiberty.m4.
8218         * configure.ac: Call libiberty_INIT.
8219         * config.in, configure: Regenerate.
8220
8221 2015-02-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
8222
8223         * s390-linux-tdep.c (s390_gcc_target_options): Not just handle
8224         31-bit targets, but 64-bit targets as well.
8225         (s390_gnu_triplet_regexp): New function.
8226         (s390_gdbarch_init): Set the gcc_target_options gdbarch method for
8227         64-bit targets as well.  Set the gnu_triplet_regexp gdbarch
8228         method.
8229
8230 2015-02-27  Jon TURNEY  <jon.turney@dronecode.org.uk>  (tiny patch)
8231
8232         * windows-nat.c (CONTEXT_DEBUGGER): Remove.
8233         (CONTEXT_DEBUGGER_DR): Add CONTEXT_SEGMENTS.  Incorporate flags
8234         from CONTEXT_DEBUGGER.
8235
8236 2015-02-26  Doug Evans  <dje@google.com>
8237
8238         * gdbtypes.c (internal_type_vptr_fieldno): Add missing call to
8239         CHECK_TYPEDEF.
8240         (set_type_vptr_fieldno): Ditto.
8241         (internal_type_vptr_basetype, set_type_vptr_basetype): Ditto.
8242         * gnu-v3-abi.c (gnuv3_dynamic_class): Ditto.
8243
8244 2015-02-26  Pedro Alves  <palves@redhat.com>
8245
8246         * auto-load.h (file_is_auto_load_safe): Add ATTRIBUTE_PRINTF.
8247         * complaints.c (vcomplaint): Pass argument FMT directly to
8248         printf-like functions instead of complaint->fmt.
8249         * ctf.c (ctf_save_write_metadata): Add ATTRIBUTE_PRINTF.
8250         * darwin-nat.c (inferior_debug): Add ATTRIBUTE_PRINTF.
8251         * compile/compile-loc2c.c (pushf, unary, binary): Add
8252         ATTRIBUTE_PRINTF.
8253         (do_compile_dwarf_expr_to_c): Pass string literal as format string
8254         to pushf.
8255         (BINARY): Pass string literal as format string to 'binary'.
8256         * compile/compile-object-load.c (link_callbacks_einfo): Add
8257         ATTRIBUTE_PRINTF.
8258         * guile/guile-internal.h (gdbscm_printf): Add ATTRIBUTE_PRINTF.
8259
8260 2015-02-26  Pedro Alves  <palves@redhat.com>
8261
8262         * windows-termcap.c: Rename to ...
8263         * stub-termcap.c: ... this.  Adjust header line.
8264         * Makefile.in (SFILES): Refer to stub-termcap.c instead of
8265         windows-termcap.c.
8266         * configure: Regenerate.
8267         * configure.ac: Refer to stub-termcap.o instead of
8268         windows-termcap.o.
8269         * gdb_curses.h: Mention stub-termcap.c instead of
8270         windows-termcap.c.
8271
8272 2015-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
8273
8274         * compile/compile-c-symbols.c (convert_one_symbol, convert_symbol_bmsym)
8275         (gcc_symbol_address): Call gnu_ifunc_resolve_addr.
8276
8277 2015-02-26  Antoine Tremblay  <antoine.tremblay@ericsson.com>
8278
8279         * gdb/infcmd.c (print_return_value): use type_to_string to print type.
8280
8281 2015-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
8282
8283         * elfread.c (elf_read_minimal_symbols): Use bfd_alloc for
8284         bfd_canonicalize_symtab.
8285
8286 2015-02-25  John Baldwin  <jhb@FreeBSD.org>
8287
8288         * amd64fbsd-nat.c: Include sys/user.h.
8289         (_initialize_amd64fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
8290         instead of KERN_PS_STRINGS to locate the signal trampoline.
8291         * i386fbsd-nat.c: Include sys/user.h.
8292         (_initialize_i386fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
8293         instead of KERN_PS_STRINGS to locate the signal trampoline.
8294         * amd64fbsd-tdep.c (amd64fbsd_sigtramp_code): New.
8295         (amd64fbsd_sigtramp_p): New.
8296         (amd64fbsd_sigtramp_start_addr, amd64fbsd_sigtramp_end_addr): No
8297         longer set default values.
8298         (amd64fbsd_init_abi): Set "sigtramp_p" to "amd64fbsd_sigtramp_p".
8299         * i386fbsd-tdep.c (i386fbsd_sigtramp_start)
8300         (i386fbsd_sigtramp_middle, i386fbsd_sigtramp_end)
8301         (i386fbsd_freebsd4_sigtramp_start)
8302         (i386fbsd_freebsd4_sigtramp_middle)
8303         (i386fbsd_freebsd4_sigtramp_end, i386fbsd_osigtramp_start)
8304         (i386fbsd_osigtramp_middle, i386fbsd_osigtramp_end): New.
8305         (i386fbsd_sigtramp_p): New.
8306         (i386fbsd_sigtramp_start_addr, i386fbsd_sigtramp_end_addr): No
8307         longer set default values.
8308         (i386fbsd_init_abi): Set "sigtramp_p" to "i386fbsd_sigtramp_p".
8309
8310 2015-02-25  John Baldwin  <jhb@freebsd.org>
8311
8312         * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use
8313         get_frame_register instead of frame_unwind_register_unsigned.
8314
8315 2015-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
8316
8317         PR build/18033
8318         * compile/compile-c-support.c (c_compute_program): Change // comment.
8319         * compile/compile-object-load.c (setup_sections): Change // comment.
8320
8321 2015-02-26  Joel Brobecker  <brobecker@adacore.com>
8322
8323         PR build/18033:
8324         * iq2000-tdep.c (iq2000_frame_cache): Delete C++-style comment.
8325
8326 2015-02-23  Pedro Alves  <palves@redhat.com>
8327
8328         * remote.c (skip_to_semicolon): New function.
8329         (remote_parse_stop_reply) <T stop reply>: Use it.  Don't
8330         special case the stop reasons that look like hex numbers
8331         upfront.  Instead handle real register numbers after matching
8332         all the known stop reasons.
8333
8334 2015-02-21  Doug Evans  <dje@google.com>
8335
8336         PR c++/17976, symtab/17821
8337         * cp-namespace.c (cp_search_static_and_baseclasses): New parameter
8338         is_in_anonymous.  All callers updated.
8339         (find_symbol_in_baseclass): Ditto.
8340         (cp_lookup_nested_symbol_1): Ditto.  Don't search all static blocks
8341         for symbols in an anonymous namespace.
8342         * dwarf2read.c (namespace_name): Don't call dwarf2_name, fetch
8343         DW_AT_name directly.
8344         (dwarf2_name): Convert missing namespace name to
8345         CP_ANONYMOUS_NAMESPACE_STR.
8346
8347 2015-02-20  Pedro Alves  <palves@redhat.com>
8348
8349         * linux-nat.c (linux_handle_extended_wait): Call
8350         thread_db_notice_clone whenever a new clone LWP is detected.
8351         (linux_stop_and_wait_all_lwps, linux_unstop_all_lwps): New
8352         functions.
8353         * linux-nat.h (thread_db_attach_lwp): Delete declaration.
8354         (thread_db_notice_clone, linux_stop_and_wait_all_lwps)
8355         (linux_unstop_all_lwps): Declare.
8356         * linux-thread-db.c (struct thread_get_info_inout): Delete.
8357         (thread_get_info_callback): Delete.
8358         (thread_from_lwp): Use td_thr_get_info and record_thread.
8359         (thread_db_attach_lwp): Delete.
8360         (thread_db_notice_clone): New function.
8361         (try_thread_db_load_1): If /proc is mounted and shows the
8362         process'es task list, walk over all LWPs and call thread_from_lwp
8363         instead of relying on td_ta_thr_iter.
8364         (attach_thread): Don't call check_thread_signals here.  Split the
8365         tail part of the function (which adds the thread to the core GDB
8366         thread list) to ...
8367         (record_thread): ... this function.  Call check_thread_signals
8368         here.
8369         (thread_db_wait): Don't call thread_db_find_new_threads_1.  Always
8370         call thread_from_lwp.
8371         (thread_db_update_thread_list): Rename to ...
8372         (thread_db_update_thread_list_org): ... this.
8373         (thread_db_update_thread_list): New function.
8374         (thread_db_find_thread_from_tid): Delete.
8375         (thread_db_get_ada_task_ptid): Simplify.
8376         * nat/linux-procfs.c: Include <sys/stat.h>.
8377         (linux_proc_task_list_dir_exists): New function.
8378         * nat/linux-procfs.h (linux_proc_task_list_dir_exists): Declare.
8379
8380 2015-02-20  Pedro Alves  <palves@redhat.com>
8381
8382         * linux-nat.c (lin_lwp_attach_lwp): No longer special case the
8383         main LWP.  Handle the case of waitpid returning 0 if we're already
8384         attached to the LWP.  Don't set the LWP's last_resume_kind to
8385         resume_stop if we already knew about the LWP.
8386         (linux_nat_filter_event): Add debug logs.
8387
8388 2015-02-20  Pedro Alves  <palves@redhat.com>
8389
8390         * target.h (forward_target_decr_pc_after_break): Delete
8391         declaration.
8392
8393 2015-02-20  Pedro Alves  <palves@redhat.com>
8394
8395         PR threads/18006
8396         * linux-thread-db.c (thread_get_info_callback): Return early if
8397         the thread's lwp id is -1.
8398
8399 2015-02-20  Joel Brobecker  <brobecker@adacore.com>
8400
8401         GDB 7.9 released.
8402
8403 2015-02-19  Steve Ellcey  <sellcey@imgtec.com>
8404
8405         * dtrace-probe.c (dtrace_process_dof_probe): Initialize arg.expr.
8406         (dtrace_get_probes) Change type of variable 'dof'.
8407
8408 2015-02-19  Antoine Tremblay  <antoine.tremblay@ericsson.com>
8409
8410         PR breakpoints/16812
8411         * linux-nat.c (linux_nat_filter_event): Report SIGTRAP,SIGILL,SIGSEGV.
8412         * nat/linux-ptrace.c (linux_wstatus_maybe_breakpoint): Add.
8413         * nat/linux-ptrace.h: Add linux_wstatus_maybe_breakpoint.
8414
8415 2015-02-19  David Taylor  <dtaylor@emc.com>
8416
8417         * common/ax.def (setv): Fix consumed entry in setv DEFOP.
8418
8419 2015-02-18  Patrick Palka  <patrick@parcs.ath.cx>
8420
8421         * tui/tui-io.c (tui_handle_resize_during_io): Remove this
8422         function.
8423         (tui_putc): Don't call tui_handle_resize_during_io.
8424         (tui_getc): Likewise.
8425         (tui_mld_getc): Likewise.
8426         * tui/tui-win.c: Include event-loop.h and tui/tui-io.h.
8427         (tui_sigwinch_token): New static variable.
8428         (tui_initialize_win): Adjust documentation.  Set
8429         tui_sigwinch_token.
8430         (tui_async_resize_screen): New asynchronous callback.
8431         (tui_sigwinch_handler): Adjust documentation.  Asynchronously
8432         invoke tui_async_resize_screen.
8433
8434 2015-02-18  Jose E. Marchesi  <jose.marchesi@oracle.com>
8435
8436         * configure: Regenerated.
8437         * configure.ac: Use GDB_AC_TRANSFORM.
8438         * Makefile.in (aclocal_m4_deps): Added transform.m4.
8439         * acinclude.m4: sinclude transform.m4.
8440         * transform.m4: New file.
8441         (GDB_AC_TRANSFORM): New macro.
8442
8443 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
8444
8445         * NEWS: Announce the support for DTrace SDT probes.
8446
8447 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
8448
8449         * amd64-linux-tdep.c: Include "parser-defs.h" and "user-regs.h".
8450         (amd64_dtrace_parse_probe_argument): New function.
8451         (amd64_dtrace_probe_is_enabled): Likewise.
8452         (amd64_dtrace_enable_probe): Likewise.
8453         (amd64_dtrace_disable_probe): Likewise.
8454         (amd64_linux_init_abi): Register the
8455         `gdbarch_dtrace_probe_argument', `gdbarch_dtrace_enable_probe',
8456         `gdbarch_dtrace_disable_probe' and
8457         `gdbarch_dtrace_probe_is_enabled' hooks.
8458         (amd64_dtrace_disabled_probe_sequence_1): New constant.
8459         (amd64_dtrace_disabled_probe_sequence_2): Likewise.
8460         (amd64_dtrace_enable_probe_sequence): Likewise.
8461         (amd64_dtrace_disable_probe_sequence): Likewise.
8462
8463 2015-01-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
8464
8465         * breakpoint.c (BREAK_ARGS_HELP): Help string updated to mention
8466         the -probe-dtrace new vpossible value for PROBE_MODIFIER.
8467         * configure.ac (CONFIG_OBS): dtrace-probe.o added if BFD can
8468         handle ELF files.
8469         * Makefile.in (SFILES): dtrace-probe.c added.
8470         * configure: Regenerate.
8471         * dtrace-probe.c: New file.
8472         (SHT_SUNW_dof): New constant.
8473         (dtrace_probe_type): New enum.
8474         (dtrace_probe_arg): New struct.
8475         (dtrace_probe_arg_s): New typedef.
8476         (struct dtrace_probe_enabler): New struct.
8477         (dtrace_probe_enabler_s): New typedef.
8478         (dtrace_probe): New struct.
8479         (dtrace_probe_is_linespec): New function.
8480         (dtrace_dof_sect_type): New enum.
8481         (dtrace_dof_dofh_ident): Likewise.
8482         (dtrace_dof_encoding): Likewise.
8483         (DTRACE_DOF_ENCODE_LSB): Likewise.
8484         (DTRACE_DOF_ENCODE_MSB): Likewise.
8485         (dtrace_dof_hdr): New struct.
8486         (dtrace_dof_sect): Likewise.
8487         (dtrace_dof_provider): Likewise.
8488         (dtrace_dof_probe): Likewise.
8489         (DOF_UINT): New macro.
8490         (DTRACE_DOF_PTR): Likewise.
8491         (DTRACE_DOF_SECT): Likewise.
8492         (dtrace_process_dof_probe): New function.
8493         (dtrace_process_dof): Likewise.
8494         (dtrace_build_arg_exprs): Likewise.
8495         (dtrace_get_arg): Likewise.
8496         (dtrace_get_probes): Likewise.
8497         (dtrace_get_probe_argument_count): Likewise.
8498         (dtrace_can_evaluate_probe_arguments): Likewise.
8499         (dtrace_evaluate_probe_argument): Likewise.
8500         (dtrace_compile_to_ax): Likewise.
8501         (dtrace_probe_destroy): Likewise.
8502         (dtrace_gen_info_probes_table_header): Likewise.
8503         (dtrace_gen_info_probes_table_values): Likewise.
8504         (dtrace_probe_is_enabled): Likewise.
8505         (dtrace_probe_ops): New variable.
8506         (info_probes_dtrace_command): New function.
8507         (_initialize_dtrace_probe): Likewise.
8508         (dtrace_type_name): Likewise.
8509
8510 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
8511
8512         * gdbarch.sh (dtrace_parse_probe_argument): New.
8513         (dtrace_probe_is_enabled): Likewise.
8514         (dtrace_enable_probe): Likewise.
8515         (dtrace_disable_probe): Likewise.
8516         * gdbarch.c: Regenerate.
8517         * gdbarch.h: Regenerate.
8518
8519 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
8520
8521         * stap-probe.c (stap_probe_ops): Add NULLs in the static
8522         stap_probe_ops for `enable_probe' and `disable_probe'.
8523         * probe.c (enable_probes_command): New function.
8524         (disable_probes_command): Likewise.
8525         (_initialize_probe): Define the cli commands `enable probe' and
8526         `disable probe'.
8527         (parse_probe_linespec): New function.
8528         (info_probes_for_ops): Use parse_probe_linespec.
8529         * probe.h (probe_ops): New hooks `enable_probe' and
8530         `disable_probe'.
8531
8532 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
8533
8534         * probe.c (compute_probe_arg): Moved from stap-probe.c
8535         (compile_probe_arg): Likewise.
8536         (probe_funcs): Likewise.
8537         * stap-probe.c (compute_probe_arg): Moved to probe.c.
8538         (compile_probe_arg): Likewise.
8539         (probe_funcs): Likewise.
8540
8541 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
8542
8543         * probe.c (print_ui_out_not_applicables): New function.
8544         (exists_probe_with_pops): Likewise.
8545         (info_probes_for_ops): Do not include column headers for probe
8546         types for which no probe has been actually found on any object.
8547         Also invoke `print_ui_out_not_applicables' in order to match the
8548         column rows with the header when probes of several types are
8549         listed.
8550         Print the "Type" column.
8551         * probe.h (probe_ops): Added a new probe operation `type_name'.
8552         * stap-probe.c (stap_probe_ops): Add `stap_type_name'.
8553         (stap_type_name): New function.
8554
8555 2015-02-17  Patrick Palka  <patrick@parcs.ath.cx>
8556
8557         * tui/tui-io.c (tui_getc): Don't call key_is_command_char.
8558         (key_is_command_char): Delete.
8559
8560 2015-02-17  Pedro Alves  <palves@redhat.com>
8561
8562         * tui/tui.c (tui_enable): Resize windows before anything
8563         might show a window.
8564
8565 2015-02-17  Max Ostapenko  <m.ostapenko@partner.samsung.com>
8566
8567         PR gdb/17984
8568         * aarch64-linux-nat.c: Don't include features/aarch64.c anymore.
8569         (aarch64_linux_read_description): Remove initialize_tdesc_aarch64
8570         call.
8571         * aarch64-tdep.h (tdesc_aarch64): Declare.
8572
8573 2015-02-12  Mark Wielaard  <mjw@redhat.com>
8574
8575         * contrib/ari/gdb_ari.sh: Remove checks for "true" and "false".
8576
8577 2015-02-13  Doug Evans  <dje@google.com>
8578
8579         * cp-namespace.c (cp_basic_lookup_symbol): Rename parameter
8580         anonymous_namespace to is_in_anonymous for consistency with the rest
8581         of the file.
8582         (cp_lookup_bare_symbol): Fix typo in comment.
8583         (cp_search_static_and_baseclasses): Ditto.
8584         (search_symbol_list): Use vertical space in comment better.
8585         (reset_directive_searched): Ditto. Fix typo.
8586         (cp_lookup_nested_symbol_1): Clarify contents of NESTED_NAME parameter.
8587
8588 2015-02-13  Yao Qi  <yao.qi@arm.com>
8589
8590         * MAINTAINERS: Update my email address.
8591
8592 2015-02-12  Doug Evans  <dje@google.com>
8593
8594         * symtab.c (completion_list_add_name): Fix memory leak.
8595
8596 2015-02-12  Doug Evans  <dje@google.com>
8597
8598         * completer.c (complete_line): Remove incorrect comment.
8599
8600 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8601
8602         * python/py-framefilter.c (py_print_single_arg, enumerate_locals)
8603         (py_print_frame): Use RETURN_MASK_ERROR.
8604
8605 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8606
8607         * python/py-framefilter.c (py_print_frame): Mention RETURN_QUIT in
8608         function comment.  Wrap all function that can throw in cleanups.
8609         (gdbpy_apply_frame_filter): Wrap all function that can throw in
8610         cleanups.
8611
8612 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8613
8614         * python/py-framefilter.c (py_print_frame): Substitute goto error.
8615         Remove the error label.
8616
8617 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8618
8619         * python/py-framefilter.c (py_print_frame): Put conditional code paths
8620         with goto first, indent the former else codepath left.  Put variable
8621         'elided' to a new inner block.
8622
8623 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8624
8625         * python/py-framefilter.c (py_print_frame): Whitespacing fixes.
8626
8627 2015-02-11  Pedro Alves  <palves@redhat.com>
8628
8629         * xcoffread.c (within_function): Delete.
8630
8631 2015-02-11  Tom Tromey  <tromey@redhat.com>
8632             Pedro Alves <palves@redhat.com>
8633
8634         * breakpoint.c (base_breakpoint_ops): Delete.
8635         * dwarf2loc.c (dwarf_expr_ctx_funcs): Make extern.
8636         * elfread.c (elf_sym_fns_gdb_index, elf_sym_fns_lazy_psyms): Make extern.
8637         * guile/guile.c (guile_extension_script_ops, guile_extension_ops): Make extern.
8638         * ppcnbsd-tdep.c (ppcnbsd2_sigtramp): Make extern.
8639         * python/py-arch.c (arch_object_type): Make extern.
8640         * python/py-block.c (block_syms_iterator_object_type): Make extern.
8641         * python/py-bpevent.c (breakpoint_event_object_type): Make extern.
8642         * python/py-cmd.c (cmdpy_object_type): Make extern.
8643         * python/py-continueevent.c (continue_event_object_type)
8644         * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Remove 'qual'
8645         parameter.  Update all callers.
8646         * python/py-evtregistry.c (eventregistry_object_type): Make extern.
8647         * python/py-exitedevent.c (exited_event_object_type): Make extern.
8648         * python/py-finishbreakpoint.c (finish_breakpoint_object_type): Make extern.
8649         * python/py-function.c (fnpy_object_type): Make extern.
8650         * python/py-inferior.c (inferior_object_type, membuf_object_type): Make extern.
8651         * python/py-infevents.c (call_pre_event_object_type)
8652         (inferior_call_post_event_object_type).
8653         (memory_changed_event_object_type): Make extern.
8654         * python/py-infthread.c (thread_object_type): Make extern.
8655         * python/py-lazy-string.c (lazy_string_object_type): Make extern.
8656         * python/py-linetable.c (linetable_entry_object_type)
8657         (linetable_object_type, ltpy_iterator_object_type): Make extern.
8658         * python/py-newobjfileevent.c (new_objfile_event_object_type)
8659         (clear_objfiles_event_object_type): Make extern.
8660         * python/py-objfile.c (objfile_object_type): Make extern.
8661         * python/py-param.c (parmpy_object_type): Make extern.
8662         * python/py-progspace.c (pspace_object_type): Make extern.
8663         * python/py-signalevent.c (signal_event_object_type): Make extern.
8664         * python/py-symtab.c (symtab_object_type, sal_object_type): Make extern.
8665         * python/py-type.c (type_object_type, field_object_type)
8666         (type_iterator_object_type): Make extern.
8667         * python/python.c (python_extension_script_ops)
8668         (python_extension_ops): Make extern.
8669         * stap-probe.c (stap_probe_ops): Make extern.
8670
8671 2015-02-11  Pedro Alves  <pedro@codesourcery.com>
8672
8673         * infrun.c (adjust_pc_after_break): Don't adjust the PC just
8674         because the event thread is not the current thread.
8675
8676 2015-02-11  Doug Evans  <xdje42@gmail.com>
8677
8678         * gdbtypes.c (internal_type_self_type): If TYPE_SPECIFIC_FIELD hasn't
8679         been initialized yet, return NULL.
8680
8681 2015-02-11  Doug Evans  <dje@google.com>
8682
8683         * symfile.h (new_symfile_objfile): Delete.
8684         * symfile.c (finish_new_objfile): Renamed from new_symfile_objfile.
8685         All callers updated.
8686
8687 2015-02-11  Patrick Palka  <patrick@parcs.ath.cx>
8688
8689         * tui/tui-io.c (tui_handle_resize_during_io): Call
8690         tui_update_gdb_sizes() after resizing the screen.
8691         * tui/tui.c (tui_enable): Resize the terminal before
8692         calling tui_update_gdb_sizes().
8693
8694 2015-02-11  Patrick Palka  <patrick@parcs.ath.cx>
8695
8696         * tui/tui-io.c (tui_getc): Move cursor to the end of the command
8697         line before printing a newline.
8698
8699 2015-02-11  Mark Wielaard  <mjw@redhat.com>
8700
8701         * utils.c (producer_is_gcc): Return true or false.
8702
8703 2015-02-10  Mark Wielaard  <mjw@redhat.com>
8704
8705         * utils.h (producer_is_gcc): Change return type to bool. Add major
8706         argument.
8707         * utils.c (producer_is_gcc): Likewise.
8708         (producer_is_gcc_ge_4): Adjust producer_is_gcc call.
8709         * dwarf2read.c (check_producer): Likewise.
8710
8711 2015-02-10  Pedro Alves  <palves@redhat.com>
8712
8713         * infrun.c (displaced_step_fixup): Switch to the event thread
8714         before calling gdbarch_displaced_step_fixup.
8715
8716 2015-02-10  Antoine Tremblay <antoine.tremblay@ericsson.com>
8717
8718         * MAINTAINERS (Write After Approval): Add Antoine Tremblay.
8719
8720 2015-02-10  Simon Marchi  <simon.marchi@ericsson.com>
8721
8722         * ada-varobj.c (ada_name_of_child): Constify parent.
8723         (ada_path_expr_of_child): Same.
8724         (ada_value_of_child): Same.
8725         (ada_type_of_child): Same.
8726         * c-varobj.c (c_is_path_expr_parent): Same.
8727         (c_describe_child): Same.
8728         (c_name_of_child): Same.
8729         (c_value_of_child): Same.
8730         (c_type_of_child): Same.
8731         (cplus_number_of_children): Same.
8732         (cplus_describe_child): Constify var.
8733         (cplus_name_of_child): Constify parent.
8734         (cplus_value_of_child): Same.
8735         (cplus_type_of_child): Same.
8736         * jv-varobj.c (java_name_of_child): Same.
8737         (java_value_of_child): Same.
8738         (java_type_of_child): Same.
8739         * varobj.c (value_of_child): Same.
8740         (varobj_default_is_path_expr_parent): Constify var, parent and return
8741         value.
8742         (varobj_get_path_expr): Constify var, modify path_expr through
8743         mutable_var.
8744         (install_new_value): Constify parent.
8745         (value_of_child): Constify parent.
8746         * varobj.h (struct varobj): Constify parent.
8747         (struct lang_varobj_ops): Constify name_of_child, value_of_child and
8748         type_of_child.
8749         (varobj_get_path_expr): Constify var.
8750         (varobj_get_path_expr_parent): Constify var and return value.
8751
8752 2015-02-10  Luis Machado  <lgustavo@codesourcery.com>
8753
8754         * arm-tdep.c (arm_prologue_unwind_stop_reason): New function.
8755         (arm_prologue_this_id): Move PC and SP limit checks to
8756         arm_prologue_unwind_stop_reason.
8757         (arm_prologue_unwind) <stop_reason> : Set to
8758         arm_prologue_unwind_stop_reason.
8759
8760 2015-02-09  Mark Wielaard  <mjw@redhat.com>
8761
8762         * dwarf2read.c (set_cu_language): Recognize DW_LANG_Fortran03 and
8763         DW_LANG_Fortran08 as language_fortran.
8764
8765 2015-02-09  Sergio Durigan Junior  <sergiodj@redhat.com>
8766
8767         PR remote/17946
8768         * gdb/remote.c (remote_parse_stop_reply): Fix wrong comparison
8769         of pointer against char.
8770
8771 2015-02-09  Mark Wielaard  <mjw@redhat.com>
8772
8773         * c-typeprint.c (cp_type_print_method_args): Handle '_Atomic'.
8774         (c_type_print_modifier): Likewise.
8775         * dwarf2read.c (read_tag_atomic_type): New function.
8776         (read_type_die_1): Handle DW_TAG_atomic_type.
8777         * gdbtypes.c (make_atomic_type): New function.
8778         (recursive_dump_type): Handle TYPE_ATOMIC.
8779         * gdbtypes.h (enum type_flag_values): Renumber.
8780         (enum type_instance_flag_value): Add TYPE_INSTANCE_FLAG_ATOMIC.
8781         (TYPE_ATOMIC): New macro.
8782         (make_atomic_type): Declare.
8783
8784 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
8785
8786         * btrace.c (ftrace_find_call): Skip gaps.
8787         (ftrace_new_function): Initialize level.
8788         (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return)
8789         (ftrace_new_switch): Update
8790         level computation.
8791         (ftrace_new_gap): New.
8792         (ftrace_update_function): Create new function after gap.
8793         (btrace_compute_ftrace_bts): Create gap on error.
8794         (btrace_stitch_bts): Update parameters.  Clear trace if it
8795         becomes empty.
8796         (btrace_stitch_trace): Update parameters.  Update callers.
8797         (btrace_clear): Reset the number of gaps.
8798         (btrace_insn_get): Return NULL if the iterator points to a gap.
8799         (btrace_insn_number): Return zero if the iterator points to a gap.
8800         (btrace_insn_end): Allow gaps at the end.
8801         (btrace_insn_next, btrace_insn_prev, btrace_insn_cmp): Handle gaps.
8802         (btrace_find_insn_by_number): Assert that the found iterator does
8803         not point to a gap.
8804         (btrace_call_next, btrace_call_prev): Assert that the last function
8805         is not a gap.
8806         * btrace.h (btrace_bts_error): New.
8807         (btrace_function): Update comment.
8808         (btrace_function) <insn, insn_offset, number>: Update comment.
8809         (btrace_function) <errcode>: New.
8810         (btrace_thread_info) <ngaps>: New.
8811         (btrace_thread_info) <replay>: Update comment.
8812         (btrace_insn_get): Update comment.
8813         * record-btrace.c (btrace_ui_out_decode_error): New.
8814         (record_btrace_info): Print number of gaps.
8815         (btrace_insn_history, btrace_call_history): Call
8816         btrace_ui_out_decode_error for gaps.
8817         (record_btrace_step_thread, record_btrace_start_replaying): Skip gaps.
8818
8819 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
8820
8821         * common/btrace-common.h (btrace_cpu_vendor, btrace_cpu): New.
8822         * nat/linux-btrace.c: (btrace_this_cpu): New.
8823         (cpu_supports_bts): Call btrace_this_cpu.
8824         (intel_supports_bts): Add cpu parameter.
8825
8826 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
8827
8828         * btrace.h (btrace_insn_class): New.
8829         (btrace_insn) <size, iclass>: New.
8830         * btrace.c (ftrace_find_call): Update parameters.  Update users.
8831         Use instruction classification.
8832         (ftrace_new_return): Update parameters.  Update users.
8833         (ftrace_update_function): Update parameters.  Update users.  Use
8834         instruction classification.
8835         (ftrace_update_insns): Update parameters.  Update users.
8836         (ftrace_classify_insn): New.
8837         (btrace_compute_ftrace_bts): Fill in new btrace_insn fields.  Add
8838         TRY_CATCH around call to gdb_insn_length.
8839
8840 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
8841
8842         * btrace.c (btrace_compute_ftrace_bts, btrace_compute_ftrace):
8843         Update parameters.  Update users.
8844
8845 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
8846
8847         * btrace.c (parse_xml_btrace_conf_bts): Add size.
8848         (btrace_conf_bts_attributes): New.
8849         (btrace_conf_children): Add attributes.
8850         * common/btrace-common.h (btrace_config_bts): New.
8851         (btrace_config)<bts>: New.
8852         (btrace_config): Update comment.
8853         * nat/linux-btrace.c (linux_enable_btrace, linux_enable_bts):
8854         Use config.
8855         * features/btrace-conf.dtd: Increment version.  Add size
8856         attribute to bts element.
8857         * record-btrace.c (set_record_btrace_bts_cmdlist,
8858         show_record_btrace_bts_cmdlist): New.
8859         (record_btrace_adjust_size, record_btrace_print_bts_conf,
8860         record_btrace_print_conf, cmd_set_record_btrace_bts,
8861         cmd_show_record_btrace_bts): New.
8862         (record_btrace_info): Call record_btrace_print_conf.
8863         (_initialize_record_btrace): Add commands.
8864         * remote.c: Add PACKET_Qbtrace_conf_bts_size enum.
8865         (remote_protocol_features): Add Qbtrace-conf:bts:size packet.
8866         (btrace_sync_conf): Synchronize bts size.
8867         (_initialize_remote): Add Qbtrace-conf:bts:size packet.
8868         * NEWS: Announce new commands and new packets.
8869
8870 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
8871
8872         * Makefile.in (XMLFILES): Add btrace-conf.dtd.
8873         * x86-linux-nat.c (x86_linux_enable_btrace): Update parameters.
8874         (x86_linux_btrace_conf): New.
8875         (x86_linux_create_target): Initialize to_btrace_conf.
8876         * nat/linux-btrace.c (linux_enable_btrace): Update parameters.
8877         Check format.  Split into this and ...
8878         (linux_enable_bts): ... this.
8879         (linux_btrace_conf): New.
8880         (perf_event_skip_record): Renamed into ...
8881         (perf_event_skip_bts_record): ... this.  Updated users.
8882         (linux_disable_btrace): Split into this and ...
8883         (linux_disable_bts): ... this.
8884         (linux_read_btrace): Check format.
8885         * nat/linux-btrace.h (linux_enable_btrace): Update parameters.
8886         (linux_btrace_conf): New.
8887         (btrace_target_info)<ptid>: Moved.
8888         (btrace_target_info)<conf>: New.
8889         (btrace_target_info): Split into this and ...
8890         (btrace_tinfo_bts): ... this.  Updated users.
8891         * btrace.c (btrace_enable): Update parameters.
8892         (btrace_conf, parse_xml_btrace_conf_bts, parse_xml_btrace_conf)
8893         (btrace_conf_children, btrace_conf_attributes)
8894         (btrace_conf_elements): New.
8895         * btrace.h (btrace_enable): Update parameters.
8896         (btrace_conf, parse_xml_btrace_conf): New.
8897         * common/btrace-common.h (btrace_config): New.
8898         * feature/btrace-conf.dtd: New.
8899         * record-btrace.c (record_btrace_conf): New.
8900         (record_btrace_cmdlist): New.
8901         (record_btrace_enable_warn, record_btrace_open): Pass
8902         &record_btrace_conf.
8903         (record_btrace_info): Print recording format.
8904         (cmd_record_btrace_bts_start): New.
8905         (cmd_record_btrace_start): Call cmd_record_btrace_bts_start.
8906         (_initialize_record_btrace): Add "record btrace bts" subcommand.
8907         Add "record bts" alias command.
8908         * remote.c (remote_state)<btrace_config>: New.
8909         (remote_btrace_reset, PACKET_qXfer_btrace_conf): New.
8910         (remote_protocol_features): Add qXfer:btrace-conf:read.
8911         (remote_open_1): Call remote_btrace_reset.
8912         (remote_xfer_partial): Handle TARGET_OBJECT_BTRACE_CONF.
8913         (btrace_target_info)<conf>: New.
8914         (btrace_sync_conf, btrace_read_config): New.
8915         (remote_enable_btrace): Update parameters.  Call btrace_sync_conf and
8916         btrace_read_conf.
8917         (remote_btrace_conf): New.
8918         (init_remote_ops): Initialize to_btrace_conf.
8919         (_initialize_remote): Add qXfer:btrace-conf packet.
8920         * target.c (target_enable_btrace): Update parameters.
8921         (target_btrace_conf): New.
8922         * target.h (target_enable_btrace): Update parameters.
8923         (target_btrace_conf): New.
8924         (target_object)<TARGET_OBJECT_BTRACE_CONF>: New.
8925         (target_ops)<to_enable_btrace>: Update parameters and comment.
8926         (target_ops)<to_btrace_conf>: New.
8927         * target-delegates: Regenerate.
8928         * target-debug.h (target_debug_print_const_struct_btrace_config_p)
8929         (target_debug_print_const_struct_btrace_target_info_p): New.
8930         * NEWS: Announce new command and new packet.
8931
8932 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
8933
8934         * nat/linux-btrace.h (perf_event_buffer): New.
8935         (btrace_target_info) <buffer, size, data_head>: Replace with ...
8936         <bts>: ... this.
8937         * nat/linux-btrace.c (perf_event_header, perf_event_mmap_size)
8938         (perf_event_buffer_size, perf_event_buffer_begin)
8939         (perf_event_buffer_end, linux_btrace_has_changed): Removed.
8940         Updated users.
8941         (perf_event_new_data): New.
8942
8943 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
8944
8945         * btrace.c (btrace_enable): Pass BTRACE_FORMAT_BTS.
8946         * record-btrace.c (record_btrace_open): Remove call to
8947         target_supports_btrace.
8948         * remote.c (remote_supports_btrace): Update parameters.
8949         * target.c (target_supports_btrace): Update parameters.
8950         * target.h (to_supports_btrace, target_supports_btrace): Update
8951         parameters.
8952         * target-delegates.c: Regenerate.
8953         * target-debug.h (target_debug_print_enum_btrace_format): New.
8954         * nat/linux-btrace.c
8955         (kernel_supports_btrace): Rename into ...
8956         (kernel_supports_bts): ... this.  Update users.  Update warning text.
8957         (intel_supports_btrace): Rename into ...
8958         (intel_supports_bts): ... this.  Update users.
8959         (cpu_supports_btrace): Rename into ...
8960         (cpu_supports_bts): ... this.  Update users.
8961         (linux_supports_btrace): Update parameters.  Split into this and ...
8962         (linux_supports_bts): ... this.
8963         * nat/linux-btrace.h (linux_supports_btrace): Update parameters.
8964
8965 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
8966
8967         * Makefile.in (SFILES): Add common/btrace-common.c.
8968         (COMMON_OBS): Add common/btrace-common.o.
8969         (btrace-common.o): Add build rules.
8970         * btrace.c (parse_xml_btrace): Update parameters.
8971         (parse_xml_btrace_block): Set format field.
8972         (btrace_add_pc, btrace_fetch): Use struct btrace_data.
8973         (do_btrace_data_cleanup, make_cleanup_btrace_data): New.
8974         (btrace_compute_ftrace): Split into this and...
8975         (btrace_compute_ftrace_bts): ...this.
8976         (btrace_stitch_trace): Split into this and...
8977         (btrace_stitch_bts): ...this.
8978         * btrace.h (parse_xml_btrace): Update parameters.
8979         (make_cleanup_btrace_data): New.
8980         * common/btrace-common.c: New.
8981         * common/btrace-common.h: Include common-defs.h.
8982         (btrace_block_s): Update comment.
8983         (btrace_format): New.
8984         (btrace_format_string): New.
8985         (btrace_data_bts): New.
8986         (btrace_data): New.
8987         (btrace_data_init, btrace_data_fini, btrace_data_empty): New.
8988         * remote.c (remote_read_btrace): Update parameters.
8989         * target.c (target_read_btrace): Update parameters.
8990         * target.h (target_read_btrace): Update parameters.
8991         (target_ops)<to_read_btrace>: Update parameters.
8992         * x86-linux-nat.c (x86_linux_read_btrace): Update parameters.
8993         * target-delegates.c: Regenerate.
8994         * target-debug (target_debug_print_struct_btrace_data_p): New.
8995         * nat/linux-btrace.c (linux_read_btrace): Split into this and...
8996         (linux_read_bts): ...this.
8997         * nat/linux-btrace.h (linux_read_btrace): Update parameters.
8998
8999 2015-02-06  Doug Evans  <dje@google.com>
9000
9001         * remote-m32r-sdi.c: Include symfile.h.
9002
9003 2015-02-06  Doug Evans  <dje@google.com>
9004
9005         * symtab.h (clear_symtab_users, deduce_language_from_filename): Move
9006         * symfile.h (clear_symtab_users, deduce_language_from_filename): ...
9007         to here.
9008
9009 2015-02-06  Pedro Alves  <palves@redhat.com>
9010
9011         * linux-thread-db.c (find_new_threads_callback): Add debug output.
9012
9013 2015-02-06  Simon Marchi  <simon.marchi@ericsson.com>
9014
9015         PR gdb/15678
9016         * breakpoint.c (map_breakpoint_numbers): Check for empty args string.
9017         (enable_count_command): Check args for NULL value.
9018
9019 2015-02-05  Doug Evans  <xdje42@gmail.com>
9020
9021         * guile/scm-frame.c: Fix spelling errors in a comment.
9022
9023 2015-02-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
9024
9025         * python/python-internal.h (Py_hash_t): Define it for Python <3.2.
9026         * python/py-value.c (valpy_fetch_lazy): Use it.  Remove cast to the
9027         return type.
9028
9029 2015-02-04  Pedro Alves  <palves@redhat.com>
9030
9031         * linux-nat.c (handle_extended_wait): Don't resume LWPs here.
9032         (wait_lwp): Don't call wait_lwp if linux_handle_extended_wait
9033         returns true.
9034         (resume_stopped_resumed_lwps): Don't check whether the thread is
9035         marked as executing.
9036         (linux_nat_wait_1): Use resume_stopped_resumed_lwps.
9037
9038 2015-02-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9039
9040         * regset.h (struct regset): Add flags field.
9041         (REGSET_VARIABLE_SIZE): New value for a regset's flags field.
9042         * corelow.c (get_core_register_section): Add warning if the size
9043         exceeds the requested size and the regset does not have the
9044         REGSET_VARIABLE_SIZE flag set.
9045         * alphanbsd-tdep.c (alphanbsd_gregset): Add REGSET_VARIABLE_SIZE
9046         flag.
9047         * armbsd-tdep.c (armbsd_gregset): Likewise.
9048         * hppa-hpux-tdep.c (hppa_hpux_regset): Likewise.
9049         * hppaobsd-tdep.c (hppaobsd_gregset): Likewise.
9050         * m68kbsd-tdep.c (m68kbsd_gregset): Likewise.
9051         * mipsnbsd-tdep.c (mipsnbsd_gregset): Likewise.
9052
9053 2015-02-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9054
9055         * amd64-linux-tdep.c (amd64_linux_iterate_over_regset_sections):
9056         For ".reg-xstate", explicitly specify the requested section size
9057         via X86_XSTATE_SIZE instead of just 0 on input and
9058         X86_XSTATE_MAX_SIZE on output.
9059         * i386-linux-tdep.c (i386_linux_iterate_over_regset_sections):
9060         Likewise.
9061
9062 2015-02-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9063
9064         PR corefiles/17808:
9065         * gdbarch.sh (iterate_over_regset_sections_cb): Document this
9066         function type, particularly its SIZE parameter.
9067         * gdbarch.h: Regenerate.
9068         * amd64-tdep.c (amd64_supply_fpregset): In gdb_assert, compare
9069         actual against required size using ">=" instead of "==".
9070         (amd64_collect_fpregset): Likewise.
9071         * i386-tdep.c (i386_supply_gregset): Likewise.
9072         (i386_collect_gregset): Likewise.
9073         (i386_supply_fpregset): Likewise.
9074         (i386_collect_fpregset): Likewise.
9075         * mips-linux-tdep.c (mips_supply_gregset_wrapper): Likewise.
9076         (mips_fill_gregset_wrapper): Likewise.
9077         (mips_supply_fpregset_wrapper): Likewise.
9078         (mips_fill_fpregset_wrapper): Likewise.
9079         (mips64_supply_gregset_wrapper): Likewise.
9080         (mips64_fill_gregset_wrapper): Likewise.
9081         (mips64_supply_fpregset_wrapper): Likewise.
9082         (mips64_fill_fpregset_wrapper): Likewise.
9083         * mn10300-linux-tdep.c (am33_supply_gregset_method): Likewise.
9084         (am33_supply_fpregset_method): Likewise.
9085         (am33_collect_gregset_method): Likewise.
9086         (am33_collect_fpregset_method): Likewise.
9087
9088 2015-02-04  Doug Evans  <dje@google.com>
9089             Pedro Alves  <palves@redhat.com>
9090             Eli Zaretskii  <eliz@gnu.org>
9091
9092         PR tui/17810
9093         * tui/tui-command.c (tui_refresh_cmd_win): New function.
9094         * tui/tui-command.c (tui_refresh_cmd_win): Declare.
9095         * tui/tui-file.c: #include tui/tui-command.h.
9096         (tui_file_fputs): Refresh command window if stream is not gdb_stdout.
9097         (tui_file_flush): Refresh command window if stream is gdb_stdout.
9098         * tui/tui-io.c (tui_puts): Remove calls to wrefresh, fflush.
9099
9100 2015-02-04  Pedro Alves  <palves@redhat.com>
9101
9102         Fix build breakage.
9103         * event-loop.c (gdb_do_one_event): Add default switch case.
9104
9105 2015-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
9106
9107         Filter out inferior gcc option -fpreprocessed.
9108         * compile/compile.c (filter_args): New function.
9109         (get_args): Use it.
9110
9111 2015-02-03  Pedro Alves  <palves@redhat.com>
9112
9113         * event-loop.c: Don't declare nor define a queue type for
9114         gdb_event_p.
9115         (event_queue): Delete.
9116         (create_event, create_file_event, gdb_event_xfree)
9117         (initialize_event_loop, process_event): Delete.
9118         (gdb_do_one_event): Return as soon as one event is handled.
9119         (handle_file_event): Change prototype.  Used the passed in
9120         file_handler pointer and ready_mask instead of looping over all
9121         file handlers.
9122         (gdb_wait_for_event): Update the poll/select timeouts before
9123         blocking.  Run event handlers directly instead of queueing events.
9124         Return as soon as one event is handled.
9125         (struct async_event_handler_data): Delete.
9126         (invoke_async_event_handler): Delete.
9127         (check_async_event_handlers): Change return type to int.  Run
9128         event handlers directly instead of queueing events.  Return as
9129         soon as one event is handled.
9130         (handle_timer_event): Delete.
9131         (update_wait_timeout): New function, factored out from
9132         poll_timers.
9133         (poll_timers): Reimplement.
9134         * event-loop.h (initialize_event_loop): Delete declaration.
9135         * top.c (gdb_init): Don't call initialize_event_loop.
9136
9137 2015-02-03  Pedro Alves  <palves@redhat.com>
9138
9139         * event-loop.c (clear_async_event_handler): New function.
9140         * event-loop.h (clear_async_event_handler): New declaration.
9141         * record-btrace.c (record_btrace_async): New function.
9142         (init_record_btrace_ops): Install record_btrace_async.
9143         * record-full.c (record_full_async): New function.
9144         (record_full_resume): Don't mark the async event source here.
9145         (init_record_full_ops): Install record_full_async.
9146         (record_full_core_resume): Don't mark the async event source here.
9147         (init_record_full_core_ops): Install record_full_async.
9148         * remote.c (remote_async): Mark and clear the async stop reply
9149         queue event-loop token as appropriate.
9150
9151 2015-02-03  Pedro Alves  <palves@redhat.com>
9152
9153         * linux-nat.c (linux_child_follow_fork, linux_nat_wait_1): Use
9154         target_is_async_p instead of target_can_async.
9155         (linux_nat_wait): Use target_is_async_p instead of
9156         target_can_async.  Don't enable async here.
9157         * remote.c (interrupt_query, remote_wait, putpkt_binary): Use
9158         target_is_async_p instead of target_can_async.
9159
9160 2015-02-02  Simon Marchi  <simon.marchi@ericsson.com>
9161
9162         * varobj.h (lang_varobj_ops): Mention which return values need
9163         to be freed.
9164
9165 2015-02-02  Joel Brobecker  <brobecker@adacore.com>
9166
9167         * dwarf2loc.c (dwarf2_evaluate_property): Add i18n marker.
9168
9169 2015-02-02  Joel Brobecker  <brobecker@adacore.com>
9170
9171         PR gdb/17856:
9172         * ada-lang.c (ada_lookup_symbol_list_worker): Do not re-cache
9173         results found in the cache.
9174
9175 2015-02-02  Joel Brobecker  <brobecker@adacore.com>
9176
9177         PR gdb/17854:
9178         * ada-lang.c (ada_get_symbol_cache): Set pspace_data->sym_cache
9179         when allocating a new one.
9180
9181 2015-02-01  Tom Tromey  <tom@tromey.com>
9182
9183         * MAINTAINERS: Remove myself.
9184
9185 2015-01-31  Doug Evans  <xdje42@gmail.com>
9186
9187         * dwarf2read.c (process_structure_scope): Update setting of
9188         TYPE_VPTR_BASETYPE, TYPE_VPTR_FIELDNO.
9189         * gdbtypes.c (internal_type_vptr_fieldno): New function.
9190         (set_type_vptr_fieldno): New function.
9191         (internal_type_vptr_basetype): New function.
9192         (set_type_vptr_basetype): New function.
9193         (get_vptr_fieldno): Update setting of TYPE_VPTR_FIELDNO,
9194         TYPE_VPTR_BASETYPE.
9195         (allocate_cplus_struct_type): Initialize vptr_fieldno.
9196         (recursive_dump_type): Printing of vptr_fieldno, vptr_basetype ...
9197         (print_cplus_stuff): ... moved here.
9198         (copy_type_recursive): Don't copy TYPE_VPTR_BASETYPE.
9199         * gdbtypes.h (struct main_type): Members vptr_fieldno, vptr_basetype
9200         moved to ...
9201         (struct cplus_struct_type): ... here.  All uses updated.
9202         (TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE): Rewrite.
9203         (internal_type_vptr_fieldno, set_type_vptr_fieldno): Declare.
9204         (internal_type_vptr_basetype, set_type_vptr_basetype): Declare.
9205         * stabsread.c (read_tilde_fields): Update setting of
9206         TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE.
9207
9208 2015-01-31  Doug Evans  <xdje42@gmail.com>
9209
9210         * cp-valprint.c (cp_find_class_member): Rename parameter domain_p
9211         to self_p.
9212         (cp_print_class_member): Rename local domain to self_type.
9213         * dwarf2read.c (quirk_gcc_member_function_pointer): Rename local
9214         domain_type to self_type.
9215         (set_die_type) <need_gnat_info>: Handle
9216         TYPE_CODE_METHODPTR, TYPE_CODE_MEMBERPTR, TYPE_CODE_METHOD.
9217         * gdb-gdb.py (StructMainTypePrettyPrinter): Handle
9218         TYPE_SPECIFIC_SELF_TYPE.
9219         * gdbtypes.c (internal_type_self_type): New function.
9220         (set_type_self_type): New function.
9221         (smash_to_memberptr_type): Rename parameter domain to self_type.
9222         Update setting of TYPE_SELF_TYPE.
9223         (smash_to_methodptr_type): Update setting of TYPE_SELF_TYPE.
9224         (smash_to_method_type): Rename parameter domain to self_type.
9225         Update setting of TYPE_SELF_TYPE.
9226         (check_stub_method): Call smash_to_method_type.
9227         (recursive_dump_type): Handle TYPE_SPECIFIC_SELF_TYPE.
9228         (copy_type_recursive): Ditto.
9229         * gdbtypes.h (enum type_specific_kind): New value
9230         TYPE_SPECIFIC_SELF_TYPE.
9231         (struct main_type) <type_specific>: New member self_type.
9232         (struct cplus_struct_type) <fn_field.type>: Update comment.
9233         (TYPE_SELF_TYPE): Rewrite.
9234         (internal_type_self_type, set_type_self_type): Declare.
9235         * gnu-v3-abi.c (gnuv3_print_method_ptr): Rename local domain to
9236         self_type.
9237         (gnuv3_method_ptr_to_value): Rename local domain_type to self_type.
9238         * m2-typeprint.c (m2_range): Replace TYPE_SELF_TYPE with
9239         TYPE_TARGET_TYPE.
9240         * stabsread.c (read_member_functions): Mark methods with
9241         TYPE_CODE_METHOD, not TYPE_CODE_FUNC.  Update setting of
9242         TYPE_SELF_TYPE.
9243
9244 2015-01-31  Doug Evans  <xdje42@gmail.com>
9245
9246         * gdbtypes.h (TYPE_SELF_TYPE): Renamed from TYPE_DOMAIN_TYPE.
9247         All uses updated.
9248
9249 2015-01-31  Doug Evans  <xdje42@gmail.com>
9250
9251         * gnu-v3-abi.c (gnuv3_dynamic_class): Assert only passed structs
9252         or unions.  Return zero if union.
9253         (gnuv3_get_vtable): Call check_typedef.  Assert only passed structs.
9254         (gnuv3_rtti_type): Pass already-check_typedef'd value to
9255         gnuv3_get_vtable.
9256         (compute_vtable_size): Assert only passed structs.
9257         (gnuv3_print_vtable): Don't call gnuv3_get_vtable for non-structs.
9258
9259 2015-01-31  Doug Evans  <xdje42@gmail.com>
9260
9261         * gdbtypes.c (copy_type_recursive): Handle all TYPE_SPECIFIC_FIELD
9262         kinds.
9263
9264 2015-01-31  Gary Benson <gbenson@redhat.com>
9265             Doug Evans  <dje@google.com>
9266
9267         PR cli/9007
9268         PR cli/11920
9269         PR cli/15548
9270         * cli/cli-cmds.c (complete_command): Notify user if max-completions
9271         reached.
9272         * common/common-exceptions.h (enum errors)
9273         <MAX_COMPLETIONS_REACHED_ERROR>: New value.
9274         * completer.h (get_max_completions_reached_message): New declaration.
9275         (max_completions): Likewise.
9276         (completion_tracker_t): New typedef.
9277         (new_completion_tracker): New declaration.
9278         (make_cleanup_free_completion_tracker): Likewise.
9279         (maybe_add_completion_enum): New enum.
9280         (maybe_add_completion): New declaration.
9281         (throw_max_completions_reached_error): Likewise.
9282         * completer.c (max_completions): New global variable.
9283         (new_completion_tracker): New function.
9284         (free_completion_tracker): Likewise.
9285         (make_cleanup_free_completion_tracker): Likewise.
9286         (maybe_add_completions): Likewise.
9287         (throw_max_completions_reached_error): Likewise.
9288         (complete_line): Remove duplicates and limit result to max_completions
9289         entries.
9290         (get_max_completions_reached_message): New function.
9291         (gdb_display_match_list): Handle max_completions.
9292         (_initialize_completer): New declaration and function.
9293         * symtab.c: Include completer.h.
9294         (completion_tracker): New static variable.
9295         (completion_list_add_name): Call maybe_add_completion.
9296         (default_make_symbol_completion_list_break_on_1): Renamed from
9297         default_make_symbol_completion_list_break_on.  Maintain
9298         completion_tracker across calls to completion_list_add_name.
9299         (default_make_symbol_completion_list_break_on): New function.
9300         * top.c (init_main): Set rl_completion_display_matches_hook.
9301         * tui/tui-io.c: Include completer.h.
9302         (tui_old_rl_display_matches_hook): New static global.
9303         (tui_rl_display_match_list): Notify user if max-completions reached.
9304         (tui_setup_io): Save/restore rl_completion_display_matches_hook.
9305         * NEWS (New Options): Mention set/show max-completions.
9306
9307 2015-01-31  Gary Benson  <gbenson@redhat.com>
9308
9309         * symtab.c (struct add_name_data) <code>: New field.
9310         Updated comments.
9311         (add_symtab_completions): New function.
9312         (symtab_expansion_callback): Likewise.
9313         (default_make_symbol_completion_list_break_on): Set datum.code.
9314         Move minimal symbol scan before calling expand_symtabs_matching.
9315         Scan known primary symtabs for externs and statics before calling
9316         expand_symtabs_matching.  Pass symtab_expansion_callback as
9317         expansion_notify argument to expand_symtabs_matching.  Do not scan
9318         primary symtabs for externs and statics after calling
9319         expand_symtabs_matching.
9320
9321 2015-01-31  Gary Benson  <gbenson@redhat.com>
9322
9323         * symfile.h (expand_symtabs_exp_notify_ftype): New typedef.
9324         (struct quick_symbol_functions) <expand_symtabs_matching>:
9325         New argument expansion_notify.  All uses updated.
9326         (expand_symtabs_matching): New argument expansion_notify.
9327         All uses updated.
9328         * symfile-debug.c (debug_qf_expand_symtabs_matching):
9329         Also print expansion notify.
9330         * symtab.c (expand_symtabs_matching_via_partial): Call
9331         expansion_notify whenever a partial symbol table is expanded.
9332         * dwarf2read.c (dw2_expand_symtabs_matching): Call
9333         expansion_notify whenever a symbol table is instantiated.
9334
9335 2015-01-31  Doug Evans  <xdje42@gmail.com>
9336
9337         * cli-out.c: #include completer.h, readline/readline.h.
9338         (cli_mld_crlf, cli_mld_putch, cli_mld_puts): New functions.
9339         (cli_mld_flush, cld_mld_erase_entire_line): Ditto.
9340         (cli_mld_beep, cli_mld_read_key, cli_display_match_list): Ditto.
9341         * cli-out.h (cli_display_match_list): Declare.
9342         * completer.c (MB_INVALIDCH, MB_NULLWCH): New macros.
9343         (ELLIPSIS_LEN): Ditto.
9344         (gdb_get_y_or_n, gdb_display_match_list_pager): New functions.
9345         (gdb_path_isdir, gdb_printable_part, gdb_fnwidth): Ditto.
9346         (gdb_fnprint, gdb_print_filename): Ditto.
9347         (gdb_complete_get_screenwidth, gdb_display_match_list_1): Ditto.
9348         (gdb_display_match_list): Ditto.
9349         * completer.h (mld_crlf_ftype, mld_putch_ftype): New typedefs.
9350         (mld_puts_ftype, mld_flush_ftype, mld_erase_entire_line_ftype): Ditto.
9351         (mld_beep_ftype, mld_read_key_ftype): Ditto.
9352         (match_list_displayer): New struct.
9353         (gdb_display_match_list): Declare.
9354         * top.c (init_main): Set rl_completion_display_matches_hook.
9355         * tui/tui-io.c: #include completer.h.
9356         (printable_part, PUTX, print_filename, get_y_or_n): Delete.
9357         (tui_mld_crlf, tui_mld_putch, tui_mld_puts): New functions.
9358         (tui_mld_flush, tui_mld_erase_entire_line, tui_mld_beep): Ditto.
9359         (tui_mld_getc, tui_mld_read_key): Ditto.
9360         (tui_rl_display_match_list): Rewrite.
9361         (tui_handle_resize_during_io): New arg for_completion.  All callers
9362         updated.
9363
9364 2015-01-31  Doug Evans  <xdje42@gmail.com>
9365
9366         Add symbol lookup cache.
9367         * NEWS: Document new options and commands.
9368         * symtab.c (symbol_cache_key): New static global.
9369         (DEFAULT_SYMBOL_CACHE_SIZE, MAX_SYMBOL_CACHE_SIZE): New macros.
9370         (SYMBOL_LOOKUP_FAILED): New macro.
9371         (symbol_cache_slot_state): New enum.
9372         (block_symbol_cache): New struct.
9373         (symbol_cache): New struct.
9374         (new_symbol_cache_size, symbol_cache_size): New static globals.
9375         (hash_symbol_entry, eq_symbol_entry): New functions.
9376         (symbol_cache_byte_size, resize_symbol_cache): New functions.
9377         (make_symbol_cache, free_symbol_cache): New functions.
9378         (get_symbol_cache, symbol_cache_cleanup): New function.
9379         (set_symbol_cache_size, set_symbol_cache_size_handler): New functions.
9380         (symbol_cache_lookup, symbol_cache_clear_slot): New function.
9381         (symbol_cache_mark_found, symbol_cache_mark_not_found): New functions.
9382         (symbol_cache_flush, symbol_cache_dump): New functions.
9383         (maintenance_print_symbol_cache): New function.
9384         (maintenance_flush_symbol_cache): New function.
9385         (symbol_cache_stats): New function.
9386         (maintenance_print_symbol_cache_statistics): New function.
9387         (symtab_new_objfile_observer): New function.
9388         (symtab_free_objfile_observer): New function.
9389         (lookup_static_symbol, lookup_global_symbol): Use symbol cache.
9390         (_initialize_symtab): Init symbol_cache_key.  New parameter
9391         maint symbol-cache-size.  New maint commands print symbol-cache,
9392         print symbol-cache-statistics, flush-symbol-cache.
9393         Install new_objfile, free_objfile observers.
9394
9395 2015-01-31  Joel Brobecker  <brobecker@adacore.com>
9396
9397         PR symtab/17855
9398         * symfile.c (clear_symtab_users): Move call to breakpoint_re_set
9399         to end.
9400
9401 2015-01-31  Doug Evans  <xdje42@gmail.com>
9402
9403         * NEWS: Mention inlined scripts in .debug_gdb_scripts section.
9404         * auto-load.c: #include ctype.h.
9405         (struct auto_load_pspace_info): Replace member loaded_scripts with
9406         new members loaded_script_files, loaded_script_texts.
9407         (auto_load_pspace_data_cleanup): Update.
9408         (init_loaded_scripts_info): Update.
9409         (get_auto_load_pspace_data_for_loading): Update.
9410         (maybe_add_script_file): Renamed from maybe_add_script.  All callers
9411         updated.
9412         (maybe_add_script_text): New function.
9413         (clear_section_scripts): Update.
9414         (source_script_file, execute_script_contents): New functions.
9415         (source_section_scripts): Add support for
9416         SECTION_SCRIPT_ID_PYTHON_TEXT, SECTION_SCRIPT_ID_GUILE_TEXT.
9417         (print_scripts): New function.
9418         (auto_load_info_scripts): Also print inlined scripts.
9419         (maybe_print_unsupported_script_warning): Renamed from
9420         unsupported_script_warning_print.  All callers updated.
9421         (maybe_print_script_not_found_warning): Renamed from
9422         script_not_found_warning_print.  All callers updated.
9423         * extension-priv.h (struct extension_language_script_ops): New member
9424         objfile_script_executor.
9425         * extension.c (ext_lang_objfile_script_executor): New function.
9426         * extension.h (objfile_script_executor_func): New typedef.
9427         (ext_lang_objfile_script_executor): Declare.
9428         * guile/guile-internal.h (gdbscm_execute_objfile_script): Declare.
9429         * guile/guile.c (guile_extension_script_ops): Update.
9430         * guile/scm-objfile.c (gdbscm_execute_objfile_script): New function.
9431         * python/python.c (python_extension_script_ops): Update.
9432         (gdbpy_execute_objfile_script): New function.
9433
9434 2015-01-31  Eli Zaretskii  <eliz@gnu.org>
9435
9436         * tui/tui-io.c (tui_expand_tabs): New function.
9437         (tui_puts, tui_redisplay_readline): Expand TABs into the
9438         appropriate number of spaces.
9439         * tui/tui-regs.c: Include tui-io.h.
9440         (tui_register_format): Call tui_expand_tabs to expand TABs into
9441         the appropriate number of spaces.
9442         * tui/tui-io.h: Add prototype for tui_expand_tabs.
9443
9444 2015-01-30  Doug Evans  <dje@google.com>
9445
9446         * NEWS: "info source" command now display producer string if present.
9447         * source.c (source_info): Print producer string if present.
9448
9449 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
9450
9451         * varobj.c (varobj_delete): Fix comment.
9452
9453 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
9454
9455         * varobj.c (create_child): Modify comment.
9456
9457 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
9458
9459         * ada-varobj.c (ada_number_of_children): Constify struct varobj *
9460         parameter.
9461         (ada_name_of_variable): Same.
9462         (ada_path_expr_of_child): Same.
9463         (ada_value_of_variable): Same.
9464         (ada_value_is_changeable_p): Same.
9465         (ada_value_has_mutated): Same.
9466         * c-varobj.c (varobj_is_anonymous_child): Same.
9467         (c_is_path_expr_parent): Same.
9468         (c_number_of_children): Same.
9469         (c_name_of_variable): Same.
9470         (c_path_expr_of_child): Same.
9471         (get_type): Same.
9472         (c_value_of_variable): Same.
9473         (cplus_number_of_children): Same.
9474         (cplus_name_of_variable): Same.
9475         (cplus_path_expr_of_child): Same.
9476         (cplus_value_of_variable): Same.
9477         * jv-varobj.c (java_number_of_children): Same.
9478         (java_name_of_variable): Same.
9479         (java_path_expr_of_child): Same.
9480         (java_value_of_variable): Same.
9481         * varobj.c (number_of_children): Same.
9482         (name_of_variable): Same.
9483         (is_root_p): Same.
9484         (varobj_ensure_python_env): Same.
9485         (varobj_get_objname): Same.
9486         (varobj_get_expression): Same.
9487         (varobj_get_display_format): Same.
9488         (varobj_get_display_hint): Same.
9489         (varobj_has_more): Same.
9490         (varobj_get_thread_id): Same.
9491         (varobj_get_frozen): Same.
9492         (dynamic_varobj_has_child_method): Same.
9493         (varobj_get_gdb_type): Same.
9494         (is_path_expr_parent): Same.
9495         (varobj_default_is_path_expr_parent): Same.
9496         (varobj_get_language): Same.
9497         (varobj_get_attributes): Same.
9498         (varobj_is_dynamic_p): Same.
9499         (varobj_get_child_range): Same.
9500         (varobj_value_has_mutated): Same.
9501         (varobj_get_value_type): Same.
9502         (number_of_children): Same.
9503         (name_of_variable): Same.
9504         (check_scope): Same.
9505         (varobj_editable_p): Same.
9506         (varobj_value_is_changeable_p): Same.
9507         (varobj_floating_p): Same.
9508         (varobj_default_value_is_changeable_p): Same.
9509
9510 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
9511
9512         * varobj.c (varobj_get_path_expr): Set var->path_expr.
9513         * c-varobj.c (c_path_expr_of_child): Set local var instead of
9514         child->path_expr.
9515         (cplus_path_expr_of_child): Same.
9516
9517 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
9518
9519         * mi-cmd-var.c (print_varobj): Free varobj_get_expression
9520         result.
9521         (mi_cmd_var_info_expression): Same.
9522         * varobj.c (varobj_get_expression): Mention in the comment that
9523         the result must by freed by the caller.
9524
9525 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
9526
9527         * mi/mi-cmd-var.c (mi_cmd_var_info_type): Free result of
9528         varobj_get_type.
9529         (varobj_update_one): Same.
9530         * varobj.c (update_type_if_necessary): Free curr_type_str and
9531         new_type_str.
9532         (varobj_get_type): Specify in comment that the result needs to be
9533         freed by the caller.
9534
9535 2015-01-29  Doug Evans  <dje@google.com>
9536
9537         PR symtab/17890
9538         * dwarf2read.c (dwarf_decode_line_header): Punt if version > 4.
9539
9540 2015-01-25  Mark Wielaard  <mjw@redhat.com>
9541
9542         * dwarf2read.c (checkproducer): Call producer_is_gcc.
9543         * utils.c (producer_is_gcc_ge_4): Likewise.
9544         (producer_is_gcc): New function.
9545         * utils.h (producer_is_gcc): New declaration.
9546
9547 2015-01-29  Joel Brobecker  <brobecker@adacore.com>
9548
9549         * gdbtypes.h (struct dynamic_prop): New PROP_ADDR_OFFSET enum
9550         kind.
9551         * gdbtypes.c (resolve_dynamic_type_internal): Replace "addr"
9552         parameter by "addr_stack" parameter.
9553         (resolve_dynamic_range): Replace "addr" parameter by
9554         "stack_addr" parameter.  Update function documentation.
9555         Update code accordingly.
9556         (resolve_dynamic_array, resolve_dynamic_union)
9557         (resolve_dynamic_struct, resolve_dynamic_type_internal): Likewise.
9558         (resolve_dynamic_type): Update code, following the changes made
9559         to resolve_dynamic_type_internal's interface.
9560         * dwarf2loc.h (struct property_addr_info): New.
9561         (dwarf2_evaluate_property): Replace "address" parameter
9562         by "addr_stack" parameter.  Adjust function documentation.
9563         (struct dwarf2_offset_baton): New.
9564         (struct dwarf2_property_baton): Update documentation of
9565         field "referenced_type" to be more general. New field
9566         "offset_info" in union data field.
9567         * dwarf2loc.c (dwarf2_evaluate_property): Replace "address"
9568         parameter by "addr_stack" parameter.  Adjust code accordingly.
9569         Add support for PROP_ADDR_OFFSET properties.
9570         * dwarf2read.c (attr_to_dynamic_prop): Add support for
9571         DW_AT_data_member_location attributes as well.  Use case
9572         statements instead of if/else condition.
9573
9574 2015-01-29  Joel Brobecker  <brobecker@adacore.com>
9575
9576         * ada-varobj.c (ada_varobj_get_array_number_of_children):
9577         Return zero if PARENT_VALUE is NULL and parent_type's
9578         range type is dynamic.
9579
9580 2015-01-29  Joel Brobecker  <brobecker@adacore.com>
9581
9582         * gdbtypes.c (is_dynamic_type_internal) <TYPE_CODE_RANGE>: Return
9583         nonzero if the type's subtype is dynamic.
9584         (resolve_dynamic_range): Also resolve the range's subtype.
9585
9586 2015-01-29  Alexander Klimov  <alserkli@inbox.ru>  (tiny patch)
9587
9588         Pushed by Joel Brobecker  <brobecker@adacore.com>.
9589         * symfile.c (unmap_overlay_command): Initialize sec to NULL.
9590
9591 2015-01-27  Doug Evans  <dje@google.com>
9592
9593         * NEWS: Mention gdb.Objfile.username.
9594         * python/py-objfile.c (objfpy_get_username): New function.
9595         (objfile_getset): Add "username".
9596
9597 2015-01-24  Mark Wielaard  <mjw@redhat.com>
9598
9599         * stack.c (return_command): Markup warning message with _.
9600
9601 2015-01-24  Doug Evans  <xdje42@gmail.com>
9602
9603         * gdbtypes.h (TYPE_TYPE_SPECIFIC): Delete.
9604
9605 2015-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
9606
9607         Fix 100x slowdown regression on DWZ files.
9608         * dwarf2read.c (struct dwarf2_per_objfile): Add line_header_hash.
9609         (struct line_header): Add offset and offset_in_dwz.
9610         (dwarf_decode_lines): Add parameter decode_mapping to the declaration.
9611         (free_line_header_voidp): New declaration.
9612         (line_header_hash, line_header_hash_voidp, line_header_eq_voidp): New
9613         functions.
9614         (dwarf2_build_include_psymtabs): Update dwarf_decode_lines caller.
9615         (handle_DW_AT_stmt_list): Use line_header_hash.
9616         (free_line_header_voidp): New function.
9617         (dwarf_decode_line_header): Initialize offset and offset_in_dwz.
9618         (dwarf_decode_lines): New parameter decode_mapping, use it.
9619         (dwarf2_free_objfile): Free line_header_hash.
9620
9621 2015-01-23  Simon Marchi  <simon.marchi@ericsson.com>
9622
9623         PR gdb/17416
9624         * valops.c (value_rtti_indirect_type): Catch exception thrown by
9625         value_ind.
9626
9627 2015-01-15  Mark Wielaard  <mjw@redhat.com>
9628
9629         * dwarf2read.c (read_subroutine_type): Set TYPE_NO_RETURN from
9630         DW_AT_noreturn.
9631         * gdbtypes.h (struct func_type): Add is_noreturn field flag. Make
9632         calling_convention an 8 bit bit field.
9633         (TYPE_NO_RETURN): New macro.
9634         * infcmd.c (finish_command): Query if function does not return
9635         normally.
9636         * stack.c (return_command): Likewise.
9637
9638 2015-01-23  Pedro Alves  <palves@redhat.com>
9639
9640         * linux-nat.c (linux_is_async_p): New macro.
9641         (linux_nat_is_async_p):
9642         (linux_nat_terminal_inferior): Check whether the target can async
9643         instead of whether it is already async.
9644         (linux_nat_terminal_ours): Don't check whether the target is
9645         async.
9646         (linux_async_pipe): Use linux_is_async_p.
9647
9648 2015-01-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
9649
9650         * NEWS (Changes since GDB 7.9): Add 'thread apply all' option
9651         '-ascending'.
9652         * thread.c (tp_array_compar_ascending, tp_array_compar): New.
9653         (thread_apply_all_command): Parse CMD for tp_array_compar_ascending.
9654         Sort tp_array using tp_array_compar.
9655         (_initialize_thread): Extend thread_apply_all_command help.
9656
9657 2015-01-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
9658
9659         * corelow.c (core_open): Call also thread_command.
9660         * gdbthread.h (thread_command): New prototype moved from ...
9661         * thread.c (thread_command): ... here.
9662         (thread_command): Make it global.
9663
9664 2015-01-22  Pedro Alves  <palves@redhat.com>
9665
9666         * configure.ac [*mingw32*]: Check $curses_found instead of
9667         $prefer_curses.
9668         * configure: Regenerate.
9669         * windows-termcap.c: Remove HAVE_CURSES_H, HAVE_NCURSES_H and
9670         HAVE_NCURSES_NCURSES_H checks.
9671
9672 2015-01-22  Eli Zaretskii  <eliz@gnu.org>
9673
9674         * tui/tui.c (tui_enable) [__MINGW32__]: If the call to 'newterm'
9675         fails with the 1st arg NULL, try again with "unknown".  Don't test
9676         the "cup" capability: it isn't supported by the Windows port of
9677         ncurses, but the Windows console driver is still capable of
9678         supporting TUI.
9679
9680 2015-01-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
9681
9682         * compile/compile.c (_initialize_compile): Use -fPIE for compile_args.
9683
9684 2015-01-22  Eli Zaretskii  <eliz@gnu.org>
9685
9686         * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
9687         (ALLDEPFILES): Remove irix5-nat.c.  These two are part of the
9688         reason that "make TAGS" is broken.
9689
9690 2015-01-22  Chen Gang  <gang.chen.5i5j@gmail.com>
9691
9692         * hppa-tdep.c (inst_saves_gr): Fix logical working flow issues
9693         and check additional store instructions.
9694
9695 2015-01-21  Wei-cheng Wang  <cole945@gmail.com>
9696
9697         * MAINTAINERS (Write After Approval): Add "Wei-cheng Wang".
9698
9699 2015-01-21  Wei-cheng Wang  <cole945@gmail.com>
9700
9701         * ppc-linux-tdep.c (ppc_skip_trampoline_code,
9702         ppc_canonicalize_syscall, ppc_linux_syscall_record,
9703         ppc_linux_record_signal, ppc_init_linux_record_tdep): Add comments.
9704         * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
9705         * rs6000-tdep.c (rs6000_epilogue_frame_cache,
9706         rs6000_epilogue_frame_this_id, rs6000_epilogue_frame_prev_register,
9707         rs6000_epilogue_frame_sniffer, ppc_record_vsr, ppc_process_record_op4,
9708         ppc_process_record_op19, ppc_process_record_op31,
9709         ppc_process_record_op59, ppc_process_record_op60,
9710         ppc_process_record_op63): Likewise.
9711
9712 2015-01-20  Joel Brobecker  <brobecker@adacore.com>
9713
9714         * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string)
9715         (linux_ptrace_test_ret_to_nx): Use safe_strerror instead of
9716         strerror.
9717
9718 2015-01-20  Wei-cheng Wang  <cole945@gmail.com>
9719
9720         * rs6000-tdep.c (ppc_process_record_op4, ppc_process_record_op19,
9721         ppc_process_record_op31, ppc_process_record_op59,
9722         ppc_process_record_op60, ppc_process_record_op63,
9723         ppc_process_record): Fix -Wformat warning.
9724         * rs6000-tdep.c (rs6000_epilogue_frame_cache, ppc_process_record_op60):
9725         Remove unused variables.
9726
9727 2015-01-20  Chen Gang  <gang.chen.5i5j@gmail.com>
9728
9729         * MAINTAINERS (Write After Approval): Add "Chen Gang".
9730
9731 2015-01-19  Eli Zaretskii  <eliz@gnu.org>
9732
9733         * configure.ac [*mingw32*]: Only add windows-termcap.o to
9734         CONFIG_OBS if not building with a curses library.
9735         * configure: Regenerate.
9736
9737         * windows-termcap.c: Include defs.h.  Make the whole body empty if
9738         either one of HAVE_CURSES_H or HAVE_NCURSES_H or
9739         HAVE_NCURSES_NCURSES_H is defined.
9740
9741 2015-01-19  Joel Brobecker  <brobecker@adacore.com>
9742
9743         * rs6000-tdep.c (rs6000_gdbarch_init): Move divide operator
9744         from end of line to start of next line.
9745
9746 2015-01-17  Wei-cheng Wang  <cole945@gmail.com>
9747
9748         * ppc-linux-tdep.c (ppc_skip_trampoline_code):
9749         Scan PLT stub backward for reverse debugging.
9750         * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
9751
9752 2015-01-17  Wei-cheng Wang  <cole945@gmail.com>
9753             Ulrich Weigand  <uweigand@de.ibm.com>
9754
9755         * configure.tgt (powerpc*-*-linux): Add linux-record.o to
9756         gdb_target_obs.
9757         (ppc_linux_record_tdep, ppc64_linux_record_tdep): New for linux syscall
9758         record.
9759         (ppc_canonicalize_syscall, ppc_linux_syscall_record,
9760         ppc_linux_record_signal, ppc_init_linux_record_tdep): New functions.
9761         (ppc_linux_init_abi): Set process_record, process_record_signal.
9762         * ppc-tdep.h (struct gdbarch_tdep): Add ppc_syscall_record and
9763         ppc_linux_record_tdep to gdbarch_tdep.
9764         (ppc_process_record): New declaration.
9765         * rs6000-tdep.c (ppc_record_vsr, ppc_process_record_op4,
9766         ppc_process_record_op19, ppc_process_record_op31,
9767         ppc_process_record_op59, ppc_process_record_op60,
9768         ppc_process_record_op63, ppc_process_record): New functions.
9769
9770 2015-01-17  Wei-cheng Wang  <cole945@gmail.com>
9771
9772         * rs6000-tdep.c (rs6000_in_function_epilogue_p): Rename to
9773         rs6000_in_function_epilogue_frame_p and add an argument
9774         for frame_info.
9775         (rs6000_epilogue_frame_cache, rs6000_epilogue_frame_this_id,
9776         rs6000_epilogue_frame_prev_register, rs6000_epilogue_frame_sniffer):
9777         New functions.
9778         (rs6000_epilogue_frame_unwind): New.
9779         (rs6000_gdbarch_init): Append epilogue unwinder.
9780
9781 2015-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
9782
9783         * nat/linux-personality.c: Replace "#ifndef
9784         HAVE_DECL_ADDR_NO_RANDOMIZE" by "#if
9785         !HAVE_DECL_ADDR_NO_RANDOMIZE", fixing a regression in RHEL-5
9786         systems.
9787
9788 2015-01-16  Eli Zaretskii  <eliz@gnu.org>
9789
9790         * tui/tui-win.c (tui_rehighlight_all, tui_set_var_cmd): New
9791         functions.
9792         (_initialize_tui_win) <border-kind, border-mode>:
9793         <active-border-mode>: Use tui_set_var_cmd as the "set" function.
9794         (tui_set_tab_width_command): Fix the commentary.
9795
9796         * tui/tui-win.h: Add prototype for tui_rehighlight_all.
9797
9798         * tui/tui-win.c (tui_scroll_left_command, tui_scroll_right_command):
9799         Doc fix.
9800         (tui_set_tab_width_command): Delete and recreate the source and
9801         the disassembly windows, to show the effect of the changed tab
9802         size immediately.
9803
9804         * tui/tui-data.h (LINE_PREFIX): Make shorter
9805         (MAX_PID_WIDTH): Enlarge from 14 to 19, to leave enough space for
9806         "Thread NNNNN.XXXX" thread ID notation on Windows.
9807
9808 2015-01-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
9809
9810         Fix gcc-5 compilation.
9811         * hppa-tdep.c (inst_saves_gr): Fix parentheses typo.
9812
9813 2015-01-15  Sergio Durigan Junior  <sergiodj@redhat.com>
9814
9815         * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-personality.h.
9816         (linux-personality.o): New rule.
9817         * common/common-defs.h: Include <stdint.h>.
9818         * config/aarch64/linux.mh (NATDEPFILES): Include
9819         linux-personality.o.
9820         * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
9821         * config/arm/linux.mh (NATDEPFILES): Likewise.
9822         * config/i386/linux64.mh (NATDEPFILES): Likewise.
9823         * config/i386/linux.mh (NATDEPFILES): Likewise.
9824         * config/ia64/linux.mh (NATDEPFILES): Likewise.
9825         * config/m32r/linux.mh (NATDEPFILES): Likewise.
9826         * config/m68k/linux.mh (NATDEPFILES): Likewise.
9827         * config/mips/linux.mh (NATDEPFILES): Likewise.
9828         * config/pa/linux.mh (NATDEPFILES): Likewise.
9829         * config/powerpc/linux.mh (NATDEPFILES): Likewise.
9830         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
9831         * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
9832         * config/s390/linux.mh (NATDEPFILES): Likewise.
9833         * config/sparc/linux64.mh (NATDEPFILES): Likewise.
9834         * config/sparc/linux.mh (NATDEPFILES): Likewise.
9835         * config/tilegx/linux.mh (NATDEPFILES): Likewise.
9836         * config/xtensa/linux.mh (NATDEPFILES): Likewise.
9837         * defs.h: Remove #include <stdint.h> (moved to
9838         common/common-defs.h).
9839         * linux-nat.c: Include nat/linux-personality.h.  Remove #include
9840         <sys/personality.h>; do not define ADDR_NO_RANDOMIZE (moved to
9841         nat/linux-personality.c).
9842         (linux_nat_create_inferior): Remove code to disable address space
9843         randomization (moved to nat/linux-personality.c).  Create cleanup
9844         to disable address space randomization.
9845         * nat/linux-personality.c: New file.
9846         * nat/linux-personality.h: Likewise.
9847
9848 2015-01-15  Sergio Durigan Junior  <sergiodj@redhat.com>
9849
9850         * Makefile.in (ALLDEPFILES): Including common/mingw-strerror.c and
9851         common/posix-strerror.c.
9852         (posix-strerror.o): New rule.
9853         (mingw-strerror.o): Likewise.
9854         * common/common-utils.h (safe_strerror): Move prototype to here,
9855         from utils.h.
9856         * common/common.host: New file.
9857         * common/mingw-strerror.c: Likewise.
9858         * common/posix-strerror.c: Likewise.
9859         * configure: Regenerated.
9860         * configure.ac: Source common/common.host.  Add variable
9861         common_host_obs to gdb_host_obs.
9862         * contrib/ari/gdb_ari.sh: Mention gdb/common/mingw-strerror.c and
9863         gdb/common/posix-strerror.c when warning about the use of
9864         strerror.
9865         * mingw-hdep.c (safe_strerror): Remove definition; move it to
9866         common/mingw-strerror.c.
9867         * posix-hdep.c (safe_strerror): Remove definition; move it to
9868         common/posix-hdep.c.
9869         * utils.h (safe_strerror): Remove prototype; move to
9870         common/common-utils.h.
9871
9872 2015-01-15  Joel Brobecker  <brobecker@adacore.com>
9873
9874         GDB 7.8.2 released.
9875
9876 2015-01-15  Joel Brobecker  <brobecker@adacore.com>
9877
9878         * ada-lang.c (ada_array_bound_from_type): Ignore array's parallel
9879         ___XA type if the array has already been fixed.
9880
9881 2015-01-14  Yao Qi  <yao@codesourcery.com>
9882
9883         * Makefile.in (ppc-linux.o): New rule.
9884         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Add ppc-linux.o.
9885         * configure.ac: AC_CHECK_FUNCS(getauxval).
9886         * config.in: Re-generated.
9887         * configure: Re-generated.
9888         * nat/ppc-linux.h [__powerpc64__] (ppc64_64bit_inferior_p):
9889         Declare.
9890         * nat/ppc-linux.c: New file.
9891         * ppc-linux-nat.c (ppc_linux_target_wordsize) [__powerpc64__]:
9892         Call ppc64_64bit_inferior_p.
9893
9894 2015-01-14  Yao Qi  <yao@codesourcery.com>
9895
9896         * ppc-linux-nat.c (PT_ORIG_R3, PT_TRAP): Move to
9897         nat/ppc-linux.h.
9898         (PPC_FEATURE_CELL, PPC_FEATURE_BOOKE): Likewise.
9899         (PPC_FEATURE_HAS_DFP): Likewise.
9900         (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Likewise.
9901         (PTRACE_GETVSXREGS, PTRACE_SETVSXREGS): Likewise.
9902         (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): Likewise.
9903         Include "nat/ppc-linux.h".
9904         * nat/ppc-linux.h: New file.
9905         * Makefile.in (HFILES_NO_SRCDIR): Add nat/ppc-linux.h.
9906
9907 2015-01-14  Pedro Alves  <palves@redhat.com>
9908
9909         PR gdb/17525
9910         * breakpoint.c: Include "interps.h".
9911         (bpstat_do_actions_1): Also check whether the interpreter is
9912         async.
9913
9914 2015-01-14  Pedro Alves  <palves@redhat.com>
9915
9916         PR cli/17828
9917         * infrun.c (reinstall_readline_callback_handler_cleanup): Don't
9918         reinstall if the interpreter is sync.
9919
9920 2015-01-13  Doug Evans  <dje@google.com>
9921
9922         * objfiles.c (objfile_filename): New function.
9923         * objfiles.h (objfile_filename): Declare it.
9924         (objfile_name): Add function comment.
9925         * python/py-objfile.c (objfpy_lookup_objfile_by_name): Try both the
9926         bfd file name (which may be realpath'd), and the original name.
9927
9928 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
9929
9930         * NEWS: Create a new section for the next release branch.
9931         Rename the section of the current branch, now that it has
9932         been cut.
9933
9934 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
9935
9936         GDB 7.9 branch created (92fc2e6978d9a7c8324c7e851dbee59e22ec7a37):
9937         * version.in: Bump version to 7.9.50.DATE-cvs.
9938
9939 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
9940
9941         * nat/linux-procfs.c (linux_proc_attach_tgid_threads):
9942         Remove trailing new-line in argument of call to warning.
9943
9944 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
9945
9946         * linux-nat.c (attach_proc_task_lwp_callback): Remove trailing
9947         new-line in argument of call to "warning".
9948
9949 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
9950
9951         * ada-lang.c (ada_lookup_symbol_nonlocal): If name not found
9952         in static block, then try searching for primitive types.
9953
9954 2015-01-12  Patrick Palka  <patrick@parcs.ath.cx>
9955
9956         * top.h (gdb_add_history): Declare.
9957         * top.c (command_count): New variable.
9958         (gdb_add_history): New function.
9959         (gdb_safe_append_history): New static function.
9960         (quit_force): Call it.
9961         (command_line_input): Use gdb_add_history instead of
9962         add_history.
9963         * event-top.c (command_line_handler): Likewise.
9964
9965 2015-01-12  James Clarke  <jrtc27@jrtc27.com>  (tiny patch)
9966
9967         PR gdb/17046
9968         * darwin-nat.c: Replace <machine/setjmp.h> #include by
9969         <setjmp.h> #include.
9970
9971 2015-01-11  Doug Evans  <xdje42@gmail.com>
9972
9973         * dwarf2read.c (compute_delayed_physnames): Use TYPE_FN_FIELD_PHYSNAME.
9974
9975 2015-01-11  Doug Evans  <xdje42@gmail.com>
9976
9977         PR gdb/15830
9978         * NEWS: The "maint demangle" command is renamed as "demangle".
9979         * demangle.c: #include cli/cli-utils.h, language.h.
9980         (demangle_command): New function.
9981         (_initialize_demangle): Add new command "demangle".
9982         * maint.c (maintenance_demangle): Stub out.
9983         (_initialize_maint_cmds): Update help text for "maint demangle",
9984         and mark as deprecated.
9985
9986 2015-01-11  Mark Kettenis  <kettenis@gnu.org>
9987
9988         * inf-ptrace.c (inf_ptrace_follow_fork): Adjust now that
9989         inferior_thread is a function.
9990
9991 2015-01-09  Patrick Palka  <patrick@parcs.ath.cx>
9992
9993         * Makefile.in (.y.c): Don't munge yacc's #line
9994         directives.
9995
9996 2015-01-09  Patrick Palka  <patrick@parcs.ath.cx>
9997
9998         * utils.c (defaulted_query): Rewrite to use gdb_readline_wrapper
9999         to prompt for input.
10000         * tui/tui-hooks.c (tui_query_hook): Remove.
10001         (tui_install_hooks): Don't set deprecated_query_hook.
10002         * tui/tui-io.c (tui_redisplay_readline): Fix off-by-one error in
10003         height calculation.  Always update the command window's cur_line.
10004
10005 2015-01-09  Pedro Alves  <palves@redhat.com>
10006
10007         * breakpoint.c (hardware_breakpoint_inserted_here_p): New
10008         function.
10009         * breakpoint.h (hardware_breakpoint_inserted_here_p): New
10010         declaration.
10011         * linux-nat.c (linux_nat_status_is_event): Move higher up in file.
10012         (linux_resume_one_lwp): Store the thread's PC.  Adjust to clear
10013         stop_reason.
10014         (check_stopped_by_watchpoint): New function.
10015         (save_sigtrap): Reimplement.
10016         (linux_nat_stopped_by_watchpoint): Adjust.
10017         (linux_nat_lp_status_is_event): Delete.
10018         (stop_wait_callback): Only call save_sigtrap after storing the
10019         pending status.
10020         (status_callback): If the thread had been stopped for a breakpoint
10021         that has since been removed, discard the event and resume the LWP.
10022         (count_events_callback, select_event_lwp_callback): Use
10023         lwp_status_pending_p instead of linux_nat_lp_status_is_event.
10024         (cancel_breakpoint): Rename to ...
10025         (check_stopped_by_breakpoint): ... this.  Record whether the LWP
10026         stopped for a software breakpoint or hardware breakpoint.
10027         (select_event_lwp): Only give preference to the stepping LWP in
10028         all-stop mode.  Adjust comments.
10029         (stop_and_resume_callback): Remove references to new_pending_p.
10030         (linux_nat_filter_event): Likewise.  Leave exit events of the
10031         leader thread pending here.  Handle signal short circuiting here.
10032         Only call save_sigtrap after storing the pending waitstatus.
10033         (linux_nat_wait_1): Remove 'retry' label.  Remove references to
10034         new_pending.  Don't handle leaving events the caller is not
10035         interested in pending here, nor handle signal short-circuiting
10036         here.  Also give equal priority to all LWPs that have had events
10037         in non-stop mode.  If reporting a software breakpoint event,
10038         unadjust the LWP's PC.
10039         * linux-nat.h (enum lwp_stop_reason): New.
10040         (struct lwp_info) <stop_pc>: New field.
10041         (struct lwp_info) <stopped_by_watchpoint>: Delete field.
10042         (struct lwp_info) <stop_reason>: New field.
10043         * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
10044
10045 2015-01-09  Pedro Alves  <palves@redhat.com>
10046
10047         * linux-nat.c (linux_handle_extended_wait) <PTRACE_EVENT_EXEC>:
10048         Set the LWP's 'resumed' flag.
10049
10050 2015-01-09  Pedro Alves  <palves@redhat.com>
10051
10052         * linux-nat.c (linux_resume_one_lwp): New function.
10053         (resume_lwp): Use lwp_status_pending_p and linux_resume_one_lwp.
10054         (linux_nat_resume): Use lwp_status_pending_p and
10055         linux_resume_one_lwp.
10056         (linux_handle_syscall_trap): Use linux_resume_one_lwp.
10057         (linux_handle_extended_wait): Use linux_resume_one_lwp.
10058         (status_callback, running_callback): Use lwp_status_pending_p.
10059         (lwp_status_pending_p): New function.
10060         (stop_and_resume_callback): Use lwp_status_pending_p.
10061         (linux_nat_filter_event): Use linux_resume_one_lwp.
10062         (linux_nat_wait_1): Always use status_callback to look for an LWP
10063         with a pending status.  Use linux_resume_one_lwp.
10064         (resume_stopped_resumed_lwps): Use lwp_status_pending_p and
10065         linux_resume_one_lwp.
10066
10067 2015-01-09  Pedro Alves  <palves@redhat.com>
10068
10069         * breakpoint.c (bp_location_inserted_here_p): New function,
10070         factored out from ...
10071         (breakpoint_inserted_here_p): ... here.  Use
10072         ALL_BP_LOCATIONS_AT_ADDR.
10073         (software_breakpoint_inserted_here_p): Use
10074         bp_location_inserted_here_p and ALL_BP_LOCATIONS_AT_ADDR.
10075
10076 2014-01-09  Pedro Alves  <palves@redhat.com>
10077
10078         Skip enabling event reporting if the kernel supports
10079         PTRACE_EVENT_CLONE.
10080         * linux-thread-db.c: Include "nat/linux-ptrace.h".
10081         (thread_db_use_events): New function.
10082         (try_thread_db_load_1): Check thread_db_use_events before enabling
10083         event reporting.
10084         (update_thread_state): New function.
10085         (attach_thread): Use it.  Check thread_db_use_events before
10086         enabling event reporting.
10087         (thread_db_detach): Check thread_db_use_events before disabling
10088         event reporting.
10089         (find_new_threads_callback): Check thread_db_use_events before
10090         enabling event reporting.  Update the thread's state if not using
10091         libthread_db events.
10092
10093 2015-01-09  Pedro Alves  <palves@redhat.com>
10094
10095         * linux-nat.c (lin_lwp_attach_lwp): Assert that the lwp id we're
10096         about to wait for is > 0.
10097         * linux-thread-db.c (find_new_threads_callback): Ignore thread if
10098         the kernel thread ID is -1.
10099
10100 2015-01-09  Pedro Alves  <palves@redhat.com>
10101
10102         * linux-nat.c (attach_proc_task_lwp_callback): New function.
10103         (linux_nat_attach): Use linux_proc_attach_tgid_threads.
10104         (wait_lwp, linux_nat_filter_event): If not set yet, set the lwp's
10105         ptrace option flags.
10106         * linux-nat.h (struct lwp_info) <must_set_ptrace_flags>: New
10107         field.
10108         * nat/linux-procfs.c: Include <dirent.h>.
10109         (linux_proc_get_int): New parameter "warn".  Handle it.
10110         (linux_proc_get_tgid): Adjust.
10111         (linux_proc_get_tracerpid): Rename to ...
10112         (linux_proc_get_tracerpid_nowarn): ... this.
10113         (linux_proc_pid_get_state): New function, factored out from
10114         (linux_proc_pid_has_state): ... this.  Add new parameter "warn"
10115         and handle it.
10116         (linux_proc_pid_is_gone): New function.
10117         (linux_proc_pid_is_stopped): Adjust.
10118         (linux_proc_pid_is_zombie_maybe_warn)
10119         (linux_proc_pid_is_zombie_nowarn): New functions.
10120         (linux_proc_pid_is_zombie): Use
10121         linux_proc_pid_is_zombie_maybe_warn.
10122         (linux_proc_attach_tgid_threads): New function.
10123         * nat/linux-procfs.h (linux_proc_get_tgid): Update comment.
10124         (linux_proc_get_tracerpid): Rename to ...
10125         (linux_proc_get_tracerpid_nowarn): ... this, and update comment.
10126         (linux_proc_pid_is_gone): New declaration.
10127         (linux_proc_pid_is_zombie): Update comment.
10128         (linux_proc_pid_is_zombie_nowarn): New declaration.
10129         (linux_proc_attach_lwp_func): New typedef.
10130         (linux_proc_attach_tgid_threads): New declaration.
10131         * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason): Adjust to
10132         use nowarn functions.
10133         (linux_ptrace_attach_fail_reason_string): Move here from
10134         gdbserver/linux-low.c and rename.
10135         (ptrace_supports_feature): If the current ptrace options are not
10136         known yet, check them now, instead of asserting.
10137         * nat/linux-ptrace.h (linux_ptrace_attach_fail_reason_string):
10138         Declare.
10139
10140 2015-01-09  Pedro Alves  <palves@redhat.com>
10141
10142         * linux-thread-db.c (thread_db_find_new_threads_silently)
10143         (try_thread_db_load_1, try_thread_db_load, thread_db_load_search)
10144         (find_new_threads_once): Print debug output on gdb_stdlog.
10145
10146 2015-01-09  Chen Gang  <gang.chen.5i5j@gmail.com>
10147             Pedro Alves  <palves@redhat.com>
10148
10149         * compile/compile.c: Include "gdb_wait.h".
10150         (do_rmdir): Check return value, and free 'zap'.
10151
10152 2015-01-08  Pedro Alves  <palves@redhat.com>
10153             Yao Qi  <yao@codesourcery.com>
10154
10155         * dwarf2loc.c (indirect_pieced_value): Don't call
10156         gdb_sign_extend.  Call extract_signed_integer instead.
10157         * utils.c (gdb_sign_extend): Remove.
10158         * utils.h (gdb_sign_extend): Remove declaration.
10159
10160 2015-01-07  Pierre Muller  <muller@sourceware.org>
10161
10162         PR symtab/17811
10163         * stabsread.c (define_symbol): Set language for C++ special symbols.
10164
10165 2015-01-07  Patrick Palka  <patrick@parcs.ath.cx>
10166
10167         * inflow.c (initial_gdb_ttystate): Tweak comment.
10168
10169 2015-01-07  Joel Brobecker  <brobecker@adacore.com>
10170
10171         * inflow.c (set_initial_gdb_ttystate): Add empty line after
10172         comment documenting function.
10173
10174 2015-01-07  Patrick Palka  <patrick@parcs.ath.cx>
10175
10176         * terminal.h (set_initial_gdb_ttystate): Declare.
10177         * inflow.c (initial_gdb_ttystate): New static variable.
10178         (set_initial_gdb_ttystate): New setter.
10179         (child_terminal_init_with_pgrp): Copy initial_gdb_ttystate
10180         instead of our current terminal state.
10181         * top.c (gdb_init): Call set_initial_gdb_ttystate.
10182
10183 2015-01-07  Joel Brobecker  <brobecker@adacore.com>
10184
10185         * guile/scm-type.c (tyscm_array_1): Add comment.
10186         * python/py-type.c (typy_array_1): Add comment.
10187
10188 2015-01-06  Joel Brobecker  <brobecker@adacore.com>
10189
10190         * guile/scm-type.c (tyscm_array_1): Do not raise out-of-range
10191         error if N2 is equal to N1 - 1.
10192
10193 2015-01-06  Joel Brobecker  <brobecker@adacore.com>
10194
10195         * python/py-type.c (typy_array_1): Do not raise negative-length
10196         exception if N2 is equal to N1 - 1.
10197
10198 2015-01-03  Doug Evans  <xdje42@gmail.com>
10199
10200         * c-exp.y: Whitespace cleanup.
10201         (classify_inner_name): Remove extra ;.
10202
10203 2015-01-02  Maciej W. Rozycki  <macro@codesourcery.com>
10204
10205         * mips-tdep.c (mips32_scan_prologue): Keep the extracted stack
10206         offset signed.
10207
10208 2015-01-02  Doug Evans  <dje@google.com>
10209
10210         * dwarf2read.c (setup_type_unit_groups): Remove outdated comment.
10211
10212 2015-01-02  Doug Evans  <dje@google.com>
10213
10214         * symtab.h (struct symbol): Fix typo in comment.
10215
10216 2015-01-01  Joel Brobecker  <brobecker@adacore.com>
10217
10218         Update year range in copyright notice of all files.
10219
10220 2015-01-01  Joel Brobecker  <brobecker@adacore.com>
10221
10222         * top.c (print_gdb_version): Update copyright year to 2015.
10223
10224 2015-01-01  Joel Brobecker  <brobecker@adacore.com>
10225
10226         * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2014.
10227
10228 For older changes see ChangeLog-2014.
10229 \f
10230 Local Variables:
10231 mode: change-log
10232 left-margin: 8
10233 fill-column: 74
10234 version-control: never
10235 coding: utf-8
10236 End: