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