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