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