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