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