bad45aa2ffcbf37d3d9ba12e2f4fd726bfeede3c
[external/binutils.git] / gdb / ChangeLog
1 2016-06-21  Pedro Alves  <palves@redhat.com>
2
3         * cli/cli-interp.c (cli_interpreter_pre_command_loop): New
4         function.
5         (cli_interp_procs): Install it instead of cli_command_loop.
6         * cli/cli-interp.h (cli_interpreter_pre_command_loop): Declare.
7         * event-top.c (cli_command_loop): Delete.
8         * interps.c (interp_new): Remove reference to command_loop_proc.
9         (current_interp_command_loop): Delete.
10         (interp_pre_command_loop): New function.
11         (interp_command_loop_ftype): Delete.
12         * interps.h (interp_pre_command_loop_ftype): New typedef.
13         (struct interp_procs) <command_loop_proc>: Delele field.
14         <pre_command_loop_proc>: New field.
15         (current_interp_command_loop): Delete declaration.
16         (interp_pre_command_loop): New declaration.
17         * main.c (captured_command_loop): Call interp_pre_command_loop
18         instead of current_interp_command_loop and start an event loop.
19         * mi/mi-interp.c (mi_command_loop): Delete.
20         (mi_interpreter_pre_command_loop): New.
21         (mi_interp_procs): Update.
22         * tui/tui-interp.c (tui_interp_procs): Install
23         cli_interpreter_pre_command_loop instead of cli_command_loop.
24
25 2016-06-21  Pedro Alves  <palves@redhat.com>
26
27         * interps.c (current_interpreter): New function.
28         * interps.h (current_interpreter): New declaration.
29         * mi/mi-cmds.h (raw_stdout): Delete declaration.
30         * mi/mi-common.h (struct mi_interp) <raw_stdout,
31         saved_raw_stdout>: New field.
32         * mi/mi-interp.c (display_mi_prompt): New parameter 'mi'.  Adjust
33         to per-UI raw_stdout.
34         (mi_interpreter_init): Adjust to per-UI raw_stdout.
35         (mi_on_sync_execution_done, mi_execute_command_input_handler)
36         (mi_command_loop): Pass MI instance to display_mi_prompt.
37         (mi_on_normal_stop_1, mi_output_running_pid, mi_on_resume_1)
38         (mi_on_resume): Adjust to per-UI raw_stdout.
39         (saved_raw_stdout): Delete.
40         (mi_set_logging): Adjust to per-UI raw_stdout and
41         saved_raw_stdout.
42         * mi/mi-main.c (raw_stdout): Delete.
43         (mi_cmd_gdb_exit, captured_mi_execute_command)
44         (mi_print_exception, mi_load_progress): Adjust to per-UI
45         raw_stdout.
46         (print_diff_now, mi_print_timing_maybe): New ui_file parameter.
47         Pass it along.
48         (print_diff): New ui_file parameter.  Send output there instead of
49         raw_stdout.
50         * mi/mi-main.h (struct ui_file): Forward declare.
51         (mi_print_timing_maybe): Add ui_file parameter.
52
53 2016-06-21  Pedro Alves  <palves@redhat.com>
54
55         * mi/mi-interp.c (display_mi_prompt): New function.
56
57 2016-06-21  Pedro Alves  <palves@redhat.com>
58
59         * target.c (target_terminal_inferior): Bail out after
60         unregistering input_fd if not on the main UI.
61         (target_terminal_ours): Bail out after registering input_fd if not
62         on the main UI.
63         (target_terminal_ours_for_output): Bail out if not on the main UI.
64
65 2016-06-21  Pedro Alves  <palves@redhat.com>
66
67         * event-top.c (restore_ui_cleanup): Make extern.
68         * infrun.c (fetch_inferior_event): Always switch to the main UI.
69         * top.h (restore_ui_cleanup): Declare.
70
71 2016-06-21  Pedro Alves  <palves@redhat.com>
72
73         PR mi/20034
74         * cli/cli-interp.c: Include cli-interp.h and event-top.h.
75         (cli_interpreter_resume): Pass 1 to gdb_setup_readline.  Set the
76         UI's input_handler here.
77         (cli_interpreter_supports_command_editing): New function.
78         (cli_interp_procs): Install it.
79         * cli/cli-interp.h: New file.
80         * event-top.c (async_command_editing_p): Rename to ...
81         (set_editing_cmd_var): ... this.
82         (change_line_handler): Add parameter 'editing', and use it.  Bail
83         early if the interpreter doesn't support editing.  Don't touch
84         readline state if editing is off.
85         (gdb_rl_callback_handler_remove, gdb_rl_callback_handler_install)
86         (gdb_rl_callback_handler_reinstall): Assert the current UI is the
87         main UI.
88         (display_gdb_prompt): Don't call gdb_rl_callback_handler_remove if
89         not using readline.  Check whether the current UI is using command
90         editing instead of checking the async_command_editing_p global.
91         (set_async_editing_command): Delete.
92         (gdb_setup_readline): Add 'editing' parameter.  Only allow editing
93         on the main UI.  Don't touch readline state if editing is off.
94         (gdb_disable_readline): Don't touch readline state if editing is
95         off.
96         * event-top.h (gdb_setup_readline): Add 'int' parameter.
97         (set_async_editing_command): Delete declaration.
98         (change_line_handler, command_line_handler): Declare.
99         (async_command_editing_p): Rename to ...
100         (set_editing_cmd_var): ... this.
101         * infrun.c (reinstall_readline_callback_handler_cleanup): Check
102         whether the current UI has editing enabled rather than checking
103         the async_command_editing_p global.
104         * interps.c (interp_supports_command_editing): New function.
105         * interps.h (interp_supports_command_editing_ftype): New typedef.
106         (struct interp_procs) <supports_command_editing_proc>: New field.
107         (interp_supports_command_editing): Declare.
108         * mi/mi-interp.c (mi_interpreter_resume): Pass 0 to
109         gdb_setup_readline.  Don't clear the async_command_editing_p
110         global.  Update comments.
111         * top.c (gdb_readline_wrapper_line, gdb_readline_wrapper): Check
112         whether the current UI has editing enabled rather than checking
113         the async_command_editing_p global.  Don't touch readline state if
114         editing is off.
115         (undo_terminal_modifications_before_exit): Switch to the main UI.
116         Unconditionally call gdb_disable_readline.
117         (set_editing): New function.
118         (show_async_command_editing_p): Rename to ...
119         (show_editing): ... this.  Show the state of the current UI.
120         (_initialize_top): Adjust.
121         * top.h (struct ui) <command_editing>: New field.
122         * tui/tui-interp.c: Include cli/cli-interp.h.
123         (tui_resume): Pass 1 to gdb_setup_readline.  Set the UI's
124         input_handler.
125         (tui_interp_procs): Install
126         cli_interpreter_supports_command_editing.
127         * tui/tui-io.c (tui_getc): Check whether the current UI has
128         editing enabled rather than checking the async_command_editing_p
129         global.
130
131 2016-06-21  Pedro Alves  <palves@redhat.com>
132
133         * top.c: Call gen_ret_current_ui_field_ptr for current_uiout.
134         * top.h (struct ui) <m_current_uiout>: New field.
135         * ui-out.c (current_uiout): Delete.
136         * ui-out.h (current_uiout): Delete.
137         (current_ui_current_uiout_ptr): New declaration.
138         (current_uiout): Reimplement as wrapper around
139         current_ui_current_uiout_ptr.
140
141 2016-06-21  Pedro Alves  <palves@redhat.com>
142
143         * ui-out.c (default_ui_out_impl): Delete.
144         (def_uiout): Delete.
145         (current_uiout): Set to NULL.
146         (default_table_begin, default_table_body, default_table_end)
147         (default_table_header, default_begin, default_end)
148         (default_field_int, default_field_skip, default_field_string)
149         (default_field_fmt, default_spaces, default_text, default_message)
150         (default_wrap_hint, default_flush, default_data_destroy): Delete.
151
152 2016-06-21  Pedro Alves  <palves@redhat.com>
153
154         * event-top.c (gdb_setup_readline): Pass the UI's outstream and
155         errstream to stdout_fileopen and stderr_fileopen.
156         * exceptions.c: Include top.h.
157         (print_flush): Open the current UI's outstream file descriptor,
158         instead of hardcoding file descriptor 1.
159         * main.c (captured_main): Save the main UI's out and error
160         streams.  Adjust stderr_fileopen call.
161         * top.h (struct ui) <outstream, errstream>: New fields.
162         * ui-file.c (stderr_fileopen): Add stream parameter.  Use it
163         instead of stderr.
164         * ui-file.h (stderr_fileopen): Add stream parameter and update
165         comment.
166
167 2016-06-21  Pedro Alves  <palves@redhat.com>
168
169         * event-top.c (input_fd): Delete.
170         (stdin_event_handler): Switch to the UI whose input descriptor got
171         the event.  Adjust to per-UI input_fd.
172         (gdb_setup_readline): Don't set the input_fd global.  Adjust to
173         per-UI input_fd.
174         (gdb_disable_readline): Adjust to per-UI input_fd.
175         * event-top.h (input_fd): Delete declaration.
176         * linux-nat.c (linux_nat_terminal_inferior): Don't remove input_fd
177         from the event-loop here.
178         (linux_nat_terminal_ours): Don't register input_fd in the
179         event-loop here.
180         * main.c (captured_main): Adjust to per-UI input_fd.
181         * remote.c (remote_terminal_inferior): Don't remove input_fd from
182         the event-loop here.
183         (remote_terminal_ours): Don't register input_fd in the event-loop
184         here.
185         * target.c: Include top.h and event-top.h.
186         (target_terminal_inferior): Remove input_fd from the event-loop
187         here.
188         (target_terminal_ours): Register input_fd in the event-loop.
189         * top.h (struct ui) <input_fd>: New field.
190
191 2016-06-21  Pedro Alves  <palves@redhat.com>
192
193         * cli/cli-script.c (execute_user_command, read_next_line)
194         (read_next_line): Adjust to per-UI instream.
195         * event-top.c (stdin_event_handler, command_handler)
196         (handle_line_of_input, command_line_handler)
197         (gdb_readline_no_editing_callback, async_sigterm_handler)
198         (gdb_setup_readline): Likewise.
199         * inflow.c: Include top.h.
200         (gdb_has_a_terminal, child_terminal_init_with_pgrp)
201         (gdb_save_tty_state, child_terminal_inferior)
202         (child_terminal_ours_1, copy_terminal_info): Use the main UI.
203         (initialize_stdin_serial): Adjust to per-UI instream.
204         * main.c (captured_command_loop, captured_main): Adjust to per-UI
205         instream.
206         * mi/mi-interp.c (mi_execute_command_wrapper): Likewise.
207         * python/python.c (python_interactive_command): Likewise.
208         * terminal.h (struct ui): Forward declare.
209         (initialize_stdin_serial): Add struct ui parameter.
210         * top.c (instream): Delete.
211         (do_restore_instream_cleanup, read_command_file, dont_repeat)
212         (gdb_readline_no_editing, command_line_input)
213         (input_from_terminal_p, gdb_init): Adjust to per-UI instream.
214         * top.h (struct ui) <instream>: New field.
215         (instream): Delete declaration.
216         (quit): Adjust to per-UI instream.
217
218 2016-06-21  Pedro Alves  <palves@redhat.com>
219
220         * event-loop.c: Include top.h.
221         (invoke_async_signal_handlers): Switch to the main UI.
222         * event-top.c (main_ui_): Update comment.
223         (main_ui): New global.
224         * top.h (main_ui): Declare.
225
226 2016-06-21  Pedro Alves  <palves@redhat.com>
227
228         * cli/cli-interp.c (cli_interp): Delete.
229         (as_cli_interp): New function.
230         (cli_on_normal_stop, cli_on_signal_received)
231         (cli_on_end_stepping_range, cli_on_signal_exited, cli_on_exited)
232         (cli_on_no_history): Send output to all CLI UIs.
233         (cli_on_sync_execution_done, cli_on_command_error): Skip output if
234         the top level interpreter is not a CLI.
235         (cli_interpreter_init): Don't set cli_interp or install observers
236         here.
237         (_initialize_cli_interp): Install observers here.
238         * event-top.c (main_ui_, ui_list): New globals.
239         (current_ui): Point to main_ui_.
240         (restore_ui_cleanup, switch_thru_all_uis_init)
241         (switch_thru_all_uis_cond, switch_thru_all_uis_next): New
242         functions.
243         * mi/mi-interp.c (as_mi_interp): New function.
244         (mi_interpreter_init): Don't install observers here.
245         (mi_on_sync_execution_done): Skip output if the top level
246         interpreter is not a MI.
247         (mi_new_thread, mi_thread_exit, mi_record_changed)
248         (mi_inferior_added, mi_inferior_appeared, mi_inferior_exit)
249         (mi_inferior_removed): Send output to all MI UIs.
250         (find_mi_interpreter, mi_interp_data): Delete.
251         (find_mi_interp): New function.
252         (mi_on_signal_received, mi_on_end_stepping_range)
253         (mi_on_signal_exited, mi_on_exited, mi_on_no_history): Send output
254         to all MI UIs.
255         (mi_on_normal_stop): Rename to ...
256         (mi_on_normal_stop_1): ... this.
257         (mi_on_normal_stop): Reimplement, sending output to all MI UIs.
258         (mi_traceframe_changed, mi_tsv_created, mi_tsv_deleted)
259         (mi_tsv_modified, mi_breakpoint_created, mi_breakpoint_deleted)
260         (mi_breakpoint_modified, mi_output_running_pid): Send output to
261         all MI UIs.
262         (mi_on_resume): Rename to ...
263         (mi_on_resume_1): ... this.  Don't handle infcalls here.
264         (mi_on_resume): Reimplement, sending output to all MI UIs.
265         (mi_solib_loaded, mi_solib_unloaded, mi_command_param_changed)
266         (mi_memory_changed): Send output to all MI UIs.
267         (report_initial_inferior): Install observers here.
268         * top.h (struct ui) <next>: New field.
269         (ui_list): Declare.
270         (struct switch_thru_all_uis): New.
271         (switch_thru_all_uis_init, switch_thru_all_uis_cond)
272         (switch_thru_all_uis_next): Declare.
273         (SWITCH_THRU_ALL_UIS): New macro.
274         * tui/tui-interp.c (tui_interp): Delete global.
275         (as_tui_interp): New function.
276         (tui_on_normal_stop, tui_on_signal_received)
277         (tui_on_end_stepping_range, tui_on_signal_exited, tui_on_exited)
278         (tui_on_no_history): Send output to all TUI UIs.
279         (tui_on_sync_execution_done, tui_on_command_error): Skip output if
280         the top level interpreter is not a TUI.
281         (tui_init): Don't set tui_interp or install observers here.
282         (_initialize_tui_interp): Install observers here.
283
284 2016-06-21  Pedro Alves  <palves@redhat.com>
285
286         * cli/cli-interp.c (cli_uiout): Delete, moved into ...
287         (struct cli_interp): ... this new structure.
288         (cli_on_normal_stop, cli_on_signal_received)
289         (cli_on_end_stepping_range, cli_on_signal_exited, cli_on_exited)
290         (cli_on_no_history): Use interp_ui_out.
291         (cli_interpreter_init): If top level, set the cli_interp global.
292         (cli_interpreter_init): Return the interp's data instead of NULL.
293         (cli_interpreter_resume, cli_interpreter_exec, cli_ui_out): Adjust
294         to cli_uiout being in the interpreter's data.
295         (cli_interp_procs): New, factored out from _initialize_cli_interp.
296         (cli_interp_factory): New function.
297         (_initialize_cli_interp): Call interp_factory_register.
298         * interps.c (get_interp_info): New, factored out from ...
299         (get_current_interp_info): ... this.
300         (interp_new): Add parameter 'data'.  Store it.
301         (struct interp_factory): New function.
302         (interp_factory_p): New typedef.  Define a VEC_P.
303         (interpreter_factories): New global.
304         (interp_factory_register): New function.
305         (interp_add): Add 'ui' parameter.  Use get_interp_info and
306         interp_lookup_existing.
307         (interp_lookup): Rename to ...
308         (interp_lookup_existing): ... this.  Add 'ui' parameter.  Don't
309         check for NULL or empty name here.
310         (interp_lookup): Add 'ui' parameter and reimplement.
311         (interp_set_temp, interpreter_exec_cmd): Adjust.
312         (interpreter_completer): Complete on registered interpreter
313         factories instead of interpreters.
314         * interps.h (interp_factory_func): New typedef.
315         (interp_factory_register): Declare.
316         (interp_new, interp_add): Adjust.
317         (interp_lookup): Declare.
318         * main.c (captured_main): Adjust.
319         * mi/mi-interp.c (mi_cmd_interpreter_exec): Adjust.
320         (mi_interp_procs): New, factored out from
321         _initialize_mi_interp.
322         (mi_interp_factory): New function.
323         * python/python.c (execute_gdb_command): Adjust.
324         * tui/tui-interp.c (tui_init): If top level, set the tui_interp
325         global.
326         (tui_interp_procs): New.
327         (tui_interp_factory): New function.
328         (_initialize_tui_interp): Call interp_factory_register.
329
330 2016-06-21  Pedro Alves  <palves@redhat.com>
331
332         * breakpoint.c (bpstat_do_actions_1): Access the current UI's
333         async field instead of the interpreter_async global.
334         * cli/cli-script.c (execute_user_command, while_command)
335         (if_command, script_from_file): Likewise.
336         * compile/compile.c: Include top.h instead of interps.h.
337         (compile_file_command, compile_code_command)
338         (compile_print_command): Access the current UI's async field
339         instead of the interpreter_async global.
340         * guile/guile.c: Include top.h instead of interps.h.
341         (guile_repl_command, guile_command, gdbscm_execute_gdb_command):
342         Access the current UI's async field instead of the
343         interpreter_async global.
344         * guile/scm-ports.c: Include top.h instead of interps.h.
345         (ioscm_with_output_to_port_worker): Access the current UI's async
346         field instead of the interpreter_async global.
347         * inf-loop.c (inferior_event_handler): Likewise.
348         * infcall.c (run_inferior_call): Likewise.
349         * infrun.c (reinstall_readline_callback_handler_cleanup)
350         (fetch_inferior_event): Likewise.
351         * interps.c (interpreter_async): Delete.
352         (struct ui_interp_info): New.
353         (get_current_interp_info): New function.
354         (interp_list, current_interpreter, top_level_interpreter_ptr):
355         Delete.
356         (interp_add, interp_set, interp_lookup, interp_ui_out)
357         (current_interp_set_logging, interp_set_temp)
358         (current_interp_named_p): Adjust to per-UI interpreters.
359         (command_interpreter): Delete.
360         (command_interp, current_interp_command_loop, interp_quiet_p)
361         (interp_exec, interpreter_exec_cmd, interpreter_completer)
362         (top_level_interpreter, top_level_interpreter_data): Adjust to
363         per-UI interpreters.
364         * interps.h (interpreter_async): Delete.
365         * main.c (captured_command_loop): Access the current UI's async
366         field instead of the interpreter_async global.
367         * python/python.c (python_interactive_command, python_command)
368         (execute_gdb_command): Likewise.
369         * top.c (maybe_wait_sync_command_done, execute_command_to_string):
370         Access the current UI's async field instead of the
371         interpreter_async global.
372         * top.h (struct tl_interp_info): Forward declare.
373         (struct ui) <interp_info, async>: New fields.
374
375 2016-06-21  Pedro Alves  <palves@redhat.com>
376
377         * main.c (gdb_stdout, gdb_stderr, gdb_stdlog, gdb_stdin): Delete
378         globals.
379         (gen_ret_current_ui_field_ptr): New macro.  Use it to generate
380         wrappers for gdb_stdout, gdb_stderr, gdb_stdlog and gdb_stdin.
381         * top.h (struct ui) <m_gdb_stdout, m_gdb_stdin, m_gdb_stderr,
382         m_gdb_stdlog>: New fields.
383         (current_ui_gdb_stdout_ptr, current_ui_gdb_stdin_ptr)
384         (current_ui_gdb_stderr_ptr, current_ui_gdb_stdlog_ptr): Declare.
385         (gdb_stdout, gdb_stdin, gdb_stderr, gdb_stdlog): Reimplement as
386         macros.
387
388 2016-06-21  Pedro Alves  <palves@redhat.com>
389
390         * event-top.c: Update readline-related comments.
391         (input_handler, call_readline): Delete globals.
392         (gdb_rl_callback_handler): Call the current UI's input_handler
393         method.
394         (change_line_handler): Adjust to set current UI's properties
395         instead of globals.
396         (current_ui_, current_ui): New globals.
397         (get_command_line_buffer): Rewrite to refer to the current UI.
398         (stdin_event_handler): Adjust to call the call_readline method of
399         the current UI.
400         (gdb_readline_no_editing_callback): Adjust to call the current UI's
401         input_handler method.
402         (gdb_setup_readline): Adjust to set current UI's properties
403         instead of globals.
404         * event-top.h (call_readline, input_handler): Delete declarations.
405         * mi/mi-interp.c (mi_interpreter_resume): Adjust to set current
406         UI's properties instead of globals.
407         * top.c (gdb_readline_wrapper_cleanup): Adjust to set current UI's
408         properties instead of globals.
409         (gdb_readline_wrapper): Adjust to call and set current UI's
410         methods instead of globals.
411         * top.h: Include buffer.h and event-loop.h.
412         (struct ui): New struct.
413         (current_ui): New declaration.
414
415 2016-06-21  Pedro Alves  <palves@redhat.com>
416
417         * ada-lang.c (ada_exception_name_addr_1): Add comment.
418         (print_it_exception): Select the current frame.
419
420 2016-06-17  Yan-Ting Lin  <currygt52@gmail.com>
421
422         * Makefile.in (ALL_TARGET_OBS): Add nds32-tdep.o.
423         (HFILES_NO_SRCDIR): Add nds32-tdep.h.
424         (ALLDEPFILES): Add nds32-tdep.c.
425         * NEWS: Mention new NDS32 port.
426         * configure.tgt: Add NDS32.
427         * nds32-tdep.c: New file.
428         * nds32-tdep.h: New file.
429         * features/Makefile (XMLTOC): Add nds32.xml.
430         * features/nds32-core.xml: New file.
431         * features/nds32-fpu.xml: New file.
432         * features/nds32-system.xml: New file.
433         * features/nds32.c: New file (generated).
434         * features/nds32.xml: New file.
435
436 2016-06-14  John Baldwin  <jhb@FreeBSD.org>
437
438         * v850-tdep.c (v850_use_struct_convention): Trim type length checks.
439
440 2016-06-14  John Baldwin  <jhb@FreeBSD.org>
441
442         * tui/tui-stack.c (tui_show_frame_info): Fix type mismatch.
443
444 2016-06-14  John Baldwin  <jhb@FreeBSD.org>
445
446         * rs6000-tdep.c (ppc_process_record_op31): Initialize ra.
447
448 2016-06-13  Nick Clifton  <nickc@redhat.com>
449
450         * gdbtypes.c (replace_type): Fix assertion.
451
452 2016-06-10  Tom Tromey  <tom@tromey.com>
453
454         * gdbtypes.c (arch_type, arch_integer_type, arch_character_type)
455         (arch_boolean_type, arch_float_type, arch_complex_type)
456         (arch_flags_type, append_flags_type_field)
457         (append_flags_type_flag, arch_composite_type)
458         (append_composite_type_field_raw)
459         (append_composite_type_field_aligned)
460         (append_composite_type_field): Make "name" parameter const.
461         * gdbtypes.h (arch_type, arch_integer_type, arch_character_type)
462         (arch_boolean_type, arch_float_type, arch_complex_type)
463         (append_composite_type_field, append_composite_type_field_aligned)
464         (append_composite_type_field_raw, arch_flags_type)
465         (append_flags_type_field, append_flags_type_flag): Constify.
466
467 2016-06-10  Tom Tromey  <tom@tromey.com>
468
469         PR rust/20110:
470         * rust-exp.y (lex_number): Don't truncate large numbers to i32.
471
472 2016-06-10  Tom Tromey  <tom@tromey.com>
473
474         * Makefile.in (COMMON_OBS): Remove rust-exp.o.
475         (YYFILES): Add rust-exp.c.
476         (YYOBJ): Add rust-exp.o.
477         (local-maintainer-clean): Remove rust-exp.c.
478
479 2016-06-09  Toshihito Kikuchi  <k.toshihito@yahoo.de>
480
481         * NEWS: Mention that GDB now supports a negative repeat count in
482         the 'x' command.
483         * printcmd.c (decode_format): Allow '-' in the parameter
484         "string_ptr" to accept a negative repeat count.
485         (find_instruction_backward): New function.
486         (read_memory_backward): New function.
487         (integer_is_zero): New function.
488         (find_string_backward): New function.
489         (do_examine): Use new functions to examine memory backward.
490         (_initialize_printcmd): Mention that 'x' command supports a negative
491         repeat count.
492
493 2016-06-09  Toshihito Kikuchi  <k.toshihito@yahoo.de>
494
495         * MAINTAINERS (Write After Approval): Add Toshihito Kikuchi.
496
497 2016-06-09  Tom Tromey  <tom@tromey.com>
498
499         PR python/19819:
500         * python/py-xmethods.c (invoke_method_name)
501         (py_get_result_type_method_name, py_invoke_method_name): Remove.
502         (gdbpy_initialize_xmethods): Don't initialize
503         py_invoke_method_name, py_get_result_type_method_name.
504
505 2016-06-07  Simon Marchi  <simon.marchi@ericsson.com>
506
507         * mi/mi-interp.c (mi_record_changed): Add missing braces.
508
509 2016-06-07  Bernhard Heckel  <bernhard.heckel@intel.com>
510
511         * findvar.c (follow_static_link): Check for valid pointer.
512
513 2016-06-06  Simon Marchi  <simon.marchi@ericsson.com>
514
515         * NEWS: Mention the new fields in =record-started.
516         * common/btrace-common.h (btrace_format_short_string): New function
517         declaration.
518         * common/btrace-common.c (btrace_format_short_string): New
519         function.
520         * mi/mi-interp.c (mi_record_changed): Output method and format
521         fields in the =record-started record.
522         * record-btrace.c (record_btrace_open): Adapt record_changed
523         notification.
524         * record-full.c (record_full_open): Likewise.
525         * record.c (cmd_record_stop): Likewise.
526
527 2016-06-02  Jon Turney  <jon.turney@dronecode.org.uk>
528
529         * windows-nat.c (handle_output_debug_string): Return type of
530         gdb_signal_from_host() is gdb_signal, not an int.
531         (windows_get_exec_module_filename): Add pointer casts for C++.
532
533 2016-06-02  Tom Tromey  <tom@tromey.com>
534
535         PR python/18984:
536         * python/python.c (gdbpy_solib_name): Use GDB_PY_LLU_ARG.
537
538 2016-06-01  Pedro Alves  <palves@redhat.com>
539
540         * remote-fileio.c (remote_fio_ctrl_c_flag, remote_fio_sa)
541         (remote_fio_osa)
542         (remote_fio_ofunc, remote_fileio_sig_init, remote_fileio_sig_set)
543         (remote_fileio_sig_exit, remote_fileio_ctrl_c_signal_handler):
544         Delete.
545         (remote_fileio_o_quit_handler): New global.
546         (remote_fileio_quit_handler): New function.
547         (remote_fileio_reply): Check the quit flag instead of the custom
548         'remote_fio_ctrl_c_flag' flag.  Restore the quit handler instead
549         of changing the SIGINT handler.
550         (do_remote_fileio_request): Override the quit handler instead of
551         changing the SIGINT handler.
552
553 2016-06-01  Nick Clifton  <nickc@redhat.com>
554
555         * common/common-utils.c (xmalloc_failed): New function.  Provided
556         so that the version in libiberty is not linked in.
557
558 2016-06-01  Markus Metzger  <markus.t.metzger@intel.com>
559
560         * infcmd.c (skip_finish_frames): New.
561         (finish_command): Call skip_finish_frames.
562
563 2016-06-01  Yao Qi  <yao.qi@linaro.org>
564
565         PR remote/19998
566         * remote-fileio.c (remote_fileio_ctrl_c_signal_handler): Call
567         quit_serial_event_set.
568
569 2016-06-01  Joel Brobecker  <brobecker@adacore.com>
570
571         GDB 7.11.1 released.
572
573 2016-05-31  Martin Galvan  <martin.galvan@tallertechnologies.com>
574
575         PR c++/19893
576         * dwarf2loc.c (coerce_pieced_ref, indirect_synthetic_pointer,
577         fetch_const_value_from_synthetic_pointer): New functions.
578         (indirect_pieced_value): Move lower half to indirect_synthetic_pointer.
579         (pieced_value_funcs): Implement coerce_ref.
580         * valops.c (value_addr): Call coerce_ref for synthetic references.
581         * valprint.c (valprint_check_validity): Return true for synthetic
582         references.  Also, don't show "<synthetic pointer>" if they reference
583         addressable values.
584         (generic_val_print_ref): Handle synthetic references.  Also move some
585         code to print_ref_address.
586         (print_ref_address, get_value_addr_contents): New functions.
587
588 2016-05-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
589
590         PR c++/15231
591         * dwarf2read.c (enum pc_bounds_kind): Add PC_BOUNDS_INVALID.
592         (process_psymtab_comp_unit_reader, read_func_scope): Adjust callers.
593         (read_lexical_block_scope): Import DIEs from bare DW_TAG_lexical_block.
594         (read_call_site_scope): Adjust callers.
595         (dwarf2_get_pc_bounds): Implement pc_bounds_invalid.
596         (dwarf2_get_subprogram_pc_bounds, get_scope_pc_bounds): Adjust callers.
597
598 2016-05-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
599
600         Code cleanup: dwarf2_get_pc_bounds: -1/0/+1 -> enum
601         * dwarf2read.c (enum pc_bounds_kind) New.
602         (dwarf2_get_pc_bounds): Use it in the declaration.
603         (process_psymtab_comp_unit_reader): Adjust caller.  Rename has_pc_info
604         to cu_bounds_kind.
605         (read_func_scope, read_lexical_block_scope, read_call_site_scope):
606         Adjust callers.
607         (dwarf2_get_pc_bounds): Use enum pc_bounds_kind in the definition.
608         (dwarf2_get_subprogram_pc_bounds, get_scope_pc_bounds): Adjust callers.
609
610 2016-05-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
611
612         * NEWS (QCatchSyscalls): Remove the parameter.  Include ...
613         (QCatchSyscalls:1 in qSupported) ... this separate entry which got
614         deleted.
615
616 2016-05-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
617
618         * NEWS (N stop reply): Remove empty line.
619
620 2016-05-28  Alan Modra  <amodra@gmail.com>
621
622         * compile/compile-object-load.c (link_callbacks_multiple_definition,
623         link_callbacks_warning, link_callbacks_undefined_symbol,
624         link_callbacks_undefined_symbol, link_callbacks_reloc_overflow,
625         link_callbacks_reloc_dangerous,
626         link_callbacks_unattached_reloc): Return void.
627
628 2016-05-27  Andrew Burgess  <andrew.burgess@embecosm.com>
629
630         * opencl-lang.c (evaluate_subexp_opencl): If
631         EVAL_AVOID_SIDE_EFFECTS mode, forward the VALUE_LVAL attribute to
632         the returned value in the STRUCTOP_STRUCT case.
633
634 2016-05-27  Andrew Burgess  <andrew.burgess@embecosm.com>
635
636         * eval.c (evaluate_subexp_standard): If EVAL_AVOID_SIDE_EFFECTS
637         mode, forward the VALUE_LVAL attribute to the returned value in
638         the STRUCTOP_PTR case.
639
640 2016-05-25  Tom Tromey  <tom@tromey.com>
641
642         * python/py-value.c (value_object_as_number): Use correct spelling
643         of HAVE_LIBPYTHON2_4.
644
645 2016-05-25  Bernhard Heckel  <bernhard.heckel@intel.com>
646
647         * f-typeprint.c (f_type_print_base): Replace 0 by show.
648
649 2016-05-25  Bernhard Heckel  <bernhard.heckel@intel.com>
650
651         * f-typeprint.c (f_type_print_base): Decrease show by one.
652
653 2016-05-25  Bernhard Heckel  <bernhard.heckel@intel.com>
654
655         * f-typeprint.c (f_type_print_base): Don't print fields when show < 0.
656
657 2016-05-25  Bernhard Heckel  <bernhard.heckel@intel.com>
658
659         * f-typeprint.c (f_type_print_base): Take print level into account.
660
661 2016-05-24  Tom Tromey  <tom@tromey.com>
662
663         PR python/17386:
664         * python/py-value.c (value_object_as_number): Add
665         nb_inplace_floor_divide, nb_inplace_true_divide, nb_index.
666
667 2016-05-24  Tom Tromey  <tom@tromey.com>
668
669         * python/py-value.c (value_object_as_number): Add
670         nb_inplace_divide for Python 2.
671
672 2016-05-23  Tom Tromey  <tom@tromey.com>
673
674         PR python/17981:
675         * python/py-breakpoint.c (gdbpy_breakpoints): Return a new tuple
676         when there are no breakpoints.
677
678 2016-05-24  Pedro Alves  <palves@redhat.com>
679
680         PR gdb/19828
681         * linux-nat.c (attach_proc_task_lwp_callback): Mark the lwp
682         resumed, and add the thread to GDB's thread list.
683
684 2016-05-24  Pedro Alves  <palves@redhat.com>
685
686         PR gdb/19828
687         * linux-nat.c (get_pending_status): If the thread reported the
688         event to the core and it's pending, use the pending status signal
689         number.
690
691 2016-05-24  Pedro Alves  <palves@redhat.com>
692
693         PR gdb/19828
694         * linux-nat.c (lwp_lwpid_htab): New htab.
695         (lwp_info_hash, lwp_lwpid_htab_eq, lwp_lwpid_htab_create)
696         (lwp_lwpid_htab_add_lwp): New functions.
697         (lwp_list): Tweak comment.
698         (lwp_list_add, lwp_list_remove, lwp_lwpid_htab_remove_pid): New
699         functions.
700         (purge_lwp_list): Rewrite, using htab_traverse_noresize.
701         (add_initial_lwp): Add lwp to htab too.  Use lwp_list_add.
702         (delete_lwp): Use lwp_list_remove.  Remove htab too.
703         (find_lwp_pid): Search in htab.
704         (_initialize_linux_nat): Call lwp_lwpid_htab_create.
705         * linux-nat.h (struct lwp_info) <prev>: New field.
706
707 2016-05-24  Pedro Alves  <palves@redhat.com>
708
709         PR gdb/19828
710         * linux-nat.c (lwp_lwpid_htab): New htab.
711         (lwp_info_hash, lwp_lwpid_htab_eq, lwp_lwpid_htab_create)
712         (lwp_lwpid_htab_add_lwp): New functions.
713         (lwp_list): Tweak comment.
714         (lwp_list_add, lwp_list_remove, lwp_lwpid_htab_remove_pid): New
715         functions.
716         (purge_lwp_list): Rewrite, using htab_traverse_noresize.
717         (add_initial_lwp): Add lwp to htab too.  Use lwp_list_add.
718         (delete_lwp): Use lwp_list_remove.  Remove htab too.
719         (find_lwp_pid): Search in htab.
720         (_initialize_linux_nat): Call lwp_lwpid_htab_create.
721         * linux-nat.h (struct lwp_info) <prev>: New field.
722
723 2016-05-24  Pedro Alves  <palves@redhat.com>
724
725         PR gdb/19828
726         * linux-nat.c (linux_resume_one_lwp_throw): Clear the LWP's core
727         field.
728         (linux_nat_update_thread_list): Don't fetch the core if already
729         known.
730
731 2016-05-24  Pedro Alves  <palves@redhat.com>
732
733         PR gdb/19828
734         * linux-tdep.c (find_mapping_size): Delete.
735         (linux_vsyscall_range_raw): Rewrite reading from
736         /proc/PID/task/PID/maps directly instead of using
737         gdbarch_find_memory_regions.
738
739 2016-05-24  Pedro Alves  <palves@redhat.com>
740
741         PR gdb/19828
742         * linux-nat.c (report_thread_events): New global.
743         (linux_handle_extended_wait): Report
744         TARGET_WAITKIND_THREAD_CREATED if thread event reporting is
745         enabled.
746         (wait_lwp, linux_nat_filter_event): Report all thread exits if
747         thread event reporting is enabled.  Remove comment.
748         (filter_exit_event): New function.
749         (linux_nat_wait_1): Use it.
750         (linux_nat_thread_events): New function.
751         (linux_nat_add_target): Install it as target_thread_events method.
752
753 2016-05-24  Yan-Ting Lin  <currygt52@gmail.com>
754
755         * MAINTAINERS (Write After Approval): Add "Yan-Ting Lin".
756
757 2016-05-23  Yao Qi  <yao.qi@arm.com>
758
759         * arch-utils.c (default_code_of_frame_writable): New function.
760         * arch-utils.h (default_code_of_frame_writable): Declare.
761         * arm-tdep.c (arm_code_of_frame_writable): New function.
762         (arm_gdbarch_init): Install gdbarch method
763         code_of_frame_writable if the target is M-profile.
764         * frame.c (skip_unwritable_frames): New function.
765         * frame.h (skip_unwritable_frames): Declare.
766         * gdbarch.sh (code_of_frame_writable): New.
767         * gdbarch.c, gdbarch.h: Re-generated.
768         * infcmd.c (finish_command): Call skip_unwritable_frames.
769
770 2016-05-23  Tom Tromey  <tom@tromey.com>
771
772         PR python/19438, PR python/18393:
773         * python/py-objfile.c (objfpy_initialize): Initialize self->dict.
774         * python/py-progspace.c (pspy_initialize): Initialize self->dict.
775
776 2016-05-23  Gary Benson  <gbenson@redhat.com>
777
778         * nat/gdb_thread_db.h (td_thr_validate_ftype): Remove typedef.
779         * linux-thread-db.c (struct thread_db_info) <td_thr_validate_p>:
780         Remove field.
781         (try_thread_db_load_1): Remove td_thr_validate initialization.
782
783 2016-05-23  Jon Boden  <jon@ubuntubsd.org>  (tiny change)
784
785         * configure.ac: Search for libutil-freebsd as alternative to libutil.
786         * configure: Re-generated.
787
788 2016-05-19  Andreas Schwab  <schwab@suse.de>
789
790         * ia64-libunwind-tdep.c (libunwind_descr): Add cast from void *.
791         (libunwind_frame_set_descr): Likewise.
792         (libunwind_frame_cache): Likewise.
793         (libunwind_frame_dealloc_cache): Likewise.
794         (libunwind_frame_sniffer): Likewise.
795         (libunwind_search_unwind_table): Likewise.
796         (libunwind_sigtramp_frame_sniffer): Likewise.
797         (libunwind_get_reg_special): Likewise.
798         (libunwind_load): Likewise.
799         * ia64-linux-nat.c (ia64_linux_fetch_register): Likewise.
800         (ia64_linux_store_register): Likewise.
801         (ia64_linux_xfer_partial): Likewise.
802         * ia64-tdep.c (ia64_access_reg): Likewise.
803         (ia64_access_fpreg): Likewise.
804         (ia64_access_rse_reg): Likewise.
805         (ia64_access_rse_fpreg): Likewise.
806
807 2016-05-18  Tom Tromey  <tom@tromey.com>
808
809         * rust-lang.c (rust_subscript): Initialize "high".
810
811 2016-05-17  Simon Marchi  <simon.marchi@ericsson.com>
812
813         PR gdb/20045
814         * mi/mi-main.c (mi_on_resume): Call target_can_async_p instead
815         of target_is_async_p.
816
817 2016-05-17  Simon Marchi  <simon.marchi@ericsson.com>
818
819         PR gdb/18077
820         * mi/mi-main.c (run_one_inferior): Use run target to determine
821         whether to run async or not.
822         (mi_cmd_exec_run): Likewise.
823
824 2016-05-17  Tom Tromey  <tom@tromey.com>
825
826         * std-operator.def (OP_RANGE): Rename from OP_F90_RANGE.
827         * rust-lang.c: Don't include f-lang.h.
828         (rust_range, rust_compute_range, rust_subscript)
829         (rust_evaluate_subexp): Update.
830         * rust-exp.y: Don't include f-lang.h.
831         (ast_range, convert_ast_to_expression): Update.
832         * parse.c (operator_length_standard): Update.
833         * f-lang.h (enum f90_range_type): Move to expression.h.
834         * f-exp.y: Use OP_RANGE.
835         * expression.h (enum range_type): New enum; renamed from
836         f90_range_type.
837         * expprint.c: Don't include f-lang.h.
838         (print_subexp_standard, dump_subexp_body_standard): Use OP_RANGE.
839         * eval.c (value_f90_subarray, evaluate_subexp_standard): Update.
840
841 2016-05-17  Tom Tromey  <tom@tromey.com>
842
843         * NEWS: Add Rust item.
844
845 2016-05-17  Tom Tromey  <tom@tromey.com>
846             Manish Goregaokar <manishsmail@gmail.com>
847
848         * symtab.c (symbol_find_demangled_name): Handle Rust.
849         * symfile.c (init_filename_language_table): Treat ".rs" as Rust.
850         * std-operator.def (STRUCTOP_ANONYMOUS, OP_RUST_ARRAY): New
851         constants.
852         * rust-lang.h: New file.
853         * rust-lang.c: New file.
854         * rust-exp.y: New file.
855         * dwarf2read.c (read_file_scope): Add Rust producer sniffing.
856         (dwarf2_compute_name, read_func_scope, read_structure_type)
857         (read_base_type, read_subrange_type, set_cu_language)
858         (new_symbol_full, determine_prefix): Handle Rust.
859         * defs.h (enum language) <language_rust>: New constant.
860         * Makefile.in (SFILES): Add rust-exp.y, rust-lang.c.
861         (COMMON_OBS): Add rust-exp.o, rust-lang.o.
862
863 2016-05-17  Tom Tromey  <tom@tromey.com>
864
865         * valprint.h (struct generic_val_print_array) <array_start,
866         array_end>: New fields.
867         * valprint.c (generic_val_print_array): Add "decorations"
868         parameter.  Use "array_start", "array_end".
869         (generic_val_print) <TYPE_CODE_ARRAY>: Update.
870         * p-valprint.c (p_decorations): Update.
871         * m2-valprint.c (m2_decorations): Update.
872         * f-valprint.c (f_decorations): Update.
873         * c-valprint.c (c_decorations): Update.
874
875 2016-05-17  Tom Tromey  <tom@tromey.com>
876
877         * NEWS: Add "maint selftest" entry.
878         * selftest.h: New file.
879         * selftest.c: New file.
880         * maint.c: Include selftest.h.
881         (maintenance_selftest): New function.
882         (_initialize_maint_cmds): Add "maint selftest" command.
883         * configure.ac (GDB_SELF_TEST): Maybe define.
884         * config.in, configure: Rebuild.
885         * Makefile.in (SFILES): Add selftest.c.
886         (COMMON_OBS): Add selftest.o.
887
888 2016-05-17  Tom Tromey  <tom@tromey.com>
889
890         * expprint.c: Include f-lang.h.
891         (print_subexp_standard, dump_subexp_body_standard): Handle
892         OP_F90_RANGE.
893
894 2016-05-17  Tom Tromey  <tom@tromey.com>
895
896         * Makefile.in (init.c): Search .y files for initialization
897         functions.
898
899 2016-05-12  Doug Evans  <dje@google.com>
900
901         PR symtab/19999
902         * dwarf2loc.c (dwarf2_find_location_expression): For DWO files still
903         add base_offset.
904
905 2016-05-10  Trevor Saunders  <tbsaunde+binutils@tbsaunde.org>
906
907         * iq2000-tdep.c (iq2000_scan_prologue): Remove if that shouldn't guard
908         anything.
909         * linespec.c (add_sal_to_sals): Restore call to symtab_to_fullname.
910
911 2016-05-10  Thomas Preud'homme  <thomas.preudhomme@arm.com>
912
913         * arm-tdep.c (arm_elf_make_msymbol_special): Use
914         ARM_GET_SYM_BRANCH_TYPE to get branch type of a symbol.
915
916 2016-05-07  Trevor Saunders  <tbsaunde+binutils@tbsaunde.org>
917
918         * aarch64-linux-tdep.c (aarch64_linux_sigframe_init): Remove unused
919         variables.
920         * aarch64-tdep.c (aarch64_skip_prologue): Likewise.
921         (aarch64_scan_prologue): Likewise.
922         (aarch64_prologue_prev_register): Likewise.
923         (aarch64_dwarf2_prev_register): Likewise.
924         (pass_in_v): Likewise.
925         (aarch64_push_dummy_call): Likewise.
926         (aarch64_breakpoint_from_pc): Likewise.
927         (aarch64_return_in_memory): Likewise.
928         (aarch64_return_value): Likewise.
929         (aarch64_displaced_step_b_cond): Likewise.
930         (aarch64_displaced_step_cb): Likewise.
931         (aarch64_displaced_step_tb): Likewise.
932         (aarch64_gdbarch_init): Likewise.
933         (aarch64_process_record): Likewise.
934         * alpha-mdebug-tdep.c (alpha_mdebug_init_abi): Likewise.
935         * alpha-tdep.c (_initialize_alpha_tdep): Likewise.
936         * amd64-dicos-tdep.c (amd64_dicos_init_abi): Likewise.
937         * amd64-linux-tdep.c (amd64_dtrace_parse_probe_argument): Likewise.
938         * amd64-tdep.c (fixup_riprel): Likewise.
939         * amd64-windows-tdep.c (amd64_windows_frame_decode_epilogue): Likewise.
940         (amd64_windows_frame_decode_insns): Likewise.
941         (amd64_windows_frame_cache): Likewise.
942         (amd64_windows_frame_prev_register): Likewise.
943         (amd64_windows_frame_this_id): Likewise.
944         (amd64_windows_init_abi): Likewise.
945         * arm-linux-tdep.c (arm_linux_get_syscall_number): Likewise.
946         (arm_linux_get_next_pcs_syscall_next_pc): Likewise.
947         * arm-symbian-tdep.c (arm_symbian_init_abi): Likewise.
948         * arm-tdep.c (arm_make_epilogue_frame_cache): Likewise.
949         (arm_epilogue_frame_prev_register): Likewise.
950         (arm_record_vdata_transfer_insn): Likewise.
951         (arm_record_exreg_ld_st_insn): Likewise.
952         * auto-load.c (execute_script_contents): Likewise.
953         (print_scripts): Likewise.
954         * avr-tdep.c (avr_frame_prev_register): Likewise.
955         (avr_push_dummy_call): Likewise.
956         * bfin-linux-tdep.c (bfin_linux_sigframe_init): Likewise.
957         * bfin-tdep.c (bfin_gdbarch_init): Likewise.
958         * blockframe.c (find_pc_partial_function_gnu_ifunc): Likewise.
959         * break-catch-throw.c (fetch_probe_arguments): Likewise.
960         * breakpoint.c (breakpoint_xfer_memory): Likewise.
961         (breakpoint_init_inferior): Likewise.
962         (breakpoint_inserted_here_p): Likewise.
963         (software_breakpoint_inserted_here_p): Likewise.
964         (hardware_breakpoint_inserted_here_p): Likewise.
965         (bpstat_what): Likewise.
966         (break_range_command): Likewise.
967         (save_breakpoints): Likewise.
968         * coffread.c (coff_symfile_read): Likewise.
969         * cris-tdep.c (cris_push_dummy_call): Likewise.
970         (cris_scan_prologue): Likewise.
971         (cris_register_size): Likewise.
972         (_initialize_cris_tdep): Likewise.
973         * d-exp.y: Likewise.
974         * dbxread.c (dbx_read_symtab): Likewise.
975         (process_one_symbol): Likewise.
976         (coffstab_build_psymtabs): Likewise.
977         (elfstab_build_psymtabs): Likewise.
978         * dicos-tdep.c (dicos_init_abi): Likewise.
979         * disasm.c (do_mixed_source_and_assembly): Likewise.
980         (gdb_disassembly): Likewise.
981         * dtrace-probe.c (dtrace_process_dof): Likewise.
982         * dwarf2read.c (error_check_comp_unit_head): Likewise.
983         (build_type_psymtabs_1): Likewise.
984         (skip_one_die): Likewise.
985         (process_imported_unit_die): Likewise.
986         (dwarf2_physname): Likewise.
987         (read_file_scope): Likewise.
988         (setup_type_unit_groups): Likewise.
989         (create_dwo_cu_reader): Likewise.
990         (create_dwo_cu): Likewise.
991         (create_dwo_unit_in_dwp_v1): Likewise.
992         (create_dwo_unit_in_dwp_v2): Likewise.
993         (lookup_dwo_unit_in_dwp): Likewise.
994         (free_dwo_file): Likewise.
995         (check_producer): Likewise.
996         (dwarf2_add_typedef): Likewise.
997         (dwarf2_add_member_fn): Likewise.
998         (read_unsigned_leb128): Likewise.
999         (read_signed_leb128): Likewise.
1000         (dwarf2_const_value): Likewise.
1001         (follow_die_sig_1): Likewise.
1002         (dwarf_decode_macro_bytes): Likewise.
1003         * extension.c (restore_active_ext_lang): Likewise.
1004         * frv-linux-tdep.c (frv_linux_sigtramp_frame_cache): Likewise.
1005         * ft32-tdep.c (ft32_analyze_prologue): Likewise.
1006         * gdbtypes.c (lookup_typename): Likewise.
1007         (resolve_dynamic_range): Likewise.
1008         (check_typedef): Likewise.
1009         * h8300-tdep.c (h8300_is_argument_spill): Likewise.
1010         (h8300_gdbarch_init): Likewise.
1011         * hppa-tdep.c (hppa32_push_dummy_call): Likewise.
1012         (hppa_frame_this_id): Likewise.
1013         (_initialize_hppa_tdep): Likewise.
1014         * hppanbsd-tdep.c (hppanbsd_sigtramp_cache_init): Likewise.
1015         * hppaobsd-tdep.c (hppaobsd_supply_fpregset): Likewise.
1016         * i386-dicos-tdep.c (i386_dicos_init_abi): Likewise.
1017         * i386-tdep.c (i386_bnd_type): Likewise.
1018         (i386_gdbarch_init): Likewise.
1019         (i386_mpx_bd_base): Likewise.
1020         * i386nbsd-tdep.c (i386nbsd_sigtramp_cache_init): Likewise.
1021         * i386obsd-tdep.c (i386obsd_elf_init_abi): Likewise.
1022         * ia64-tdep.c (examine_prologue): Likewise.
1023         (ia64_frame_cache): Likewise.
1024         (ia64_push_dummy_call): Likewise.
1025         * infcmd.c (finish_command_fsm_async_reply_reason): Likewise.
1026         (default_print_one_register_info): Likewise.
1027         * infrun.c (infrun_thread_ptid_changed): Likewise.
1028         (thread_still_needs_step_over): Likewise.
1029         (stop_all_threads): Likewise.
1030         (restart_threads): Likewise.
1031         (keep_going_stepped_thread): Likewise.
1032         * iq2000-tdep.c (iq2000_scan_prologue): Likewise.
1033         * language.c (language_init_primitive_type_symbols): Likewise.
1034         * linespec.c (add_sal_to_sals): Likewise.
1035         * linux-nat.c (status_callback): Likewise.
1036         (kill_unfollowed_fork_children): Likewise.
1037         (linux_nat_kill): Likewise.
1038         * linux-tdep.c (linux_fill_prpsinfo): Likewise.
1039         * linux-thread-db.c (thread_db_notice_clone): Likewise.
1040         (record_thread): Likewise.
1041         * location.c (string_to_event_location_basic): Likewise.
1042         * m32c-tdep.c (m32c_prev_register): Likewise.
1043         * m32r-linux-tdep.c (m32r_linux_init_abi): Likewise.
1044         * m32r-tdep.c (decode_prologue): Likewise.
1045         * m68klinux-tdep.c (m68k_linux_sigtramp_frame_cache): Likewise.
1046         * machoread.c (macho_symtab_read): Likewise.
1047         (macho_symfile_read): Likewise.
1048         (macho_symfile_offsets): Likewise.
1049         * maint.c (set_per_command_cmd): Likewise.
1050         * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Likewise.
1051         (mi_cmd_stack_list_variables): Likewise.
1052         * mi/mi-main.c (mi_cmd_exec_run): Likewise.
1053         (output_register): Likewise.
1054         (mi_cmd_execute): Likewise.
1055         (mi_cmd_trace_define_variable): Likewise.
1056         (print_variable_or_computed): Likewise.
1057         * minsyms.c (prim_record_minimal_symbol_full): Likewise.
1058         * mn10300-tdep.c (mn10300_frame_prev_register): Likewise.
1059         * msp430-tdep.c (msp430_pseudo_register_write): Likewise.
1060         * mt-tdep.c (mt_registers_info): Likewise.
1061         * nios2-tdep.c (nios2_analyze_prologue): Likewise.
1062         (nios2_push_dummy_call): Likewise.
1063         (nios2_frame_unwind_cache): Likewise.
1064         (nios2_stub_frame_cache): Likewise.
1065         (nios2_stub_frame_sniffer): Likewise.
1066         (nios2_gdbarch_init): Likewise.
1067         * ppc-ravenscar-thread.c: Likewise.
1068         * ppcfbsd-tdep.c (ppcfbsd_sigtramp_frame_cache): Likewise.
1069         * python/py-evts.c (add_new_registry): Likewise.
1070         * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
1071         (bpfinishpy_detect_out_scope_cb): Likewise.
1072         * python/py-framefilter.c (py_print_value): Likewise.
1073         * python/py-inferior.c (infpy_write_memory): Likewise.
1074         * python/py-infevents.c (create_inferior_call_event_object): Likewise.
1075         * python/py-infthread.c (thpy_get_ptid): Likewise.
1076         * python/py-linetable.c (ltpy_get_pcs_for_line): Likewise.
1077         (ltpy_get_all_source_lines): Likewise.
1078         (ltpy_is_valid): Likewise.
1079         (ltpy_iternext): Likewise.
1080         * python/py-symtab.c (symtab_and_line_to_sal_object): Likewise.
1081         * python/py-unwind.c (pyuw_object_attribute_to_pointer): Likewise.
1082         (unwind_infopy_str): Likewise.
1083         * python/py-varobj.c (py_varobj_get_iterator): Likewise.
1084         * ravenscar-thread.c (ravenscar_inferior_created): Likewise.
1085         * rs6000-aix-tdep.c (rs6000_push_dummy_call): Likewise.
1086         * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call): Likewise.
1087         * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Likewise.
1088         * s390-linux-tdep.c (s390_supply_tdb_regset): Likewise.
1089         (s390_frame_prev_register): Likewise.
1090         (s390_dwarf2_frame_init_reg): Likewise.
1091         (s390_record_vr): Likewise.
1092         (s390_process_record): Likewise.
1093         * score-tdep.c (score_push_dummy_call): Likewise.
1094         (score3_analyze_prologue): Likewise.
1095         * sh-tdep.c (sh_extract_return_value_nofpu): Likewise.
1096         * sh64-tdep.c (sh64_analyze_prologue): Likewise.
1097         (sh64_push_dummy_call): Likewise.
1098         (sh64_extract_return_value): Likewise.
1099         (sh64_do_fp_register): Likewise.
1100         * solib-aix.c (solib_aix_get_section_offsets): Likewise.
1101         * solib-darwin.c (darwin_read_exec_load_addr_from_dyld): Likewise.
1102         (darwin_solib_read_all_image_info_addr): Likewise.
1103         * solib-dsbt.c (enable_break): Likewise.
1104         * solib-frv.c (enable_break2): Likewise.
1105         (frv_fdpic_find_canonical_descriptor): Likewise.
1106         * solib-svr4.c (svr4_handle_solib_event): Likewise.
1107         * sparc-tdep.c (sparc_skip_stack_check): Likewise.
1108         * sparc64-linux-tdep.c (sparc64_linux_get_longjmp_target): Likewise.
1109         * sparcobsd-tdep.c (sparc32obsd_init_abi): Likewise.
1110         * spu-tdep.c (info_spu_dma_cmdlist): Likewise.
1111         * stack.c (read_frame_local): Likewise.
1112         * symfile.c (symbol_file_add_separate): Likewise.
1113         (remove_symbol_file_command): Likewise.
1114         * symmisc.c (maintenance_print_one_line_table): Likewise.
1115         * symtab.c (symbol_cache_flush): Likewise.
1116         (basic_lookup_transparent_type): Likewise.
1117         (sort_search_symbols_remove_dups): Likewise.
1118         * target.c (target_memory_map): Likewise.
1119         (target_detach): Likewise.
1120         (target_resume): Likewise.
1121         (acquire_fileio_fd): Likewise.
1122         (target_store_registers): Likewise.
1123         * thread.c (print_thread_info_1): Likewise.
1124         * tic6x-tdep.c (tic6x_analyze_prologue): Likewise.
1125         * tilegx-linux-tdep.c (tilegx_linux_sigframe_init): Likewise.
1126         * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
1127         (tilegx_analyze_prologue): Likewise.
1128         (tilegx_stack_frame_destroyed_p): Likewise.
1129         (tilegx_frame_cache): Likewise.
1130         * tracefile.c (trace_save): Likewise.
1131         * tracepoint.c (encode_actions_and_make_cleanup): Likewise.
1132         (start_tracing): Likewise.
1133         (print_one_static_tracepoint_marker): Likewise.
1134         * tui/tui.c (tui_enable): Likewise.
1135         * valops.c (value_struct_elt_bitpos): Likewise.
1136         (find_overload_match): Likewise.
1137         (find_oload_champ): Likewise.
1138         * value.c (value_contents_copy_raw): Likewise.
1139         * windows-tdep.c (windows_get_tlb_type): Likewise.
1140         * x86-linux-nat.c (x86_linux_enable_btrace): Likewise.
1141         * xcoffread.c (record_minimal_symbol): Likewise.
1142         (scan_xcoff_symtab): Likewise.
1143         * xtensa-tdep.c (execute_code): Likewise.
1144         (xtensa_gdbarch_init): Likewise.
1145         (_initialize_xtensa_tdep): Likewise.
1146
1147 2016-05-04  Ulrich Weigand  <uweigand@de.ibm.com>
1148
1149         * spu-linux-nat.c (spu_bfd_iovec_pread): Add pointer cast for C++.
1150         (spu_bfd_open): Likewise.
1151
1152 2016-05-04  Yao Qi  <yao.qi@linaro.org>
1153
1154         PR gdb/19947
1155         * corefile.c (read_memory): Rename it to ...
1156         (read_memory_object): ... it.  Add parameter object.
1157         (read_memory): Call read_memory_object.
1158         (read_stack): Likewise.
1159         (read_code): Likewise.
1160
1161 2016-05-03  Yunlian Jiang <yunlian@google.com>
1162             Doug Evans  <dje@google.com>
1163
1164         PR symtab/19914
1165         * dwarf2read.c (open_and_init_dwp_file): Look at backlink if objfile
1166         is separate debug file.
1167
1168 2016-05-03  Don Breazeal <donb@codesourcery.com>
1169
1170         * serial.h (gdb_pipe): Fix argument names in comment.
1171
1172 2016-05-03  Pedro Alves <palves@redhat.com>
1173
1174         PR python/20037
1175         * python/python.c (_initialize_python) [IS_PY3K]: xstrdup/xfree
1176         oldloc.
1177
1178 2016-05-03  Pedro Alves <palves@redhat.com>
1179
1180         * python/python.c (_initialize_python) [IS_PY3K]: Remove dead
1181         code.
1182
1183 2016-05-03  Pedro Alves  <palves@redhat.com>
1184
1185         * configure.ac (PYTHON_LIBS): Sed away "-Xlinker -export-dynamic".
1186         * configure: Regenerate.
1187
1188 2016-05-03  Pedro Alves  <palves@redhat.com>
1189
1190         * configure.ac (checking for the dynamic export flag): Add
1191         $PYTHON_CPPFLAGS to CPPFLAGS.
1192         * configure: Regenerate.
1193
1194 2016-05-03  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1195
1196         * symfile.c (find_pc_overlay): Add braces to avoid -Wparentheses
1197         warning.
1198         (find_pc_mapped_section): Likewise.
1199         (list_overlays_command): Likewise.
1200
1201 2016-05-02  Eli Zaretskii  <eliz@gnu.org>
1202
1203         * windows-nat.c (_initialize_check_for_gdb_ini): Fix off-by-one
1204         error in allocation of space for "$HOME/.gdbinit" string.  This
1205         caused GDB to abort on startup whenever a '~/gdb.ini' file was
1206         actually found, because xsnprintf would hit an assertion
1207         violation.
1208
1209 2016-04-28  Simon Marchi  <simon.marchi@ericsson.com>
1210
1211         * cli/cli-decode.c (help_cmd_list): Do not list commands that
1212         are deprecated.
1213
1214 2016-04-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
1215
1216         * remote.c (remote_start_remote): Detect PACKET_vFile_setfs.support.
1217
1218 2016-04-27  Martin Galvan  <martin.galvan@tallertechnologies.com>
1219
1220         * c-valprint.c (c_value_print): Always convert val back to reference
1221         type if we converted it to a pointer type.
1222
1223 2016-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1224
1225         * configure.ac: Enhance configure check for babeltrace to reject
1226         non-C++-enabled versions.
1227         * configure: Regenerate.
1228
1229 2016-04-26  Sanimir Agovic  <sanimir.agovic@intel.com>
1230             Keven Boell  <keven.boell@intel.com>
1231             Bernhard Heckel  <bernhard.heckel@intel.com>
1232
1233         * f-valprint.c (f77_create_arrayprint_offset_tbl): Remove
1234         function.
1235         (F77_DIM_SIZE, F77_DIM_OFFSET): Remove macro.
1236         (f77_print_array_1): Use value_subscript to subscript a
1237         value array.
1238         (f77_print_array): Remove call to f77_create_arrayprint_offset_tbl.
1239         (f_val_print): Use value_field to construct a field value.
1240
1241 2016-04-26  Bernhard Heckel  <bernhard.heckel@intel.com>
1242
1243         * valarith.c (value_address): Resolve dynamic types.
1244
1245 2016-04-26  Bernhard Heckel  <bernhard.heckel@intel.com>
1246             Keven Boell  <kevel.boell@intel.com>
1247
1248         * NEWS: Add new supported features for fortran.
1249         * gdbtypes.c (remove_dyn_prop): New.
1250         (resolve_dynamic_struct): Keep type length for fortran structs.
1251         * gdbtypes.h: Forward declaration of new function.
1252         * value.c (value_address): Return dynamic resolved location of a value.
1253         (set_value_component_location): Adjust the value address
1254         for single value prints.
1255         (value_primitive_field): Support value types with a dynamic location.
1256         (set_internalvar): Remove dynamic location property of
1257         internal variables.
1258
1259 2016-04-25  Pedro Alves  <palves@redhat.com>
1260             Yao Qi  <yao.qi@linaro.org>
1261
1262         * mem-break.c (set_raw_breakpoint_at): Create a raw breakpoint
1263         object.  Insert it if it is not inserted yet.  Increase the
1264         refcount and link it into the proc's raw breakpoint list.
1265
1266 2016-04-25  Yao Qi  <yao.qi@linaro.org>
1267
1268         * breakpoint.c (should_be_inserted): Return 0 if the location's
1269         owner is not single step breakpoint or single step breakpoint's
1270         thread isn't the thread which is stepping past a breakpoint.
1271         * gdbarch.sh (software_single_step): Update comments.
1272         * gdbarch.h: Regenerated.
1273         * infrun.c (struct step_over_info) <thread>: New field.
1274         (set_step_over_info): New argument 'thread'.  Callers updated.
1275         (clear_step_over_info): Set field thread to -1.
1276         (thread_is_stepping_over_breakpoint): New function.
1277         * infrun.h (thread_is_stepping_over_breakpoint): Declaration.
1278
1279 2016-04-22  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
1280
1281         * ppc-linux-nat.c (ppc_linux_read_description): Use PPC_FEATURE_HAS_VSX
1282         and PPC_FEATURE_HAS_ALTIVEC to check if such features are available.
1283
1284 2016-04-22  Yao Qi  <yao.qi@linaro.org>
1285
1286         * valops.c (read_value_memory): New local variable 'stack'.
1287         Set it to either TARGET_OBJECT_STACK_MEMORY or
1288         TARGET_OBJECT_MEMORY.
1289
1290 2016-04-22  Pedro Alves  <palves@redhat.com>
1291
1292         * ada-exp.y: Remove all yy symbol remappings.
1293         (GDB_YY_REMAP_PREFIX): Define.
1294         Include "yy-remap.h".
1295         * ada-lang.c (ada_language_defn): Adjust.
1296         * ada-lang.h (ada_error): Rename to ...
1297         (ada_yyerror): ... this.
1298         * c-exp.y: Remove all yy symbol remappings.
1299         (GDB_YY_REMAP_PREFIX): Define.
1300         Include "yy-remap.h".
1301         * c-lang.c (c_language_defn, cplus_language_defn)
1302         (asm_language_defn, minimal_language_defn): Adjust.
1303         * c-lang.h (c_error): Rename to ...
1304         (c_yyerror): ... this.
1305         * d-exp.y: Remove all yy symbol remappings.
1306         (GDB_YY_REMAP_PREFIX): Define.
1307         Include "yy-remap.h".
1308         * d-lang.c (d_language_defn): Adjust.
1309         * d-lang.h (d_error): Rename to ...
1310         (d_yyerror): ... this.
1311         * f-exp.y: Remove all yy symbol remappings.
1312         (GDB_YY_REMAP_PREFIX): Define.
1313         Include "yy-remap.h".
1314         * f-lang.c (f_language_defn): Adjust.
1315         * f-lang.h (f_error): Rename to ...
1316         (f_yyerror): ... this.
1317         * go-exp.y: Remove all yy symbol remappings.
1318         (GDB_YY_REMAP_PREFIX): Define.
1319         Include "yy-remap.h".
1320         * go-lang.c (go_language_defn): Adjust.
1321         * go-lang.h (go_error): Rename to ...
1322         (go_yyerror): ... this.
1323         * jv-exp.y: Remove all yy symbol remappings.
1324         (GDB_YY_REMAP_PREFIX): Define.
1325         Include "yy-remap.h".
1326         * jv-lang.c (java_language_defn): Adjust.
1327         * jv-lang.h (java_error): Rename to ...
1328         (java_yyerror): ... this.
1329         * m2-exp.y: Remove all yy symbol remappings.
1330         (GDB_YY_REMAP_PREFIX): Define.
1331         Include "yy-remap.h".
1332         * m2-lang.c (m2_language_defn): Adjust.
1333         * m2-lang.h (m2_error): Rename to ...
1334         (m2_yyerror): ... this.
1335         * objc-exp.y: Remove all yy symbol remappings.
1336         (GDB_YY_REMAP_PREFIX): Define.
1337         Include "yy-remap.h".
1338         * objc-lang.c (objc_language_defn): Adjust.
1339         * opencl-lang.c (opencl_language_defn): Adjust.
1340         * p-exp.y: Remove all yy symbol remappings.
1341         (GDB_YY_REMAP_PREFIX): Define.
1342         Include "yy-remap.h".
1343         * p-lang.c (pascal_language_defn): Adjust.
1344         * p-lang.h (pascal_error): Rename to ...
1345         (pascal_yyerror): ... this.
1346         * yy-remap.h: New file.
1347
1348 2016-04-22  Pedro Alves  <palves@redhat.com>
1349
1350         * common/common-exceptions.h (GDB_XCPT_TRY): Remove mention of
1351         the foreign frames issue.
1352         [__cplusplus] (GDB_XCPT): Define as GDB_XCPT_TRY.
1353
1354 2016-04-22  Pedro Alves  <palves@redhat.com>
1355
1356         * common/common-exceptions.c (enum catcher_state, struct catcher)
1357         (current_catcher): Define in C++ mode too.
1358         (exceptions_state_mc_catch): Call throw_exception_sjlj instead of
1359         throw_exception.
1360         (throw_exception_sjlj, throw_exception_cxx): New functions,
1361         factored out from throw_exception.
1362         (throw_exception): Reimplement.
1363         * common/common-exceptions.h (exceptions_state_mc_init)
1364         (exceptions_state_mc_action_iter)
1365         (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
1366         Declare in C++ mode too.
1367         (TRY): Rename to ...
1368         (TRY_SJLJ): ... this.
1369         (CATCH): Rename to ...
1370         (CATCH_SJLJ): ... this.
1371         (END_CATCH): Rename to ...
1372         (END_CATCH_SJLJ): ... this.
1373         [GDB_XCPT == GDB_XCPT_SJMP] (TRY, CATCH, END_CATCH): Map to SJLJ
1374         equivalents.
1375         (throw_exception): Update comments.
1376         (throw_exception_sjlj): Declare.
1377         * event-top.c (gdb_rl_callback_read_char_wrapper): Extend intro
1378         comment.  Wrap body in TRY_SJLJ/CATCH_SJLJ and rethrow any
1379         intercepted exception.
1380         (gdb_rl_callback_handler): New function.
1381         (gdb_rl_callback_handler_install): Always install
1382         gdb_rl_callback_handler as readline callback.
1383
1384 2016-04-22  Pedro Alves  <palves@redhat.com>
1385
1386         * event-top.c (rl_callback_read_char_wrapper): Rename to ...
1387         (gdb_rl_callback_read_char_wrapper): ... this.
1388         (change_line_handler, gdb_setup_readline): Adjust.
1389
1390 2016-04-22  Yao Qi  <yao.qi@linaro.org>
1391
1392         * aarch32-linux-nat.c (aarch32_gp_regcache_supply): Clear CPSR
1393         bits 20 to 23.
1394
1395 2016-04-22  Joel Brobecker  <brobecker@adacore.com>
1396
1397         * MAINTAINER: Remove myself as AIX Maintainer.
1398
1399 2016-04-22  Maciej W. Rozycki  <macro@imgtec.com>
1400
1401         * mips-tdep.c (mips_gdbarch_init): For GDB_OSABI_LINUX set
1402         `num_regs' to 90 rather than 79.  Where a target description is
1403         present adjust the setting appropriately.
1404
1405 2016-04-21  Pedro Alves  <palves@redhat.com>
1406
1407         * common/common-exceptions.h (GDB_XCPT_TRY): Add comment.
1408         (GDB_XCPT): Always define as GDB_XCPT_SJMP.
1409
1410 2016-04-21  Pedro Alves  <palves@redhat.com>
1411
1412         * aix-thread.c (pdc_read_data, pdc_write_data): Add cast.
1413         (aix_thread_resume): Use PTRACE_TYPE_ARG5.
1414         * rs6000-nat.c (rs6000_ptrace64): Use PTRACE_TYPE_ARG5.
1415         (rs6000_ptrace_ldinfo): Change type of 'ldi' local to void
1416         pointer, and cast return to gdb_byte pointer.
1417
1418 2016-04-21  Pedro Alves  <palves@redhat.com>
1419
1420         * s390-linux-nat.c (fetch_regset, store_regset, check_regset): Use
1421         void * instead of gdb_byte *.
1422
1423 2016-04-21  Pedro Alves  <palves@redhat.com>
1424
1425         * dwarf2read.c (try_open_dwop_file, open_dwo_file)
1426         (file_file_name, file_full_name): Add char * cast to sentinel in
1427         concat/reconcat calls.
1428         * event-top.c (top_level_prompt): Likewise.
1429         * guile/guile.c (initialize_scheme_side): Likewise.
1430         * linux-tdep.c (linux_fill_prpsinfo): Likewise.
1431         * macrotab.c (macro_source_fullname): Likewise.
1432         * main.c (get_init_files, captured_main): Likewise.
1433         * psymtab.c (psymtab_to_fullname): Likewise.
1434         * python/python.c (_initialize_python)
1435         (gdbpy_finish_initialization): Likewise.
1436         * source.c (symtab_to_fullname): Likewise.
1437
1438 2016-04-20  Pedro Alves  <palves@redhat.com>
1439
1440         * build-with-cxx.m4 (GDB_AC_BUILD_WITH_CXX): Default to yes.
1441         * configure: Renegerate.
1442
1443 2016-04-20  Pedro Alves  <palves@redhat.com>
1444
1445         * darwin-nat.c (darwin_decode_message): Use gdb_signal_from_host.
1446
1447 2016-04-20  Pedro Alves  <palves@redhat.com>
1448
1449         * aarch64-tdep.c (aarch64_record_load_store): Change type of
1450         'reg_rm_val' local to ULONGEST.
1451
1452 2016-04-20  Pedro Alves  <palves@redhat.com>
1453
1454         * darwin-nat.c (darwin_resume_thread): Add uintptr_t cast.
1455
1456 2016-04-20  Doug Evans  <xdje42@gmail.com>
1457
1458         * symmisc.c (dump_symtab_1): Print owning compunit for identical
1459         blockvectors.
1460
1461 2016-04-20  Yao Qi  <yao.qi@linaro.org>
1462
1463         * aarch32-linux-nat.c: Include "arch/arm-linux.h".
1464
1465 2016-04-20  Yao Qi  <yao.qi@linaro.org>
1466
1467         * arm-linux-tdep.h (ARM_CPSR_GREGNUM): Move it to ...
1468         * arch/arm-linux.h: ... here.
1469
1470 2016-04-19  John Baldwin  <jhb@FreeBSD.org>
1471
1472         * amd64bsd-nat.c (amd64bsd_fetch_inferior_registers): Change xstateregs
1473         to void *.
1474         (amd64bsd_store_inferior_registers): Likewise.
1475         * fbsd-nat.c (resume_one_thread_cb): Explicitly cast data to ptid_t *.
1476         (resume_all_threads_cb): Likewise.
1477         * i386bsd-nat.c (i386bsd_supply_gregset): Cast gregs to char *.
1478         (i386bsd_collect_gregset): Likewise.
1479         (i386bsd_fetch_inferior_registers): Change xstateregs to void *.
1480         (i386bsd_store_inferior_registers): Likewise.
1481
1482 2016-04-19  John Baldwin  <jhb@FreeBSD.org>
1483
1484         * main.c (setup_alternate_signal_stack): Cast to char *.
1485
1486 2016-04-19  Doug Evans  <xdje42@gmail.com>
1487
1488         * symmisc.c (dump_symtab_1, dump_symtab): Delete arg objfile.
1489         All callers updated.
1490
1491 2016-04-19  Doug Evans  <xdje42@gmail.com>
1492
1493         PR gdb/17911
1494         * source.c (is_regular_file): New arg errno_ptr.
1495         All callers updated.
1496
1497 2016-04-19  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1498
1499         * linux-record.c (record_linux_system_call): Merge handling for
1500         readlink/recv/read and pipe/pipe2.
1501
1502 2016-04-14  Walfred Tedeschi  <walfred.tedeschi@intel.com>
1503
1504         * features/i386/amd64-mpx-linux.xml: Remove AVX feature.
1505         * features/i386/amd64-mpx.xml: Remove AVX feature.
1506         * features/i386/i386-mpx-linux.xml: Remove AVX feature.
1507         * features/i386/i386-mpx.xml: Remove AVX feature.
1508         * features/i386/amd64-mpx-linux.c: Regenerate.
1509         * features/i386/amd64-mpx.c: Regenerate.
1510         * features/i386/i386-mpx-linux.c: Regenerate.
1511         * features/i386/i386-mpx.c: Regenerate.
1512         * regformats/i386/amd64-mpx-linux.dat: Regenerate.
1513         * regformats/i386/amd64-mpx.dat: Regenerate.
1514         * regformats/i386/i386-mpx-linux.dat: Regenerate.
1515         * regformats/i386/i386-mpx.dat: Regenerate.
1516
1517 2016-04-16  Walfred Tedeschi  <walfred.tedeschi@intel.com>
1518
1519         * amd64-linux-tdep.c (features/i386/amd64-avx-mpx-linux.c):
1520         New include.
1521         (amd64_linux_core_read_description): Add case for
1522          X86_XSTATE_AVX_MPX_MASK.
1523         (_initialize_amd64_linux_tdep): Call initialize_tdesc_amd64_avx_mpx_linux.
1524         * amd64-linux-tdep.h (tdesc_amd64_avx_mpx_linux): New definition.
1525         * amd64-tdep.c (features/i386/amd64-avx-mpx.c): New include.
1526         (amd64_target_description): Add case for  X86_XSTATE_AVX_MPX_MASK.
1527         (_initialize_amd64_tdep): Call initialize_tdesc_amd64_avx_mpx.
1528         * common/x86-xstate.h (X86_XSTATE_MPX_MASK): Remove AVX bits.
1529         (X86_XSTATE_AVX_MPX_MASK): New case.
1530         * features/Makefile (i386/i386-avx-mpx, i386/i386-avx-mpx-linux)
1531         (i386/amd64-avx-mpx, i386/amd64-avx-mpx-linux): New rules.
1532         (i386/i386-avx-mpx-expedite, i386/i386-avx-mpx-linux-expedite)
1533         (i386/amd64-avx-mpx-expedite, i386/amd64-avx-mpx-linux-expedite):
1534         New expedites.
1535         * i386-linux-tdep.c (features/i386/i386-avx-mpx-linux.c): New
1536         include.
1537         (i386_linux_core_read_description): Add case
1538         X86_XSTATE_AVX_MPX_MASK.
1539         (_initialize_i386_linux_tdep): Call
1540         initialize_tdesc_i386_avx_mpx_linux.
1541         * i386-linux-tdep.h (tdesc_i386_avx_mpx_linux): New include.
1542         * i386-tdep.c (features/i386/i386-avx-mpx.c): New include.
1543         (i386_target_description): Add case for X86_XSTATE_AVX_MPX_MASK.
1544         * x86-linux-nat.c (x86_linux_read_description): Add case for
1545         X86_XSTATE_AVX_MPX_MASK.
1546         * features/i386/amd64-avx-mpx-linux.xml: New file.
1547         * features/i386/i386-avx-mpx-linux.xml: New file.
1548         * features/i386/i386-avx-mpx.xml: New file.
1549         * features/i386/amd64-avx-mpx.xml: New file.
1550         * features/i386/amd64-avx-mpx-linux.c: Generated.
1551         * features/i386/amd64-avx-mpx.c: Generated.
1552         * features/i386/i386-avx-mpx-linux.c: Generated.
1553         * features/i386/i386-avx-mpx.c: Generated.
1554         * regformats/i386/amd64-avx-mpx-linux.dat: Generated.
1555         * regformats/i386/amd64-avx-mpx.dat: Generated.
1556         * regformats/i386/i386-avx-mpx-linux.dat: Generated.
1557         * regformats/i386/i386-avx-mpx.dat: Generated.
1558
1559 2016-04-18  Pedro Alves  <palves@redhat.com>
1560
1561         * ptrace.m4 (GDB_AC_PTRACE): Don't run tests in C++ mode.
1562         * configure: Regenerate.
1563
1564 2016-04-18  Martin Galvan  <martin.galvan@tallertechnologies.com>
1565
1566         * valops.c (value_addr): For C++ references, set the copied value's
1567         enclosing_type as well.
1568
1569 2016-04-18  Yao Qi  <yao.qi@linaro.org>
1570
1571         Revert:
1572         2016-04-15  Yao Qi  <yao.qi@linaro.org>
1573
1574         * arm-tdep.c (thumb_stack_frame_destroyed_p): Return zero if
1575         PC is far from the end of function.
1576
1577 2016-04-16  Pedro Alves  <palves@redhat.com>
1578
1579         * ada-exp.y (yydefred): Define as ada_yydefred.
1580
1581 2016-04-15  Pedro Alves  <palves@redhat.com>
1582
1583         * ada-lang.c (ada_lookup_struct_elt_type): Constify 'type_str' and
1584         'name_str' locals.
1585
1586 2016-04-15  Pedro Alves  <palves@redhat.com>
1587
1588         * btrace.c (pt_btrace_insn_flags): Change return type to
1589         btrace_insn_flags.  Use btrace_insn_flags for local.
1590
1591 2016-04-15  Pedro Alves  <palves@redhat.com>
1592
1593         * nat/linux-ptrace.h [__mips__] (GDB_ARCH_IS_TRAP_BRKPT): Also
1594         accept TRAP_BRKPT.
1595          [__mips__] (GDB_ARCH_IS_TRAP_HWBKPT): Also accept TRAP_HWBKPT.
1596
1597 2016-04-15  Yao Qi  <yao.qi@linaro.org>
1598
1599         * arm-tdep.c (thumb_stack_frame_destroyed_p): Return zero if
1600         PC is far from the end of function.
1601
1602 2016-04-14  Pedro Alves  <palves@redhat.com>
1603
1604         * cli/cli-cmds.c (alias_usage_error): New function.
1605         (alias_command): Use it.
1606         * ctf.c (ctf_save_metadata_header): Inline metadata_fmt local in
1607         ctf_save_write_metadata call.
1608
1609 2016-04-14  Pedro Alves  <palves@redhat.com>
1610
1611         * ada-typeprint.c (print_fixed_point_type): Don't pass float as
1612         argument to function expecting LONGEST.
1613         * value.c (unpack_long): Add casts to LONGEST.
1614
1615 2016-04-13  Luis Machado  <lgustavo@codesourcery.com>
1616
1617         * exec.c (exec_file_locate_attach): Guard a couple functions
1618         that can throw errors.
1619         (exception_print_same): New helper function.
1620
1621 2016-04-13  Pedro Alves  <palves@redhat.com>
1622
1623         PR remote/19840
1624         * remote.c (struct remote_state) <last_resume_exec_dir>: New
1625         field.
1626         (new_remote_state): Default last_resume_exec_dir to EXEC_FORWARD.
1627         (remote_open_1): Reset last_resume_exec_dir to EXEC_FORWARD.
1628         (remote_resume): Store the last execution direction.
1629         (remote_execution_direction): New function.
1630         (init_remote_ops): Install it as to_execution_direction target_ops
1631         method.
1632
1633 2016-04-12  Pedro Alves  <palves@redhat.com>
1634
1635         * common/common-exceptions.h (GDB_XCPT_TRY): Update comment.
1636         [__cplusplus] (GDB_XCPT): Define as GDB_XCPT_TRY.
1637
1638 2016-04-12  Pedro Alves  <palves@redhat.com>
1639
1640         * common/common-exceptions.c (struct catcher) <buf>: Now a
1641         'jmp_buf' instead of SIGJMP_BUF.
1642         (exceptions_state_mc_init): Change return type to 'jmp_buf'.
1643         (throw_exception): Use longjmp instead of SIGLONGJMP.
1644         * common/common-exceptions.h: Include <setjmp.h> instead of
1645         "gdb_setjmp.h".
1646         (exceptions_state_mc_init): Change return type to 'jmp_buf'.
1647         [GDB_XCPT == GDB_XCPT_SJMP] (TRY): Use setjmp instead of
1648         SIGSETJMP.
1649         * cp-support.c: Include "gdb_setjmp.h".
1650
1651 2016-04-12  Pedro Alves  <palves@redhat.com>
1652
1653         * common/common-exceptions.c (exception_rethrow): Remove
1654         prepare_to_throw_exception call.
1655         * common/common-exceptions.h (prepare_to_throw_exception): Delete
1656         declaration.
1657         * exceptions.c (prepare_to_throw_exception): Delete.
1658
1659 2016-04-12  Pedro Alves  <palves@redhat.com>
1660
1661         * target.c (target_check_pending_interrupt): Delete.
1662         * target.h (struct target_ops) <to_check_pending_interrupt>:
1663         Remove method.
1664         (target_check_pending_interrupt): Remove declaration.
1665         * target-delegates.c: Regenerate.
1666
1667 2016-04-12  Pedro Alves  <palves@redhat.com>
1668
1669         * defs.h: Update comments on SIGINT handling.
1670         (immediate_quit): Delete declaration.
1671         * event-loop.c (call_async_signal_handler): Delete.
1672         * event-loop.h (call_async_signal_handler): Delete declaration.
1673         (mark_async_signal_handler): Update comments.
1674         (gdb_call_async_signal_handler): Delete declaration.
1675         * event-top.c (handle_sigint): Call mark_async_signal_handler
1676         instead of gdb_call_async_signal_handler.
1677         * exceptions.c (prepare_to_throw_exception): Remove reference to
1678         immediate_quit.
1679         (exception_fprintf): Remove comments about immediate_quit.
1680         * mingw-hdep.c (sigint_event, sigint_handler): Delete.
1681         (gdb_select): Don't wait on sigint_event.
1682         (gdb_call_async_signal_handler): Delete.
1683         (_initialize_mingw_hdep): Delete.
1684         * posix-hdep.c (gdb_call_async_signal_handler): Delete.
1685         * utils.c (immediate_quit): Delete.
1686
1687 2016-04-12  Pedro Alves  <palves@redhat.com>
1688
1689         * defs.h (quit_handler_ftype, quit_handler)
1690         (make_cleanup_override_quit_handler, default_quit_handler): New.
1691         (QUIT): Adjust comments.
1692         * event-top.c (default_quit_handler): New function.
1693         (quit_handler): New global.
1694         (struct quit_handler_cleanup_data): New.
1695         (restore_quit_handler, restore_quit_handler_dtor)
1696         (make_cleanup_override_quit_handler): New.
1697         (async_request_quit): Call QUIT.
1698         * remote.c (struct remote_state) <got_ctrlc_during_io>: New field.
1699         (async_sigint_remote_twice_token, async_sigint_remote_token):
1700         Delete.
1701         (remote_close): Update comments.
1702         (remote_start_remote): Don't set immediate_quit.  Set starting_up
1703         earlier.
1704         (remote_serial_quit_handler, remote_unpush_and_throw): New
1705         functions.
1706         (remote_open_1): Clear got_ctrlc_during_io.  Set
1707         remote_async_terminal_ours_p unconditionally.
1708         (async_initialize_sigint_signal_handler)
1709         (async_handle_remote_sigint, async_handle_remote_sigint_twice)
1710         (remote_check_pending_interrupt, async_remote_interrupt)
1711         (async_remote_interrupt_twice)
1712         (async_cleanup_sigint_signal_handler, ofunc)
1713         (sync_remote_interrupt, sync_remote_interrupt_twice): Delete.
1714         (remote_terminal_inferior, remote_terminal_ours): Remove async
1715         checks.
1716         (remote_wait_as): Don't install a SIGINT handler in sync mode.
1717         (readchar, remote_serial_write): Override the quit handler with
1718         remote_serial_quit_handler.
1719         (getpkt_or_notif_sane_1): Don't call QUIT.
1720         (initialize_remote_ops): Don't install
1721         remote_check_pending_interrupt.
1722         (_initialize_remote): Don't create async_sigint_remote_token and
1723         async_sigint_remote_twice_token.
1724         * ser-base.c (ser_base_wait_for): Call QUIT and use
1725         interruptible_select.
1726         (ser_base_write): Call QUIT.
1727         * ser-go32.c (dos_readchar, dos_write): Call QUIT.
1728         * ser-unix.c (wait_for): Don't use VTIME.  Always take the
1729         gdb_select path, but call QUIT and interruptible_select.
1730         * utils.c (maybe_quit): Call the current quit handler.  Don't call
1731         target_check_pending_interrupt.
1732         (defaulted_query, prompt_for_continue): Override the quit handler
1733         with the default quit handler.
1734
1735 2016-04-12  Pedro Alves  <palves@redhat.com>
1736
1737         * tui/tui-hooks.c (tui_target_has_run): Delete.
1738         (tui_about_to_proceed): Delete.
1739         (tui_about_to_proceed_observer): Delete.
1740         (tui_install_hooks, tui_remove_hooks): Don't install/remove an
1741         about_to_proceed observer.
1742
1743 2016-04-12  Pedro Alves  <palves@redhat.com>
1744
1745         * mi/mi-interp.c (mi_new_thread): Put
1746         target_terminal_ours_for_output in effect while outputting.
1747         (mi_thread_exit): Use target_terminal_ours_for_output instead of
1748         target_terminal_ours.
1749         (mi_record_changed, mi_inferior_added, mi_inferior_appeared)
1750         (mi_inferior_exit, mi_inferior_removed, mi_traceframe_changed)
1751         (mi_tsv_created, mi_tsv_deleted, mi_tsv_modified)
1752         (mi_breakpoint_created, mi_breakpoint_deleted)
1753         (mi_breakpoint_modified, mi_solib_loaded, mi_solib_unloaded)
1754         (mi_command_param_changed, mi_memory_changed)
1755         (report_initial_inferior): Use target_terminal_ours_for_output
1756         instead of target_terminal_ours.  Restore terminal settings.
1757         * mi/mi-main.c (mi_execute_command): Use
1758         target_terminal_ours_for_output instead of target_terminal_ours.
1759         Restore terminal settings.
1760
1761 2016-04-12  Pedro Alves  <palves@redhat.com>
1762
1763         PR gdb/19828
1764         * gnu-nat.c (inf_validate_task_sc): Don't call
1765         target_terminal_ours / target_terminal_inferior around query.
1766         * i386-tdep.c (i386_record_lea_modrm, i386_process_record): Don't
1767         call target_terminal_ours / target_terminal_inferior around
1768         yquery.
1769         * linux-record.c (record_linux_system_call): Don't call
1770         target_terminal_ours / target_terminal_inferior around yquery.
1771         * nto-procfs.c (interrupt_query): Don't call target_terminal_ours
1772         / target_terminal_inferior around query.
1773         * record-full.c (record_full_check_insn_num): Remove
1774         'set_terminal' parameter.  Don't call target_terminal_ours /
1775         target_terminal_inferior around query.
1776         (record_full_message, record_full_registers_change)
1777         (record_full_xfer_partial): Adjust.
1778         * remote.c (interrupt_query): Don't call target_terminal_ours /
1779         target_terminal_inferior around query.
1780         * utils.c (defaulted_query): Install cleanup to restore target
1781         terminal.  Put target_terminal_ours_for_output in effect while
1782         defaulted producing, and target_terminal_ours in in effect while
1783         handling input.
1784         (prompt_for_continue): Install cleanup to restore target terminal.
1785         Put target_terminal_ours in in effect while handling input.
1786
1787 2016-04-12  Pedro Alves  <palves@redhat.com>
1788
1789         * utils.c (defaulted_query, prompt_for_continue): Free temporary
1790         strings with cleanups, instead of xfree.
1791
1792 2016-04-12  Pedro Alves  <palves@redhat.com>
1793
1794         * utils.c (vwarning, internal_vproblem): Use
1795         make_cleanup_restore_target_terminal and
1796         target_terminal_ours_for_output.
1797
1798 2016-04-12  Pedro Alves  <palves@redhat.com>
1799
1800         * infcmd.c (post_create_inferior, prepare_one_step): Use
1801         target_terminal_ours_for_output instead of target_terminal_ours.
1802
1803 2016-04-12  Pedro Alves  <palves@redhat.com>
1804
1805         * exceptions.c (print_flush): Use target_terminal_ours_for_output
1806         instead of target_terminal_ours, and restore target terminal with
1807         a cleanup.
1808
1809 2016-04-12  Pedro Alves  <palves@redhat.com>
1810
1811         * cp-support.c (gdb_demangle): Use target_terminal_ours_for_output
1812         instead of target_terminal_ours, and restore target terminal with
1813         a cleanup.
1814
1815 2016-04-12  Pedro Alves  <palves@redhat.com>
1816
1817         * ada-lang.c (type_as_string, type_as_string_and_cleanup): New
1818         functions.
1819         (ada_lookup_struct_elt_type): Use type_as_string_and_cleanup.
1820
1821 2016-04-12  Pedro Alves  <palves@redhat.com>
1822
1823         * ser-base.c (fd_event): Retry read_prim on EINTR.
1824         (do_ser_base_readchar): Retry read_prim on EINTR.
1825         (ser_base_write): Retry write_prim on EINTR.
1826         * ser-unix.c (ser_unix_read_prim): Don't retry on EINTR here.
1827         (ser_unix_write_prim): Remove comment.
1828
1829 2016-04-12  Pedro Alves  <palves@redhat.com>
1830
1831         * remote.c (remote_pass_ctrlc): New function.
1832         (init_remote_ops): Install it.
1833         * target.c (target_terminal_inferior): Pass pending Ctrl-C to the
1834         target.
1835         (target_pass_ctrlc, default_target_pass_ctrlc): New functions.
1836         * target.h (struct target_ops) <to_pass_ctrlc>: New method.
1837         (target_pass_ctrlc, default_target_pass_ctrlc): New declarations.
1838         * target-delegates.c: Regenerate.
1839
1840 2016-04-12  Pedro Alves  <palves@redhat.com>
1841
1842         * infcmd.c (interrupt_target_1): Call target_stop is in non-stop
1843         mode.
1844         * linux-nat.c (linux_nat_interrupt): Delete.
1845         (linux_nat_add_target): Don't install linux_nat_interrupt.
1846         * remote.c (remote_interrupt_ns): Change return type to void.
1847         Throw error if interrupting the target is not supported.
1848         (remote_interrupt): Don't call the remote_stop_ns/remote_stop_as.
1849
1850 2016-04-12  Pedro Alves  <palves@redhat.com>
1851
1852         * defs.h (clear_quit_flag): Remove declaration.
1853         * extension-priv.h (struct extension_language_ops)
1854         <clear_quit_flag>: Remove field and update comments.
1855         * extension.c (clear_quit_flag): Delete.
1856         * guile/guile.c (guile_extension_ops): Adjust.
1857         * python/python.c (python_extension_ops): Adjust.
1858         (gdbpy_clear_quit_flag): Delete.
1859
1860 2016-04-12  Pedro Alves  <palves@redhat.com>
1861
1862         * main.c (captured_main): Don't clear the quit flag.
1863
1864 2016-04-12  Pedro Alves  <palves@redhat.com>
1865
1866         * exceptions.c (prepare_to_throw_exception): Don't clear the quit
1867         flag.
1868
1869 2016-04-12  Pedro Alves  <palves@redhat.com>
1870
1871         * event-top.c (command_handler): Don't call clear_quit_flag.
1872
1873 2016-04-12  Pedro Alves  <palves@redhat.com>
1874
1875         * remote-sim.c (gdb_os_poll_quit): Don't call clear_quit_flag.
1876         * remote.c (remote_wait_as): Don't call clear_quit_flag.
1877
1878 2016-04-12  Pedro Alves  <palves@redhat.com>
1879
1880         * python/python.c: Include "ser-event.h".
1881         (gdbpy_event_fds): Delete.
1882         (gdbpy_serial_event): New.
1883         (gdbpy_run_events): Change prototype.  Use serial_event_clear
1884         instead of serial_readchar.
1885         (gdbpy_post_event): Use serial_event_set instead of serial_write.
1886         (gdbpy_initialize_events): Use make_serial_event instead of
1887         serial_pipe.
1888
1889 2016-04-12  Pedro Alves  <palves@redhat.com>
1890
1891         * defs.h: Extend QUIT-related comments to mention
1892         interruptible_select.
1893         (quit_serial_event_set, quit_serial_event_clear): Declare.
1894         * event-top.c: Include "ser-event.h" and "gdb_select.h".
1895         (quit_serial_event): New global.
1896         (async_init_signals): Make quit_serial_event.
1897         (quit_serial_event_set, quit_serial_event_clear)
1898         (quit_serial_event_fd, interruptible_select): New functions.
1899         * extension.c (set_quit_flag): Set the quit serial event.
1900         (check_quit_flag): Clear the quit serial event.
1901         * gdb_select.h (interruptible_select): New declaration.
1902         * guile/scm-ports.c (ioscm_input_waiting): Use
1903         interruptible_select instead of gdb_select.
1904         * top.c (gdb_readline_no_editing): Likewise.
1905         * ui-file.c (stdio_file_read): Likewise.
1906
1907 2016-04-12  Pedro Alves  <palves@redhat.com>
1908
1909         * event-loop.c: Include "ser-event.h".
1910         (async_signal_handlers_serial_event): New global.
1911         (async_signals_handler, initialize_async_signal_handlers): New
1912         functions.
1913         (mark_async_signal_handler): Set
1914         async_signal_handlers_serial_event.
1915         (invoke_async_signal_handlers): Clear
1916         async_signal_handlers_serial_event.
1917         * event-top.c (async_init_signals): Call
1918         initialize_async_signal_handlers.
1919
1920 2016-04-12  Pedro Alves  <palves@redhat.com>
1921
1922         * Makefile.in (SFILES): Add ser-event.c.
1923         (HFILES_NO_SRCDIR): Add ser-event.h.
1924         (COMMON_OBS): Add ser-event.o.
1925         * ser-event.c, ser-event.h: New files.
1926         * serial.c (new_serial): New function, factored out from
1927         (serial_fdopen_ops): ... this.
1928         (serial_open_ops_1): New function, factored out from
1929         (serial_open): ... this.
1930         (serial_open_ops): New function.
1931         * serial.h (struct serial): Forware declare.
1932         (serial_open_ops): New declaration.
1933
1934 2016-04-12  Pedro Alves  <palves@redhat.com>
1935
1936         * serial.c (serial_open, serial_fdopen_ops, do_serial_close):
1937         Remove references to name.
1938         * serial.h (struct serial) <name>: Delete.
1939
1940 2016-04-12  Pedro Alves  <palves@redhat.com>
1941
1942         * remote-fileio.c (sigint_fileio_token, remote_fio_no_longjmp):
1943         Delete.
1944         (async_remote_fileio_interrupt): Delete.
1945         (remote_fileio_ctrl_c_signal_handler): Don't call the async signal
1946         handler.  Instead just always set the ctrl_c flag.
1947         (remote_fileio_reply): Clear remote_fio_ctrl_c_flag before
1948         re-enabling the SIGINT handler.
1949         (remote_fileio_func_open, remote_fileio_func_close)
1950         (remote_fileio_func_read, remote_fileio_func_write)
1951         (remote_fileio_func_lseek, remote_fileio_func_rename)
1952         (remote_fileio_func_unlink, remote_fileio_func_stat)
1953         (remote_fileio_func_fstat, remote_fileio_func_gettimeofday)
1954         (remote_fileio_func_isatty, remote_fileio_func_system)
1955         (remote_fileio_request): Remove references to
1956         remote_fio_no_longjmp.
1957         (initialize_remote_fileio): Don't create an async signal handler.
1958
1959 2016-04-12  Pedro Alves  <palves@redhat.com>
1960
1961         * event-top.c (stdin_event_handler): Call QUIT;
1962         (prompt_for_continue): Don't run with immediate_quit set.
1963
1964 2016-04-12  Pedro Alves  <palves@redhat.com>
1965
1966         * tui/tui-io.c (tui_redisplay_readline): Check
1967         gdb_in_secondary_prompt_p instead of immediate_quit.
1968         * tui/tui.c: Include top.h.
1969         (tui_rl_startup_hook): Check gdb_in_secondary_prompt_p instead of
1970         immediate_quit.
1971
1972 2016-04-12  Pedro Alves  <palves@redhat.com>
1973
1974         * top.c (read_command_file): Inline command_loop here.
1975         (command_loop): Delete.
1976
1977 2016-04-12  Pedro Alves  <palves@redhat.com>
1978
1979         * top.c: Include "gdb_select.h".
1980         (gdb_readline_no_editing): Wait for input with gdb_select instead
1981         of blocking in fgetc.
1982         (command_line_input): Don't set immediate_quit.
1983
1984 2016-04-08  Martin Galvan  <martin.galvan@tallertechnologies.com>
1985
1986         * value.c (value_next): Make pass-by-reference parameters const-correct.
1987         (value_parent): Likewise.
1988         (value_enclosing_type): Likewise.
1989         (value_lazy): Likewise.
1990         (value_stack): Likewise.
1991         (value_embedded_offset): Likewise.
1992         (value_pointed_to_offset): Likewise.
1993         (value_raw_address): Likewise.
1994         (deprecated_value_modifiable): Likewise.
1995         (value_free_to_mark): Likewise.
1996         (value_release_to_mark): Likewise.
1997         (internalvar_name): Likewise.
1998         (readjust_indirect_value_type): Likewise.
1999         (value_initialized): Likewise.
2000         * value.h (value_next): Likewise.
2001         (value_parent): Likewise.
2002         (value_enclosing_type): Likewise.
2003         (value_lazy): Likewise.
2004         (value_stack): Likewise.
2005         (value_embedded_offset): Likewise.
2006         (value_pointed_to_offset): Likewise.
2007         (value_raw_address): Likewise.
2008         (deprecated_value_modifiable): Likewise.
2009         (value_free_to_mark): Likewise.
2010         (value_release_to_mark): Likewise.
2011         (internalvar_name): Likewise.
2012         (readjust_indirect_value_type): Likewise.
2013         (value_initialized): Likewise.
2014
2015 2016-04-07  Yao Qi  <yao.qi@linaro.org>
2016
2017         * record-full.c (record_full_insert_breakpoint): Return
2018         early if entry on the address is found in
2019         record_full_breakpoints.
2020
2021 2016-04-07  Yao Qi  <yao.qi@linaro.org>
2022
2023         * record-full.c (record_full_insert_breakpoint): Set
2024         bp_tgt->reqstd_address and bp_tgt->placed_size.
2025
2026 2016-04-06  Don Breazeal  <donb@codesourcery.com>
2027
2028         * value.c (value_actual_type): Don't try to get rtti type
2029         of the value if it has been optimized out.
2030         (value_optimized_out): If a memory access error occurs,
2031         just check vaue->optimized_out.
2032
2033 2016-04-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
2034
2035         Revert the previous commit adding unknown_v_replies_ok.
2036
2037 2016-04-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
2038
2039         * remote.c (struct remote_state): New field unknown_v_replies_ok.
2040         (packet_config_support): Read it.
2041         (remote_start_remote): Set it.
2042
2043 2016-04-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
2044
2045         * remote.c: Revert check-in by a mistake in the previous commit.
2046
2047 2016-04-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
2048             Pedro Alves  <palves@redhat.com>
2049
2050         * exec.c (exec_file_locate_attach): Print warning for unsupported
2051         target_pid_to_exec_file.
2052         * symfile-mem.c (add_vsyscall_page): Remove the "file" command
2053         message part.
2054
2055 2016-04-04  Simon Marchi  <simon.marchi@ericsson.com>
2056
2057         * cli/cli-decode.c (help_cmd_list): Fix function doc and remove
2058         trailing spaces.
2059
2060 2016-04-01  Artemiy Volkov  <artemiyv@acm.org>
2061
2062         PR gdb/19820
2063         * eval.c (evaluate_subexp_standard): Allow TYPE_CODE_ENUM to be
2064         the type of BINOP_REPEAT's second operand.
2065
2066 2016-03-31  Yichao Yu  <yyc1992@gmail.com>
2067
2068         PR gdb/19858
2069         * jit.c (jit_breakpoint_re_set_internal): Return 0 if we already
2070         got the breakpoint at the right address.
2071         (jit_inferior_created): New function.
2072         (_initialize_jit): Install jit_inferior_created as
2073         inferior_created observer.
2074
2075 2016-03-31  Marcin KoÅ›cielnicki  <koriakin@0x04.net>
2076
2077         * NEWS: Mention support for tracepoints on powerpc*-linux.
2078
2079 2016-03-31  Catalin Udma  <catalin.udma@freescale.com>
2080
2081         PR python/19743
2082         * python/python.c (execute_gdb_command): Use console uiout
2083         when executing gdb command.
2084         * utils.c (restore_ui_out_closure): New structure.
2085         (do_restore_ui_out): New function.
2086         (make_cleanup_restore_ui_out): Likewise.
2087         * utils.h (make_cleanup_restore_ui_out): Declare.
2088
2089 2016-03-31  Pedro Alves  <palves@redhat.com>
2090
2091         * NEWS: Mention that support for "target m32rsdi", "target mips",
2092         "target pmon", "target ddb", "target rockhopper", and "target lsi"
2093         was removed.
2094         * Makefile.in (ALL_TARGET_OBS): Remove remote-m32r-sdi.o and
2095         remote-mips.o.
2096         (ALLDEPFILES): Remove remote-m32r-sdi.c and remote-mips.c.
2097         * configure.tgt: Remove all references to remote-m32r-sdi.o and
2098         remote-mips.o.
2099         * mips-tdep.c (deprecated_mips_set_processor_regs_hack): Delete
2100         function.
2101         * mips-tdep.h (deprecated_mips_set_processor_regs_hack): Delete
2102         declaration.
2103         * remote-m32r-sdi.c, remote-mips.c: Delete files.
2104         * symfile.c (generic_load, generic_load): Remove comments.
2105
2106 2016-03-30  Yao Qi  <yao.qi@linaro.org>
2107
2108         * arm-tdep.c (arm_epilogue_frame_this_id): Check 'func' against
2109         0 rather than NULL.
2110
2111 2016-03-30  Yao Qi  <yao.qi@linaro.org>
2112
2113         * arm-tdep.c: (arm_make_epilogue_frame_cache): New function.
2114         (arm_epilogue_frame_this_id): New function.
2115         (arm_epilogue_frame_prev_register): New function.
2116         (arm_epilogue_frame_sniffer): New function.
2117         (arm_epilogue_frame_unwind): New.
2118         (arm_gdbarch_init): Append unwinder arm_epilogue_frame_unwind.
2119
2120 2016-03-30  Yao Qi  <yao.qi@linaro.org>
2121
2122         * arm-tdep.c (arm_stack_frame_destroyed_p): Rename it ...
2123         (arm_stack_frame_destroyed_p_1): ... here.  Don't call
2124         arm_pc_is_thumb.
2125         (arm_stack_frame_destroyed_p): Call
2126         thumb_stack_frame_destroyed_p and
2127         arm_stack_frame_destroyed_p_1.
2128
2129 2016-03-30  Doug Evans  <dje@google.com>
2130
2131         * python/py-utils.c (host_string_to_python_string): New function.
2132         * python/python-internal.h (host_string_to_python_string): Declare it.
2133         * python/py-*.c (*): Update all calls to
2134         PyString_Decode (str, strlen (str), host_charset (), NULL);
2135         to use host_string_to_python_string instead.
2136
2137 2016-03-30  Marcin KoÅ›cielnicki  <koriakin@0x04.net>
2138
2139         * remote.c (remote_check_symbols): Allocate own buffer for reply.
2140
2141 2016-03-29  Max Filippov  <jcmvbkbc@gmail.com>
2142
2143         * xtensa-tdep.c (xtensa_frame_cache): Change op1 type to LONGEST.
2144         Use safe_read_memory_integer instead of read_memory_integer.
2145
2146 2016-03-29  Marcin KoÅ›cielnicki  <koriakin@0x04.net>
2147
2148         * NEWS: Mention support for tracepoints on s390*-linux.
2149
2150 2016-03-29  Don Breazeal  <donb@codesourcery.com>
2151
2152         * gdb/value.c (value_actual_type): Fix formatting issue.
2153
2154 2016-03-23  Yao Qi  <yao.qi@linaro.org>
2155
2156         * gdbarch.sh (software_single_step): Remove comments.
2157         * gdbarch.h: Regenerated.
2158
2159 2016-03-21  Yao Qi  <yao.qi@linaro.org>
2160
2161         * arm-tdep.c (arm_record_media): New.
2162         (arm_record_ld_st_reg_offset): Call arm_record_media.
2163
2164 2016-03-21  Yao Qi  <yao.qi@linaro.org>
2165
2166         * arm-linux-tdep.c (arm_canonicalize_syscall): Canonicalize
2167         more syscalls.
2168
2169 2016-03-18  Yao Qi  <yao.qi@linaro.org>
2170
2171         * sparc-tdep.c (sparc_software_single_step): Make it static.
2172         * sparc-tdep.h (sparc_software_single_step): Remove declaration.
2173
2174 2016-03-18  Yao Qi  <yao.qi@linaro.org>
2175
2176         * spu-tdep.c (spu_software_single_step): Throw error when
2177         target_read_memory fails.
2178
2179 2016-03-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2180
2181         * linux-thread-db.c (check_pid_namespace_match): Extend the message.
2182
2183 2016-03-17  Pedro Alves  <palves@redhat.com>
2184             Don Breazeal  <donb@codesourcery.com>
2185
2186         PR remote/19496
2187         * infcmd.c (notice_new_inferior): Use the 'leave_running' argument
2188         instead of checking the 'non_stop' global.
2189         * remote.c (remote_add_thread): New parameter 'executing'.  Use it
2190         to set the new thread's executing state.
2191         (remote_notice_new_inferior): Rename parameter 'running' to
2192         'executing'.  Always set the thread state to THREAD_RUNNING in
2193         non-stop mode, and to THREAD_STOPPED in all-stop mode.  Pass
2194         EXECUTING to remote_add_thread and notice_new_inferior.
2195         (remote_update_thread_list): Update to pass executing state, not
2196         running state.
2197
2198 2016-03-17  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2199
2200         * syscalls/s390-linux.xml: Add NUMA syscalls and new syscalls up
2201         to 374.
2202         * syscalls/s390x-linux.xml: Likewise.
2203
2204 2016-03-17  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2205
2206         * linux-record.c (record_mem_at_reg): New helper function.
2207         (record_linux_system_call): Exploit new helper function where
2208         applicable.
2209
2210 2016-03-17  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2211
2212         * linux-record.c: Fix whitespace issues; tabify, remove trailing
2213         spaces.
2214
2215 2016-03-17  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2216
2217         * linux-record.c (record_linux_system_call): Add missing return
2218         statements to handling of pipe and pipe2 syscalls.
2219
2220 2016-03-16  Doug Evans  <dje@google.com>
2221
2222         * xml-tdesc.c (tdesc_start_enum): Fix c++ build.
2223
2224 2016-03-16  Yao Qi  <yao.qi@linaro.org>
2225
2226         * arm-linux-tdep.c (arm_linux_init_abi): Fix
2227         arm_linux_record_tdep.arg1, arm_linux_record_tdep.arg2 and
2228         arm_linux_record_tdep.arg3.  Set arm_linux_record_tdep.arg4,
2229         arm_linux_record_tdep.arg5, arm_linux_record_tdep.arg6, and
2230         arm_linux_record_tdep.arg7.
2231
2232 2016-03-15  Keith Seitz  <keiths@redhat.com>
2233
2234         PR breakpoints/18303
2235         * cp-namespace.c (cp_lookup_bare_symbol): Change assertion to
2236         look for "::" instead of simply ":".
2237         (cp_search_static_and_baseclasses): Return null_block_symbol for
2238         malformed input.
2239         Remove assertions.
2240         * cp-support.c (cp_find_first_component_aux): Do not return
2241         a prefix length for ':' unless the next character is also ':'.
2242
2243 2016-03-15  Doug Evans  <dje@google.com>
2244
2245         * features/aarch64-core.xml (cpsr_flags): New flags type.
2246         (cpsr): Use it.
2247         * features/aarch64.c: Regenerate.
2248
2249 2016-03-15  Doug Evans  <dje@google.com>
2250
2251         * features/i386/32bit-core.xml (i386_eflags): Remove "end" spec.
2252         * features/i386/32bit-sse.xml (i386_eflags): Ditto.
2253         * features/i386/64bit-core.xml (i386_eflags): Ditto.
2254         * features/i386/64bit-sse.xml (i386_eflags): Ditto.
2255         * features/i386/x32-core.xml (i386_eflags): Ditto.
2256
2257 2016-03-15  Doug Evans  <dje@google.com>
2258             Wei-cheng Wang  <cole945@gmail.com>
2259
2260         Extend flags to support multibit and enum bitfields.
2261         * NEWS: Document new features.
2262         * c-typeprint.c (c_type_print_varspec_prefix): Handle TYPE_CODE_FLAGS.
2263         (c_type_print_varspec_suffix, c_type_print_base): Ditto.
2264         * gdbtypes.c (arch_flags_type): Don't assume all fields are one bit.
2265         (append_flags_type_field): New function.
2266         (append_flags_type_flag): Call it.
2267         * gdbtypes.h (append_flags_type_field): Declare.
2268         * target-descriptions.c (struct tdesc_type_flag): Delete.
2269         (enum tdesc_type_kind) <TDESC_TYPE_BOOL>: New enum value.
2270         (enum tdesc_type_kind) <TDESC_TYPE_ENUM>: Ditto.
2271         (struct tdesc_type) <u.f>: Delete.
2272         (tdesc_predefined_types): Add "bool".
2273         (tdesc_predefined_type): New function.
2274         (tdesc_gdb_type): Handle TDESC_TYPE_BOOL, TDESC_TYPE_ENUM.
2275         Update TDESC_TYPE_FLAGS support.
2276         (tdesc_free_type): Handle TDESC_TYPE_ENUM.  Update TDESC_TYPE_FLAGS.
2277         (tdesc_create_flags): Update.
2278         (tdesc_create_enum): New function.
2279         (tdesc_add_field): Initialize start,end to -1.
2280         (tdesc_add_typed_bitfield): New function.
2281         (tdesc_add_bitfield): Call it.
2282         (tdesc_add_flag): Allow TDESC_TYPE_STRUCT.  Update.
2283         (tdesc_add_enum_value): New function.
2284         (maint_print_c_tdesc_cmd): Fold TDESC_TYPE_FLAGS support into
2285         TDESC_TYPE_STRUCT.  Handle TDESC_TYPE_ENUM.
2286         * target-descriptions.h (tdesc_create_enum): Declare.
2287         (tdesc_add_typed_bitfield, tdesc_add_enum_value): Declare.
2288         * valprint.c (generic_val_print_enum_1): New function.
2289         (generic_val_print_enum): Call it.
2290         (val_print_type_code_flags): Make static.  Handle multibit bitfields
2291         and enum bitfields.
2292         * valprint.h (val_print_type_code_flags): Delete.
2293         * xml-tdesc.c (struct tdesc_parsing_data) <current_type_is_flags>:
2294         Delete.  All uses removed.
2295         (tdesc_start_enum): New function.
2296         (tdesc_start_field): Handle multibit and enum bitfields.
2297         (tdesc_start_enum_value): New function.
2298         (enum_value_attributes, enum_children, enum_attributes): New static
2299         globals.
2300         (feature_children): Add "enum".
2301         * features/gdb-target.dtd (enum, evalue): New elements.
2302
2303 2016-03-15  Doug Evans  <dje@google.com>
2304
2305         * target-descriptions.c (struct tdesc_type) <u.u.size>: Change type
2306         from LONGEST to int.
2307         (struct tdesc_type) <u.f.size>: Ditto.
2308         (tdesc_set_struct_size): Change type of "size" arg from LONGEST
2309         to int.  Add assertion size > 0.
2310         (tdesc_create_flags): Ditto.
2311         * target-descriptions.h (tdesc_set_struct_size): Update.
2312         (tdesc_create_flags): Update.
2313         * xml-tdesc.c (MAX_FIELD_SIZE, MAX_FIELD_BITSIZE): New macros.
2314         (MAX_VECTOR_SIZE): New macro.
2315         (tdesc_start_struct): Catch conversion errors from LONGEST to int.
2316         (tdesc_start_flags, tdesc_start_field, tdesc_start_vector): Ditto.
2317
2318 2016-03-15  Doug Evans  <dje@google.com>
2319
2320         * target-descriptions.c (maint_print_c_tdesc_cmd): Use "type" for
2321         TYPE_CODE_FLAGS instead of "field_type", for consistency.
2322         * features/i386/amd64-avx-linux.c: Regenerate.
2323         * features/i386/amd64-avx.c: Regenerate.
2324         * features/i386/amd64-avx512-linux.c: Regenerate.
2325         * features/i386/amd64-avx512.c: Regenerate.
2326         * features/i386/amd64-linux.c: Regenerate.
2327         * features/i386/amd64-mpx-linux.c: Regenerate.
2328         * features/i386/amd64-mpx.c: Regenerate.
2329         * features/i386/amd64.c: Regenerate.
2330         * features/i386/i386-avx-linux.c: Regenerate.
2331         * features/i386/i386-avx.c: Regenerate.
2332         * features/i386/i386-avx512-linux.c: Regenerate.
2333         * features/i386/i386-avx512.c: Regenerate.
2334         * features/i386/i386-linux.c: Regenerate.
2335         * features/i386/i386-mmx-linux.c: Regenerate.
2336         * features/i386/i386-mmx.c: Regenerate.
2337         * features/i386/i386-mpx-linux.c: Regenerate.
2338         * features/i386/i386-mpx.c: Regenerate.
2339         * features/i386/i386.c: Regenerate.
2340         * features/i386/x32-avx-linux.c: Regenerate.
2341         * features/i386/x32-avx.c: Regenerate.
2342         * features/i386/x32-avx512-linux.c: Regenerate.
2343         * features/i386/x32-avx512.c: Regenerate.
2344         * features/i386/x32-linux.c: Regenerate.
2345         * features/i386/x32.c: Regenerate.
2346
2347 2016-03-15  Pedro Alves  <palves@redhat.com>
2348
2349         PR gdb/19676
2350         * linux-thread-db.c (try_thread_db_load_1): Leave
2351         info->td_ta_thr_iter_p NULL iff debugging a live process and we
2352         have /proc access.
2353         (find_new_threads_once): Assert that we have a non-NULL
2354         info->td_ta_thr_iter_p instead of checking whether the target has
2355         execution.
2356
2357 2016-03-15  Pedro Alves  <palves@redhat.com>
2358
2359         PR gdb/19676
2360         * infrun.c (displaced_step_prepare): Also disable displaced
2361         stepping on NOT_SUPPORTED_ERROR.
2362         * linux-tdep.c (linux_displaced_step_location): If reading auxv
2363         fails, throw NOT_SUPPORTED_ERROR instead of generic error.
2364
2365 2016-03-13  Marcin KoÅ›cielnicki  <koriakin@0x04.net>
2366
2367         * s390-linux-tdep.c (s390_gen_return_address): New function.
2368         (s390_gdbarch_init): Fill gen_return_address hook.
2369
2370 2016-03-11  Andrew Burgess  <andrew.burgess@embecosm.com>
2371
2372         * symmisc.c (maintenance_info_line_tables): New function.
2373         (maintenance_print_one_line_table): New function.
2374         (_initialize_symmisc): Register 'maint info line-table' command.
2375         * NEWS: Mention new command.
2376
2377 2016-03-11  Marcin KoÅ›cielnicki  <koriakin@0x04.net>
2378
2379         * s390-linux-tdep.c (s390_ax_pseudo_register_collect): New function.
2380         (s390_ax_pseudo_register_push_stack): New function.
2381         (s390_gdbarch_init): Fill ax_pseudo_register_collect and
2382         ax_pseudo_register_push_stack hooks.
2383
2384 2016-03-10  Simon Marchi  <simon.marchi@polymtl.ca>
2385
2386         * data-directory/Makefile.in (PYTHON_FILE_LIST): Install
2387         gdb/function/as_string.py.
2388         * python/lib/gdb/function/as_string.py: New file.
2389         * NEWS: Mention the new $_as_string function.
2390
2391 2016-03-09  Jose E. Marchesi  <jose.marchesi@oracle.com>
2392
2393         * target.h: Fix doc string of target_can_use_hardware_watchpoint.
2394
2395 2016-03-09  Pedro Alves  <palves@redhat.com>
2396
2397         * event-top.c (more_to_come): Delete.
2398         (struct readline_input_state): Delete.
2399         (readline_input_state): Delete.
2400         (get_command_line_buffer): New function.
2401         (command_handler): Update comments.  Don't handle NULL commands
2402         here.  Do not execute commented lines.
2403         (command_line_append_input_line): New function.
2404         (handle_line_of_input): New function, partly based on
2405         command_line_handler and command_line_input.
2406         (command_line_handler): Rewrite.
2407         * event-top.h (command_handler): New declaration.
2408         (command_loop): Defer command execution to command_handler.
2409         (command_line_input): Update comments.  Simplify, using struct
2410         buffer and handle_line_of_input.
2411         * top.h (struct buffer): New forward declaration.
2412         (handle_line_of_input): New declaration.
2413
2414 2016-03-09  Pedro Alves  <palves@redhat.com>
2415
2416         * event-top.c (command_line_handler): Use xfree + xstrdup instead
2417         of xrealloc + strcpy.
2418         * main.c (captured_main): Use xstrdup instead of xmalloc plus
2419         manual clear.
2420         * top.c (saved_command_line): Rewrite comment.
2421         (saved_command_line_size): Delete.
2422         (command_line_input): Use xfree + xstrdup instead of xrealloc +
2423         strcpy.
2424         * top.h (saved_command_line_size): Delete declaration.
2425
2426 2016-03-09  Pedro Alves  <palves@redhat.com>
2427
2428         * event-top.c: Include buffer.h.
2429         (gdb_readline_no_editing_callback): Use struct buffer instead
2430         of xrealloc.
2431
2432 2016-03-09  Pedro Alves  <palves@redhat.com>
2433
2434         * common/buffer.h (buffer_grow_char): New function.
2435         * top.c: Include buffer.h.
2436         (gdb_readline_no_editing): Rename 'prompt_arg' parameter to
2437         'prompt'.  Use struct buffer instead of xrealloc.
2438
2439 2016-03-09  Pedro Alves  <palves@redhat.com>
2440
2441         * defs.h (gdb_readline): Delete declaration.
2442         * top.c (gdb_readline): Rename to ...
2443         (gdb_readline_no_editing): ... this, and make static.
2444
2445 2016-03-09  Pedro Alves  <palves@redhat.com>
2446
2447         * utils.c (prompt_for_continue): Update comments.
2448
2449 2016-03-09  Pedro Alves  <palves@redhat.com>
2450
2451         * event-top.c (async_annotation_suffix): Delete.
2452         (top_level_prompt, command_line_handler): Don't use
2453         'async_annotation_suffix' and simplify.
2454         * event-top.h (async_annotation_suffix): Delete declaration.
2455         (init_main): Remove reference to 'async_annotation_suffix'.
2456
2457 2016-03-09  Pedro Alves  <palves@redhat.com>
2458
2459         * event-top.c (gdb_readline2): Rename to ...
2460         (gdb_readline_no_editing_callback): ... this.
2461         (change_line_handler, stdin_event_handler)
2462         (gdb_setup_readline): Adjust.
2463         * event-top.h (gdb_readline2): Rename to ...
2464         (gdb_readline_no_editing_callback): ... this, and move closer to
2465         other readline-related declarations.
2466         * mi/mi-interp.c (mi_interpreter_resume): Adjust.
2467
2468 2016-03-09  Pedro Alves  <palves@redhat.com>
2469
2470         * top.c (window_hook): Delete.
2471         (command_loop): Remove references to window_hook.
2472
2473 2016-03-09  Marcin KoÅ›cielnicki  <koriakin@0x04.net>
2474
2475         * corefile.c (safe_read_memory_unsigned_integer): New function.
2476         * gdbcore.h (safe_read_memory_unsigned_integer): New prototype.
2477         * rs6000-tdep.c (rs6000_frame_cache): Read backchain as unsigned.
2478
2479 2016-03-09  Marcin KoÅ›cielnicki  <koriakin@0x04.net>
2480
2481         * rs6000-tdep.c: Add "ax.h" and "ax-gdb.h" includes.
2482         (rs6000_gen_return_address): New function.
2483         (rs6000_gdbarch_init): Wire in the above.
2484
2485 2016-03-09  Marcin KoÅ›cielnicki  <koriakin@0x04.net>
2486
2487         * rs6000-tdep.c (rs6000_ax_pseudo_register_collect): New function.
2488         (rs6000_gdbarch_init): Wire in the above.
2489
2490 2016-03-09  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2491
2492         * s390-linux-tdep.c (s390_analyze_prologue): Ignore BRC and BRCL
2493         instructions that do nothing or are conditional traps.
2494
2495 2016-03-09  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2496
2497         * s390-linux-tdep.c (s390_prologue_frame_unwind_cache): Store
2498         frame func's PC in info->func before any other failure can occur.
2499         (s390_frame_this_id): Use frame_id_build_unavailable_stack if
2500         info->func has been filled out.
2501
2502 2016-03-09  Pedro Alves  <palves@redhat.com>
2503
2504         * osabi.c (gdb_osabi_names): Avoid spaces in osabi names.
2505
2506 2016-03-09  Pedro Alves  <palves@redhat.com>
2507
2508         * frv-tdep.c (frv_gdbarch_init): Handle bfd_mach_fr300.
2509
2510 2016-03-09  Pedro Alves  <palves@redhat.com>
2511
2512         * cris-tdep.c (cris_gdbarch_init): Return 0 if the info's byte
2513         order is BFD_ENDIAN_BIG or if the cris version is unsupported.
2514
2515 2016-03-09  Pedro Alves  <palves@redhat.com>
2516
2517         * doublest.c: Extend comments.
2518         (floatformat_to_doublest, floatformat_from_doublest): Copy the
2519         floatformat's total size, not the host type's size.
2520
2521 2016-03-09  Pedro Alves  <palves@redhat.com>
2522
2523         * doublest.c (floatformat_totalsize_bytes): New function.
2524         (floatformat_from_type): Assert that the type's length is at least
2525         as long as the floatformat's totalsize.
2526         * doublest.h (floatformat_totalsize_bytes): New declaration.
2527         * gdbtypes.c (arch_float_type): Assert that the type's length is
2528         at least as long as the floatformat's totalsize.
2529
2530 2016-03-09  Pedro Alves  <palves@redhat.com>
2531
2532         * hppa-linux-tdep.c (hppa_linux_init_abi): Set the long double
2533         format to floatformats_ieee_double.
2534
2535 2016-03-07  Pedro Alves  <palves@redhat.com>
2536
2537         * mips-tdep.c (mips_gdbarch_init): Check whether info.abfd is NULL
2538         before calling bfd_get_flavour.
2539
2540 2016-03-05  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
2541
2542         * avr-tdep.c (AVR_LAST_ARG_REGNUM): Define.
2543         (avr_push_dummy_call): Correct last needed argument register.
2544         Write MSB of argument into register and subsequent bytes into
2545         other registers in decreasing order.
2546
2547 2016-03-04  Yao Qi  <yao.qi@linaro.org>
2548
2549         * arm-tdep.c (arm_record_vdata_transfer_insn): Simplify the
2550         condition check.  Record the right D register number.
2551
2552 2016-03-04  Yao Qi  <yao.qi@linaro.org>
2553
2554         * arm-tdep.c (arm_record_extension_space): Remove code
2555         printing "Process record does not support".
2556         (arm_record_data_proc_misc_ld_str): Likewise.
2557         (decode_insn): Call arm_record_extension_space if condition
2558         is 0xf.  Call arm_record_unsupported_insn if ret isn't
2559         ARM_RECORD_SUCCESS.  Use 'ret' instead of 'insn_id' to hold
2560         the value of thumb2_record_decode_insn_handler.
2561
2562 2016-03-04  Simon Marchi  <simon.marchi@ericsson.com>
2563
2564         * features/feature_to_c.sh: Print the help when passing no
2565         argument.
2566
2567 2016-03-02  Bernhard Heckel  <bernhard.heckel@intel.com>
2568
2569         * MAINTAINERS (Write After Approval): Add Bernhard Heckel.
2570
2571 2016-03-02  Bernhard Heckel  <bernhard.heckel@intel.com>
2572
2573         * dwarf2read.c (new_symbol_full): Fix detection of gfortran compilers.
2574
2575 2016-03-01  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2576
2577         * s390-linux-tdep.c (s390_backchain_frame_unwind_cache): Avoid
2578         exception when attempting to access the inferior's backchain.
2579
2580 2016-02-29  Yao Qi  <yao.qi@linaro.org>
2581
2582         * aarch64-linux-tdep.c (aarch64_canonicalize_syscall): Support
2583         eventfd2, eventfd2, dup3, inotify_init1, fallocate and pipe2.
2584         Return gdb_sys_epoll_create1 instead of gdb_sys_epoll_create
2585         for aarch64_sys_epoll_create1.
2586
2587 2016-02-29  Yao Qi  <yao.qi@linaro.org>
2588
2589         * linux-record.h (enum gdb_syscall) <gdb_sys_fallocate>: New.
2590         <gdb_sys_eventfd2, gdb_sys_epoll_create1, gdb_sys_dup3>: New.
2591         <gdb_sys_pipe2, gdb_sys_inotify_init1>: New.
2592         * linux-record.c (record_linux_system_call): Handle them.
2593
2594 2016-02-28  Iain Buclaw  <ibuclaw@gdcproject.org>
2595
2596         * d-namespace.c (d_lookup_symbol_imports): Avoid recursive lookups from
2597         cyclic imports.
2598
2599 2016-02-26  Keith Seitz  <keiths@redhat.com>
2600
2601         * rs6000-tdep.c (rs6000_frame_cache): Explicitly cast return result
2602         to avoid invalid conversion from void *.
2603
2604 2016-02-26  Yao Qi  <yao.qi@linaro.org>
2605
2606         * arm-tdep.c (arm_record_exreg_ld_st_insn): Set 'single_reg'
2607         per bit 8.  Check bit 20 instead of bit 4 for VMOV
2608         instruction.  Record D registers for instructions changing
2609         S registers.  Change of the order of length and address
2610         in record_buf_mem array.
2611
2612 2016-02-26  Yao Qi  <yao.qi@linaro.org>
2613
2614         * arm-tdep.c (thumb_record_ld_st_reg_offset): Fix the register
2615         number of Rd.
2616
2617 2016-02-25  Doug Evans  <dje@google.com>
2618
2619         * remote-m32r-sdi.c (recv_char_data): Initialize val to avoid
2620         compiler warning.
2621         (recv_long_data): Ditto.
2622
2623 2016-02-25  Simon Marchi  <simon.marchi@ericsson.com>
2624
2625         * i386-linux-tdep.c (i386_linux_handle_segmentation_fault):
2626         Initialize variables.
2627
2628 2016-02-25  Antoine Tremblay  <antoine.tremblay@ericsson.com>
2629
2630         * ax-general.c (ax_reg): Call gdbarch_remote_register_number.
2631         (ax_reg_mask): Likewise.
2632
2633 2016-02-24  Pedro Alves  <palves@redhat.com>
2634
2635         * linux-nat.c (save_sigtrap) Delete.
2636         (stop_wait_callback): Call save_stop_reason instead of
2637         save_sigtrap.
2638         (check_stopped_by_breakpoint): Rename to ...
2639         (save_stop_reason): ... this.  Bits of save_sigtrap folded here.
2640         Use GDB_ARCH_IS_TRAP_HWBKPT and handle ambiguous
2641         GDB_ARCH_IS_TRAP_BRKPT / GDB_ARCH_IS_TRAP_HWBKPT.  Factor out
2642         common code between the USE_SIGTRAP_SIGINFO and
2643         !USE_SIGTRAP_SIGINFO blocks.
2644         (linux_nat_filter_event): Call save_stop_reason instead of
2645         save_sigtrap.
2646         * nat/linux-ptrace.h: Check for both SI_KERNEL and TRAP_BRKPT
2647         si_code for MIPS.
2648         * nat/linux-ptrace.h: Fix "TRAP_HWBPT" typo in x86 table.  Add
2649         comments on MIPS behavior.
2650         (GDB_ARCH_IS_TRAP_HWBKPT): Define for all archs.
2651
2652 2016-02-24  Marcin KoÅ›cielnicki  <koriakin@0x04.net>
2653
2654         * rs6000-tdep.c (rs6000_frame_cache): Initialize frame and pc to 0
2655         to avoid spurious warnings.
2656
2657 2016-02-24  Gary Benson  <gbenson@redhat.com>
2658
2659         * exec.c (exec_file_locate_attach): Do not attempt to
2660         locate main executable locally if not found in sysroot.
2661
2662 2016-02-24  Joel Brobecker  <brobecker@adacore.com>
2663
2664         GDB 7.11 released.
2665
2666 2016-02-24  Wei-cheng Wang  <cole945@gmail.com>
2667
2668         * rs6000-tdep.c (rs6000_frame_cache, rs6000_frame_this_id): Handle
2669         unavailable PC/SP to build unavailable frame.
2670
2671 2016-02-23  Doug Evans  <dje@google.com>
2672
2673         Extend "skip" command to support -file, -gfile, -function, -rfunction.
2674         * NEWS: Document new features.
2675         * skip.c: #include "fnmatch.h", "gdb_regex.h".
2676         (skiplist_entry) <file>: Renamed from filename.
2677         <function>: Renamed from function_name.
2678         <file_is_glob, function_is_regexp>: New members.
2679         <compiled_function_regexp, compiled_function_regexp_is_valid>:
2680         New members.
2681         (make_skip_entry): New function.
2682         (free_skiplist_entry, free_skiplist_entry_cleanup): New functions.
2683         (make_free_skiplist_entry_cleanup): New function.
2684         (skip_file_command): Update.
2685         (skip_function, skip_function_command): Update.
2686         (compile_skip_regexp): New functions.
2687         (skip_command): Add support for new options.
2688         (skip_info): Update.
2689         (skip_file_p, skip_gfile_p): New functions.
2690         (skip_function_p, skip_rfunction_p): New functions.
2691         (function_name_is_marked_for_skip): Update and simplify.
2692         (_initialize_step_skip): Update.
2693         * symtab.c: #include "fnmatch.h".
2694         (compare_glob_filenames_for_search): New function.
2695         * symtab.h (compare_glob_filenames_for_search): Declare.
2696         * utils.c (count_path_elements): New function.
2697         (strip_leading_path_elements): New function.
2698         * utils.h (count_path_elements): Declare.
2699         (strip_leading_path_elements): Declare.
2700
2701 2016-02-23  Simon Marchi  <simon.marchi@ericsson.com>
2702
2703         * arm-tdep.c (arm_decode_svc_copro): Remove "to" parameter.
2704         (thumb_process_displaced_insn): Likewise.
2705         (arm_process_displaced_insn): Adjust calls.
2706
2707 2016-02-23  Yao Qi  <yao.qi@linaro.org>
2708
2709         * aarch64-linux-tdep.c (enum aarch64_syscall) <aarch64_sys_mknod>:
2710         Remove.
2711         <aarch64_sys_mkdir, aarch64_sys_unlink, aarch64_sys_symlink>: Remove.
2712         <aarch64_sys_link, aarch64_sys_rename, aarch64_sys_faccess>: Remove.
2713         <aarch64_sys_mknodat, aarch64_sys_mkdirat>: New.
2714         <aarch64_sys_unlinkat, aarch64_sys_symlinkat>: New.
2715         <aarch64_sys_linkat, aarch64_sys_renameat>: New.
2716         <aarch64_sys_faccessat>: New.
2717         <aarch64_sys_open, aarch64_sys_readlink, aarch64_sys_fstatat>: Remove.
2718         <aarch64_sys_openat, aarch64_sys_readlinkat>: New.
2719         <aarch64_sys_newfstatat>: New.
2720         (UNSUPPORTED_SYSCALL_MAP): New macro.
2721         (aarch64_canonicalize_syscall): Add missing syscalls.
2722
2723 2016-02-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
2724
2725         * gdb-gdb.py (class TypeFlagsPrinter): Use parentheses for print.
2726
2727 2016-02-22  Yao Qi  <yao.qi@linaro.org>
2728
2729         * arm-tdep.c: Fix code format issues.
2730
2731 2016-02-21  Iain Buclaw  <ibuclaw@gdcproject.org>
2732
2733         * d-namespace.c (d_lookup_symbol_imports): Remove argument
2734         'search_parents'.  All callers updated.
2735
2736 2016-02-18  Marcin KoÅ›cielnicki  <koriakin@0x04.net>
2737
2738         * s390-linux-tdep.c (s390_guess_tracepoint_registers): New function.
2739         (s390_gdbarch_init): Fill guess_tracepoint_registers hook.
2740
2741 2016-02-18  Walfred Tedeschi  <walfred.tedeschi@intel.com>
2742
2743         * NEWS: Add entry for bound violation.
2744         * amd64-linux-tdep.c (amd64_linux_init_abi_common):
2745         Add handler for segmentation fault.
2746         * gdbarch.sh (handle_segmentation_fault): New.
2747         * gdbarch.c: Regenerate.
2748         * gdbarch.h: Regenerate.
2749         * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): New.
2750         (SIG_CODE_BONDARY_FAULT): New define.
2751         (i386_linux_init_abi): Use i386_mpx_bound_violation_handler.
2752         * i386-linux-tdep.h (i386_linux_handle_segmentation_fault) New.
2753         * i386-tdep.c (i386_mpx_enabled): Add as external.
2754         * i386-tdep.c (i386_mpx_enabled): Add as external.
2755         * infrun.c (handle_segmentation_fault): New function.
2756         (print_signal_received_reason): Use handle_segmentation_fault.
2757
2758 2016-02-18  Marcin KoÅ›cielnicki  <koriakin@0x04.net>
2759
2760         * arch-utils.c (default_guess_tracepoint_registers): New function.
2761         * arch-utils.h (default_guess_tracepoint_registers): New prototype.
2762         * gdbarch.c: Regenerate.
2763         * gdbarch.h: Regenerate.
2764         * gdbarch.sh: Add guess_tracepoint_registers hook.
2765         * tracefile.c (tracefile_fetch_registers): Use the new gdbarch hook.
2766
2767 2016-02-17  Gary Benson  <gbenson@redhat.com>
2768
2769         * exec.c (exec_file_locate_attach): Add missing cleanup.
2770
2771 2016-02-16  Don Breazeal  <donb@codesourcery.com>
2772
2773         PR remote/19496
2774         * remote.c (remove_new_fork_children): Check for pending
2775         fork status in thread_info.suspend.
2776
2777 2016-02-16  Yao Qi  <yao.qi@linaro.org>
2778
2779         * arm-linux-tdep.c (arm_linux_software_single_step): Assign
2780         'old_chain' later.
2781
2782 2016-02-16  Yao Qi  <yao.qi@linaro.org>
2783
2784         * arch/arm-get-next-pcs.h (struct arm_get_next_pcs_ops)
2785         <syscall_next_pc>: Remove argument PC.  Callers updated.
2786         * arm-linux-tdep.c (arm_linux_get_next_pcs_syscall_next_pc):
2787         Remove argument PC.  Get pc from regcache_read_pc.
2788         * arm-tdep.c (arm_get_next_pcs_syscall_next_pc): Remove
2789         argument PC.
2790
2791 2016-02-15  Yao Qi  <yao.qi@linaro.org>
2792
2793         * aarch64-tdep.c (aarch64_analyze_prologue): Remove "0x".
2794
2795 2016-02-12  Yao Qi  <yao.qi@linaro.org>
2796
2797         * arch/arm-linux.c (arm_linux_get_next_pcs_fixup): Calculate
2798         nextpc according to instruction.
2799
2800 2016-02-12  Yao Qi  <yao.qi@linaro.org>
2801
2802         * arch/arm-get-next-pcs.c (arm_get_next_pcs): Call
2803         self->ops->fixup if it isn't NULL.
2804         * arch/arm-get-next-pcs.h: Include gdb_vecs.h.
2805         (struct arm_get_next_pcs_ops) <fixup>: New field.
2806         * arch/arm-linux.c: Include common-regcache.h and
2807         arch/arm-get-next-pcs.h.
2808         (arm_linux_get_next_pcs_fixup): New function.
2809         * arch/arm-linux.h (arm_linux_get_next_pcs_fixup): Declare.
2810         * arm-linux-tdep.c (arm_linux_get_next_pcs_ops): Initialize
2811         it with arm_linux_get_next_pcs_fixup.
2812         (arm_linux_software_single_step): Move code to
2813         arm_linux_get_next_pcs_fixup.
2814         * arm-tdep.c (arm_get_next_pcs_ops): Initialize it.
2815
2816 2016-02-12  Marcin KoÅ›cielnicki  <koriakin@0x04.net>
2817
2818         * xml-tdesc.c (target_fetch_description_xml) [!HAVE_LIBEXPAT]: Warn
2819         and return NULL.
2820
2821 2016-02-12  Markus Metzger  <markus.t.metzger@intel.com>
2822
2823         * frame.h (skip_tailcall_frames): Update comment.
2824         * frame.c (skip_artificial_frames, skip_tailcall_frames): Return NULL
2825         if only artificial frames are found.  Update comment.
2826         (frame_unwind_caller_id): Handle NULL return.
2827         (frame_unwind_caller_pc, frame_unwind_caller_arch): Assert that
2828         skip_artificial_frames does not return NULL.
2829         (frame_pop): Add an error if only tailcall frames are found.
2830         * infcmd.c (finish_command): Move skip_tailcall_frames call into
2831         forward-execution case.  Add an error if only tailcall frames are
2832         found.
2833
2834 2016-02-12  Markus Metzger  <markus.t.metzger@intel.com>
2835
2836         * stack.c (frame_info): Check frame_unwind_caller_id.
2837
2838 2016-02-12  Markus Metzger  <markus.t.metzger@intel.com>
2839
2840         * frame.h (skip_tailcall_frames): New.
2841         * frame.c (skip_tailcall_frames): New.
2842         (frame_pop): Call skip_tailcall_frames.
2843         * infcmd.c (finish_command): Call skip_tailcall_frames.
2844
2845 2016-02-11  Pedro Alves  <palves@redhat.com>
2846
2847         * Makefile.in (check-parallel): New rule.
2848
2849 2016-02-11  Simon Marchi  <simon.marchi@ericsson.com>
2850
2851         * arm-tdep.c (arm_skip_prologue): Remove unused variables.
2852         (arm_analyze_prologue): Likewise.
2853         (arm_scan_prologue): Likewise.
2854         (arm_m_exception_prev_register): Likewise.
2855         (arm_copy_block_xfer): Likewise.
2856         (thumb2_copy_block_xfer): Likewise.
2857         (arm_decode_miscellaneous): Likewise.
2858         (arm_decode_ld_st_word_ubyte): Likewise.
2859         (arm_decode_svc_copro): Likewise.
2860         (thumb2_decode_svc_copro): Likewise.
2861         (thumb_copy_16bit_ldr_literal): Likewise.
2862         (thumb_copy_pop_pc_16bit): Likewise.
2863         (decode_thumb_32bit_ld_mem_hints): Likewise.
2864         (arm_show_force_mode): Likewise.
2865         (_initialize_arm_tdep): Likewise.
2866         (arm_record_strx): Likewise.
2867         (arm_record_extension_space): Likewise.
2868         (arm_record_data_proc_misc_ld_str): Likewise.
2869         (arm_record_exreg_ld_st_insn): Likewise.
2870         (arm_record_vfp_data_proc_insn): Likewise.
2871         (arm_record_coproc_data_proc): Likewise.
2872         (thumb_record_misc): Likewise.
2873         (thumb_record_ldm_stm_swi): Likewise.
2874         (thumb2_record_ld_st_dual_ex_tbb): Likewise.
2875         (thumb2_record_ld_mem_hints): Likewise.
2876         (thumb2_record_lmul_lmla_div): Likewise.
2877         (thumb2_record_asimd_struct_ld_st): Likewise.
2878         (arm_process_record): Likewise.
2879
2880 2016-02-11  Simon Marchi  <simon.marchi@ericsson.com>
2881
2882         * arm-tdep.c (arm_displaced_step_copy_insn): Remove.
2883         (ARM displaced stepping support): Remove reference to
2884         arm_displaced_step_copy_insn in comment.
2885         * arm-tdep.h (arm_displaced_step_copy_insn): Remove.
2886         * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Remove
2887         reference to arm_displaced_step_copy_insn in comment.
2888
2889 2016-02-11  Simon Marchi  <simon.marchi@ericsson.com>
2890
2891         * arm-tdep.c (thumb_copy_unmodified_16bit): Change type of insn.
2892         (thumb_copy_b): Likewise.
2893         (arm_decode_b_bl_ldmstm): Likewise.
2894         (thumb_copy_16bit_ldr_literal): Likewise.
2895         (thumb_copy_pop_pc_16bit): Likewise.
2896
2897 2016-02-11  Antoine Tremblay  <antoine.tremblay@ericsson.com>
2898
2899         * tracepoint.c (encode_actions_1): Use target_gdbarch () rather
2900         than loc->gdbarch.
2901
2902 2016-02-10  Marcin KoÅ›cielnicki  <koriakin@0x04.net>
2903
2904         * tracefile-tfile.c (trace_tdesc): New static variable.
2905         (tfile_open): Clear trace_tdesc, call target_find_description.
2906         (tfile_interp_line): Recognize tdesc lines.
2907         (tfile_close): Clear trace_tdesc.
2908         (tfile_xfer_partial_features): New function.
2909         (tfile_xfer_partial): Call tfile_xfer_partial_features.
2910         (tfile_append_tdesc_line): New function.
2911
2912 2016-02-10  Marcin KoÅ›cielnicki  <koriakin@0x04.net>
2913
2914         * ctf.c (ctf_write_tdesc): New function.
2915         (ctf_write_ops): Wire in ctf_write_tdesc.
2916         * tracefile-tfile.c (tfile_write_tdesc): New function.
2917         (tfile_write_ops): Wire in tfile_write_tdesc.
2918         * tracefile.c (trace_save): Call write_tdesc method.
2919         * tracefile.h (struct trace_file_write_ops): Add write_tdesc method.
2920         * xml-tdesc.c (target_fetch_description_xml): New function.
2921         * xml-tdesc.h: Add target_fetch_description_xml prototype.
2922
2923 2016-02-10  Simon Marchi  <simon.marchi@ericsson.com>
2924
2925         * arm-tdep.c (arm_copy_extra_ld_st): Fix "unpriveleged" typo.
2926         (arm_decode_dp_misc): Likewise.
2927
2928 2016-02-10  Marcin KoÅ›cielnicki  <koriakin@0x04.net>
2929
2930         * amd64-tdep.c (amd64_ax_pseudo_register_collect): New function.
2931         (amd64_init_abi): Fill ax_pseudo_register_collect hook.
2932         * gdb/i386-tdep.c (i386_pseudo_register_read_into_value): Remove
2933         misleading comment.
2934         (i386_pseudo_register_write): Ditto.
2935         (i386_ax_pseudo_register_collect): New function.
2936         (i386_gdbarch_init): Fill ax_pseudo_register_collect hook.
2937         * i386-tdep.h: Add i386_ax_pseudo_register_collect prototype.
2938
2939 2016-02-10  Marcin KoÅ›cielnicki  <koriakin@0x04.net>
2940
2941         * tracefile-tfile.c (tfile_fetch_registers): Use g packet order
2942         instead of gdb order.
2943
2944 2016-02-10  Marcin KoÅ›cielnicki  <koriakin@0x04.net>
2945
2946         * tracefile-tfile.c (tfile_fetch_registers): Fix off-by-one in bounds
2947         check.
2948
2949 2016-02-10  Joel Brobecker  <brobecker@adacore.com>
2950
2951         * NEWS: Create a new section for the next release branch.
2952         Rename the section of the current branch, now that it has
2953         been cut.
2954
2955 2016-02-10  Joel Brobecker  <brobecker@adacore.com>
2956
2957         GDB 7.11 branch created (9ef9e6a6a0dd8f948708cb67c9afcfd0be40cb0a):
2958         * version.in: Bump version to 7.11.50.DATE-git.
2959
2960 2016-02-09  Keith Seitz  <keiths@redhat.com>
2961
2962         PR breakpoints/19546
2963         * breakpoint.c (breakpoint_event_location_empty_p): New function.
2964         (update_breakpoints_after_exec, bkpt_re_set): Use this new function
2965         instead of event_location_empty_p.
2966
2967 2016-02-09  Keith Seitz  <keiths@redhat.com>
2968
2969         * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Use
2970         string_to_event_location_basic instead of string_to_event_location.
2971
2972 2016-02-09  Keith Seitz  <keiths@redhat.com>
2973
2974         * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Skip
2975         leading whitespace and use string_to_event_location_basic instead
2976         of new_linespec_location.
2977
2978 2016-02-09  Keith Seitz  <keiths@redhat.com>
2979
2980         PR python/19506
2981         * python/py-breakpoint.c (bppy_init): Use
2982         string_to_event_location_basic instead of new_linespec_location.
2983
2984 2016-02-09  Keith Seitz  <keiths@redhat.com>
2985
2986         * location.c (string_to_explicit_location): Note that "-p" is
2987         reserved for probe locations and return NULL for any input
2988         that starts with that.
2989         (string_to_event_location): Move "legacy" linespec code to ...
2990         (string_to_event_location_basic): ... here.
2991         * location.h (string_to_event_location): Update comment.
2992         (string_to_event_location_basic): New function.
2993
2994 2016-02-09  Simon Marchi  <simon.marchi@ericsson.com>
2995
2996         * configure.ac: Use AC_CONFIG_FILES instead of passing arguments
2997         to AC_OUTPUT.  Remove "exit 0" at the end.
2998         * configure: Regenerate.
2999
3000 2016-02-09  Pedro Alves  <palves@redhat.com>
3001
3002         PR breakpoints/19548
3003         * breakpoint.c (create_overlay_event_breakpoint): Don't update
3004         global location list here.
3005         (create_longjmp_master_breakpoint)
3006         (create_std_terminate_master_breakpoint)
3007         (create_exception_master_breakpoint, create_jit_event_breakpoint)
3008         (update_breakpoint_locations):
3009         (breakpoint_re_set): Update global location list after all
3010         breakpoints are re-set.
3011
3012 2016-02-08  Simon Marchi  <simon.marchi@ericsson.com>
3013
3014         * remote.c (remote_register_number_and_offset): Remove unused
3015         variable(s).
3016         (remote_thread_always_alive): Likewise.
3017         (remote_update_thread_list): Likewise.
3018         (process_initial_stop_replies): Likewise.
3019         (remote_start_remote): Likewise.
3020         (remote_check_symbols): Likewise.
3021         (discard_pending_stop_replies): Likewise.
3022         (process_stop_reply): Likewise.
3023         (putpkt_binary): Likewise.
3024         (getpkt): Likewise.
3025         (remote_add_target_side_condition): Likewise.
3026         (remote_insert_breakpoint): Likewise.
3027         (remote_supports_stopped_by_sw_breakpoint): Likewise.
3028         (remote_supports_stopped_by_hw_breakpoint): Likewise.
3029         (remote_xfer_partial): Likewise.
3030         (remote_read_btrace): Likewise.
3031         (remote_async_serial_handler): Likewise.
3032         (remote_thread_events): Likewise.
3033         (_initialize_remote): Likewise.
3034
3035 2016-02-07  Simon Marchi  <simon.marchi@polymtl.ca>
3036
3037         * varobj.h (varobj_delete): Remove dellist parameter, update and
3038         move documentation here.
3039         * varobj.c (struct cpstack, cppush, cppop): Remove.
3040         (delete_variable): Remove resultp (first) parameter.
3041         (delete_variable_1): Likewise.
3042         (varobj_delete): Remove dellist parameter and unused code.
3043         (update_dynamic_varobj_children): Adjust varobj_delete call.
3044         (update_type_if_necessary): Likewise.
3045         (varobj_set_visualizer): Likewise.
3046         (varobj_update): Likewise.
3047         (value_of_root): Likewise.
3048         (varobj_invalidate_iter): Likewise.
3049         * mi/mi-cmd-var.c (mi_cmd_var_delete): Likewise.
3050
3051 2016-02-04  Yao Qi  <yao.qi@linaro.org>
3052
3053         * remote.c (remote_wait_as): Set rs->waiting_for_stop_reply to
3054         0 before handling 'F' and set it back afterwards.
3055
3056 2016-02-02  Simon Marchi  <simon.marchi@ericsson.com>
3057
3058         * ui-out.c (MAX_UI_OUT_LEVELS): Remove.
3059
3060 2016-02-02  Walfred Tedeschi  <walfred.tedeschi@intel.com>
3061
3062         * amd64-linux-siginfo.c (nat_siginfo_t, nat_sigval_t, nat_timeval):
3063         New types.
3064         (compat_siginfo): New bound fields added.
3065         (compat_x32_siginfo): New field added.
3066         (cpt_si_addr_lsb): New define.
3067         (compat_siginfo_from_siginfo): Use nat_siginfo.
3068         (siginfo_from_compat_siginfo): Use nat_siginfo.
3069         (compat_x32_siginfo_from_siginfo): Likewise.
3070         (siginfo_from_compat_x32_siginfo): Likewise.
3071
3072 2016-02-02  Walfred Tedeschi  <walfred.tedeschi@intel.com>
3073
3074         * linux-tdep.c (linux_get_siginfo_type): Add the _addr_bnd
3075         structure to the siginfo if extra_fields contains
3076         LINUX_SIGINFO_FIELD_ADDR_BND.
3077
3078 2016-02-02  Walfred Tedeschi  <walfred.tedeschi@intel.com>
3079
3080         * linux-tdep.h (linux_get_siginfo_type_with_fields): Make extern.
3081         * linux-tdep.c (linux_get_siginfo_type_with_fields): Make extern.
3082         * i386-linux-tdep.h (x86_linux_get_siginfo_type): New
3083         function.
3084         * amd64-linux-tdep.c (amd64_linux_init_abi_common): Add
3085         x86_linux_get_siginfo_type for the amd64 abi.
3086         * i386-linux-tdep.c (x86_linux_get_siginfo_type): New
3087         function.
3088         (i386_linux_init_abi): Add new function at the i386 ABI
3089         initialization.
3090
3091 2016-02-02  Walfred Tedeschi  <walfred.tedeschi@intel.com>
3092
3093         * linux-tdep.h (linux_siginfo_extra_field_values): New enum values.
3094         (linux_siginfo_extra_fields): New enum type.
3095         * linux-tdep.c (linux_get_siginfo_type_with_fields): New function.
3096         (linux_get_siginfo_type): Use new function.
3097
3098 2016-02-02  Walfred Tedeschi  <walfred.tedeschi@intel.com>
3099
3100         * nat/amd64-linux-siginfo.c: New file.
3101         * nat/amd64-linux-siginfo.h: New file.
3102         * Makefile.in (HFILES_NO_SRCDIR): Add nat/amd64-linux-siginfo.h.
3103         (amd64-linux-siginfo.o): New rule.
3104         * config/i386/linux64.mh (NATDEPFILES): Add amd64-linux-siginfo.o.
3105         * amd64-linux-nat.c (nat/amd64-linux-siginfo.h): New include.
3106         (compat_siginfo_from_siginfo, siginfo_from_compat_siginfo)
3107         (compat_x32_siginfo_from_siginfo, siginfo_from_compat_x32_siginfo)
3108         (compat_timeval, compat_sigval, compat_x32_clock, cpt_si_pid)
3109         (cpt_si_uid, cpt_si_timerid, cpt_si_overrun, cpt_si_status)
3110         (cpt_si_utime, cpt_si_stime, cpt_si_ptr, cpt_si_addr, cpt_si_band)
3111         (cpt_si_fd, si_timerid, si_overrun): Move to nat/amd64-linux-siginfo.c.
3112
3113 2016-02-01  Andrew Burgess  <andrew.burgess@embecosm.com>
3114
3115         * value.c (max_value_size): New variable.
3116         (MIN_VALUE_FOR_MAX_VALUE_SIZE): New define.
3117         (set_max_value_size): New function.
3118         (show_max_value_size): New function.
3119         (check_type_length_before_alloc): New function.
3120         (allocate_value_contents): Call check_type_length_before_alloc.
3121         (set_value_enclosing_type): Likewise.
3122         (_initialize_values): Add set/show handler for max-value-size.
3123         * NEWS: Mention new set/show command.
3124
3125 2016-01-31  Simon Marchi  <simon.marchi@polymtl.ca>
3126
3127         * varobj.h (struct varobj): Fix typos in comments.
3128         (struct lang_varobj_ops): Likewise.
3129         * varobj.c (VAROBJ_TABLE_SIZE): Likewise.
3130         (varobj_create): Move misplaced comment.
3131
3132 2016-01-29  Simon Marchi  <simon.marchi@ericsson.com>
3133
3134         * aarch64-tdep.c (aarch64_record_asimd_load_store): Add braces
3135         to for include additional lines.
3136         * xcoffread.c (scan_xcoff_symtab): Remove unnecessary braces.
3137
3138 2016-01-28  Simon Marchi  <simon.marchi@ericsson.com>
3139
3140         * gnulib/import/Makefile.am: Regenerate.
3141         * gnulib/import/Makefile.in: Regenerate.
3142         * gnulib/import/m4/gnulib-cache.m4: Regenerate.
3143         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add rawmemchr.
3144
3145 2016-01-28  Simon Marchi  <simon.marchi@ericsson.com>
3146
3147         * remote.c (skip_to_semicolon): Remove.
3148         (remote_parse_stop_reply): Use strchrnul instead of
3149         skip_to_semicolon.
3150         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
3151         strchrnul.
3152         * gnulib/aclocal.m4: Regenerate.
3153         * gnulib/config.in: Regenerate.
3154         * gnulib/configure: Regenerate.
3155         * gnulib/import/Makefile.am: Regenerate.
3156         * gnulib/import/Makefile.in: Regenerate.
3157         * gnulib/import/m4/gnulib-cache.m4: Regenerate.
3158         * gnulib/import/m4/gnulib-comp.m4: Regenerate.
3159         * gnulib/import/m4/rawmemchr.m4: New file.
3160         * gnulib/import/m4/strchrnul.m4: New file.
3161         * gnulib/import/rawmemchr.c: New file.
3162         * gnulib/import/rawmemchr.valgrind: New file.
3163         * gnulib/import/strchrnul.c: New file.
3164         * gnulib/import/strchrnul.valgrind: New file.
3165
3166 2016-01-28  Yao Qi  <yao.qi@linaro.org>
3167
3168         * breakpoint.c (build_target_command_list): Don't call continue
3169         if aexpr is NULL.
3170         (build_target_condition_list): Likewise.
3171
3172 2016-01-27  Kevin Buettner  <kevinb@redhat.com>
3173
3174         * rx-tdep.c (rx_push_dummy_call): Treat scalars larger than 8
3175         bytes as aggregates.
3176
3177 2016-01-27  Joel Brobecker  <brobecker@adacore.com>
3178
3179         * MAINTAINERS (Responsible Maintainers): Add Keith Seitz as
3180         Linespec Maintainers.
3181
3182 2016-01-26  Simon Marchi  <simon.marchi@ericsson.com>
3183
3184         * common/common-utils.c (skip_spaces): Fix comment.
3185         (skip_to_space_const): Likewise.
3186
3187 2016-01-25  Yao Qi  <yao.qi@linaro.org>
3188
3189         * arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw):
3190         Remove argument pc.  Get pc by regcache_read_pc.  Callers updated.
3191         (arm_deal_with_atomic_sequence_raw): Likewise.
3192         (thumb_get_next_pcs_raw): Likewise.
3193         (arm_get_next_pcs_raw): Likewise.
3194         (arm_get_next_pcs): Remove argument pc.  Callers updated.
3195         * arch/arm-get-next-pcs.h (arm_get_next_pcs): Update declaration.
3196
3197 2016-01-25  Mark Wielaard  <mjw@redhat.com>
3198
3199         * ada-lang.c (ada_evaluate_subexp): Add proper else block.
3200         * c-typeprint.c (c_type_print_base): Fix misleading indentation of
3201         if statement.
3202         * inflow.c (child_terminal_ours_1): Fix misleading indentation of
3203         statement block by introducing an else.
3204         * linux-record.c (record_linux_sockaddr): Fix misleading indentation
3205         of return statements.
3206         (record_linux_msghdr): Likewise.
3207
3208 2016-01-25  Pedro Alves  <palves@redhat.com>
3209
3210         PR threads/19461
3211         * infrun.c (handle_inferior_event_1) <fork/vfork>: Update
3212         parent/child running states.
3213
3214 2016-01-25  Pedro Alves  <palves@redhat.com>
3215
3216         PR gdb/19494
3217         * linux-nat.c (kill_one_lwp): New, factored out from ...
3218         (kill_callback): ... this.
3219         (kill_wait_callback): New, factored out from ...
3220         (kill_wait_one_lwp): ... this.
3221         (kill_unfollowed_fork_children): New function.
3222         (linux_nat_kill): Use it.
3223
3224 2016-01-22  John Baldwin  <jhb@FreeBSD.org>
3225
3226         * fbsd-nat.c (fbsd_pid_to_str): Adjust string format.
3227
3228 2016-01-22  Yao Qi  <yao.qi@linaro.org>
3229
3230         * arm-linux-nat.c (fetch_fpregs): Call perror_with_name
3231         instead of warning.
3232         (store_fpregs, fetch_regs, store_regs): Likewise.
3233         (fetch_wmmx_regs, store_wmmx_regs): Likewise.
3234         (fetch_vfp_regs, store_vfp_regs): Likewise.
3235
3236 2016-01-21  Doug Evans  <dje@google.com>
3237
3238         * breakpoint.c (init_breakpoint_sal): Add comment.
3239
3240 2016-01-21  Marcin KoÅ›cielnicki  <koriakin@0x04.net>
3241
3242         * ax-gdb.c (gen_traced_pop): Use gen_fetch for string collection.
3243
3244 2016-01-21  Andrew Burgess  <andrew.burgess@embecosm.com>
3245
3246         * disasm.c (maybe_add_dis_line_entry): Rename to...
3247         (add_dis_line_entry): ...this, and update header comment.
3248         (do_mixed_source_and_assembly): Now use add_dis_line_entry.
3249
3250 2016-01-21  Pedro Alves  <palves@redhat.com>
3251
3252         * Makefile.in (COMPILER_CFLAGS): New.
3253         (CXXFLAGS): Get it from configure.
3254         (INTERNAL_CFLAGS_BASE, INTERNAL_LDFLAGS): Use COMPILER_CFLAGS
3255         instead of CFLAGS.
3256         * build-with-cxx.m4 (GDB_AC_BUILD_WITH_CXX): Set and AC_SUBST
3257         COMPILER_CFLAGS.
3258         * configure: Regenerate.
3259
3260 2016-01-21  Joel Brobecker  <brobecker@adacore.com>
3261
3262         * location.h (new_address_location): Add new parameters
3263         "addr_string" and "addr_string_len".
3264         (get_address_string_location): Add declaration.
3265         * location.c (new_address_location): Add new parameters
3266         "addr_string" and "addr_string_len".  If not NULL, store
3267         a copy of the addr_string in the new location as well.
3268         (get_address_string_location): New function.
3269         (string_to_event_location): Update call to new_address_location.
3270         * linespec.c (event_location_to_sals) <ADDRESS_LOCATION>:
3271         Save the event location in the parser's state before
3272         passing it to convert_address_location_to_sals.
3273         * breakpoint.c (create_thread_event_breakpoint): Update call
3274         to new_address_location.
3275         (init_breakpoint_sal): Get the event location's string, if any,
3276         and use it to update call to new_address_location.
3277         * python/py-finishbreakpoint.c (bpfinishpy_init):
3278         Update call to new_address_location.
3279         * spu-tdep.c (spu_catch_start): Likewise.
3280
3281         * config/djgpp/fnchange.lst: Add entries for
3282         gdb/testsuite/gdb.base/break-fun-addr1.c and
3283         gdb/testsuite/gdb.base/break-fun-addr2.c.
3284
3285 2016-01-21  Yao Qi  <yao.qi@linaro.org>
3286
3287         * arm-linux-tdep.c (arm_linux_sigreturn_next_pc): Add parameter
3288         is_thumb and set it according to CPSR saved on the stack.
3289         (arm_linux_get_next_pcs_syscall_next_pc): Pass is_thumb to
3290         arm_linux_sigreturn_next_pc.
3291
3292 2016-01-20  Simon Marchi  <simon.marchi@polymtl.ca>
3293
3294         * python/lib/gdb/printing.py (FlagEnumerationPrinter.__call__):
3295         Fix enumerators sort key function.
3296
3297 2016-01-20  Joel Brobecker  <brobecker@adacore.com>
3298
3299         * printcmd.c (print_scalar_formatted): Move binary operator from
3300         end of line to beginning of next line.  Adjust formatting
3301         accordingly.
3302
3303 2016-01-19  John Baldwin  <jhb@FreeBSD.org>
3304
3305         * fbsd-nat.c (fbsd_pid_to_exec_file): Use new "buflen" instead of
3306         "len" with sysctl.
3307
3308 2016-01-19  John Baldwin  <jhb@FreeBSD.org>
3309
3310         * fbsd-tdep.c (find_stop_signal): Remove.
3311         (struct fbsd_collect_regset_section_cb) <lwp>: New field.
3312         <stop_signal>: New field.
3313         <abort_iteration>: New field.
3314         (fbsd_collect_regset_section_cb): Use new fields.
3315         (fbsd_collect_thread_registers): New function.
3316         (struct fbsd_corefile_thread_data): New structure.
3317         (fbsd_corefile_thread): New function.
3318         (fbsd_make_corefile_notes): Use new function to dump notes for each
3319         non-exited thread in a process.
3320
3321 2016-01-19  John Baldwin  <jhb@FreeBSD.org>
3322
3323         * configure.ac: Check for support for LWP names on FreeBSD.
3324         * fbsd-nat.c [PT_LWPINFO] New variable debug_fbsd_lwp.
3325         [TDP_RFPPWAIT || HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME]
3326         (fbsd_fetch_kinfo_proc): Move function earlier.
3327         [PT_LWPINFO] (fbsd_thread_alive): New function.
3328         [PT_LWPINFO] (fbsd_pid_to_str): New function.
3329         [HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME] (fbsd_thread_name): New function.
3330         [PT_LWP_EVENTS] (fbsd_enable_lwp_events): New function.
3331         [PT_LWPINFO] (fbsd_add_threads): New function.
3332         [PT_LWPINFO] (fbsd_update_thread_list): New function.
3333         [PT_LWPINFO] New variable super_resume.
3334         [PT_LWPINFO] (resume_one_thread_cb): New function.
3335         [PT_LWPINFO] (resume_all_threads_cb): New function.
3336         [PT_LWPINFO] (fbsd_resume): New function.
3337         (fbsd_remember_child): Save full ptid instead of plain pid.
3338         (fbsd_is_child_pending): Return ptid of saved child process.
3339         (fbsd_wait): Include lwp in returned ptid and switch to LWP ptid on
3340         first stop.
3341         [PT_LWP_EVENTS] Handle LWP events.
3342         [TDP_RFPPWAIT] Include LWP in child ptid.
3343         (fbsd_post_startup_inferior) [PT_LWP_EVENTS]: Enable LWP events.
3344         (fbsd_post_attach) [PT_LWP_EVENTS]: Enable LWP events.
3345         Add threads for existing processes.
3346         (fbsd_nat_add_target) [PT_LWPINFO]: Set "to_thread_alive" to
3347         "fbsd_thread_alive".
3348         Set "to_pid_to_str" to "fbsd_pid_to_str".
3349         [HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME]: Set "to_thread_name" to
3350         "fbsd_thread_name".
3351         [PT_LWPINFO]: Set "to_update_thread_list" to "fbsd_update_thread_list".
3352         Set "to_has_thread_control" to "tc_schedlock".
3353         Set "to_resume" to "fbsd_resume".
3354         (_initialize_fbsd_nat): New function.
3355         * configure: Regenerate.
3356         * config.in: Regenerate.
3357
3358 2016-01-19  John Baldwin  <jhb@FreeBSD.org>
3359
3360         * amd64bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
3361         get_ptrace_pid.
3362         (amd64bsd_store_inferior_registers): Use get_ptrace_pid.
3363         (amd64bsd_dr_get): Use get_ptrace_pid.
3364         (amd64bsd_dr_set): Use get_ptrace_pid.
3365         * i386bsd-nat.c (i386bsd_fetch_inferior_registers): Use get_ptrace_pid.
3366         (i386bsd_store_inferior_registers): Use get_ptrace_pid.
3367         (i386bsd_dr_get): Use get_ptrace_pid.
3368         (i386bsd_dr_set): Use get_ptrace_pid.
3369         * inf-ptrace.c (get_ptrace_pid): Export.
3370         * inf-ptrace.h (get_ptrace_pid): Declare.
3371         * ppcfbsd-nat.c (ppcfbsd_fetch_inferior_registers): Use lwp id.
3372         (ppcfbsd_store_inferior_registers): Use lwp id.
3373
3374 2016-01-19  John Baldwin  <jhb@FreeBSD.org>
3375
3376         * fbsd_tdep.c (fbsd_core_pid_to_str): New function.
3377         (fbsd_core_thread_name): New function.
3378         (fbsd_init_abi): Add "core_pid_to_str" gdbarch method.
3379         Add "core_thread_name" gdbarch method.
3380
3381 2016-01-19  John Baldwin  <jhb@FreeBSD.org>
3382
3383         * corelow.c (core_thread_name): New function.
3384         (init_core_ops): Use "core_thread_name" for the "to_thread_name"
3385         target op.
3386         * gdbarch.sh (core_thread_name): New gdbarch callback.
3387         * gdbarch.h: Re-generate.
3388         * gdbarch.c: Re-generate.
3389
3390 2016-01-19  Simon Marchi  <simon.marchi@polymtl.ca>
3391
3392         * python/lib/gdb/printing.py (_EnumInstance.to_string): Explicitly
3393         convert gdb.Value to integer type using int().
3394
3395 2016-01-19  John Baldwin  <jhb@FreeBSD.org>
3396
3397         * configure.ac: Include <sys/types.h when checking for "r_fs" in
3398         "struct reg".
3399         * configure: Regenerate.
3400
3401 2016-01-19  Pedro Alves  <palves@redhat.com>
3402
3403         * ax-gdb.c (agent_command_1): Adjust call to decode_line_full.
3404         * break-catch-throw.c (re_set_exception_catchpoint): Pass the
3405         current program space down to linespec decoding and breakpoint
3406         location updating.
3407         * breakpoint.c (parse_breakpoint_sals): Adjust calls to
3408         decode_line_full.
3409         (until_break_command): Adjust calls to decode_line_1.
3410         (base_breakpoint_decode_location, bkpt_decode_location): Add
3411         'search_pspace' parameter.  Pass it along.
3412         (bkpt_probe_create_sals_from_location): Adjust calls to
3413         parse_probes.
3414         (tracepoint_decode_location, tracepoint_probe_decode_location)
3415         (strace_marker_decode_location): Add 'search_pspace' parameter.
3416         Pass it along.
3417         (all_locations_are_pending): Rewrite to take a breakpoint and
3418         program space as arguments instead.
3419         (hoist_existing_locations): New function.
3420         (update_breakpoint_locations): Add 'filter_pspace' parameter.  Use
3421         hoist_existing_locations instead of always removing all locations,
3422         and adjust to all_locations_are_pending change.
3423         (location_to_sals): Add 'search_pspace' parameter.  Pass it along.
3424         Don't disable the breakpoint if there are other locations in
3425         another program space.
3426         (breakpoint_re_set_default): Adjust to pass down the current
3427         program space as filter program space.
3428         (decode_location_default): Add 'search_pspace' parameter and pass
3429         it along.
3430         (prepare_re_set_context): Don't switch program space here.
3431         (breakpoint_re_set): Use save_current_space_and_thread instead of
3432         save_current_program_space.
3433         * breakpoint.h (struct breakpoint_ops) <decode_location>: Add
3434         'search_pspace' parameter.
3435         (update_breakpoint_locations): Add 'filter_pspace' parameter.
3436         * cli/cli-cmds.c (edit_command, list_command): Adjust calls to
3437         decode_line_1.
3438         * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the current
3439         program space as filter program space.
3440         * linespec.c (struct linespec_state) <search_pspace>: New field.
3441         (create_sals_line_offset, convert_explicit_location_to_sals)
3442         (parse_linespec): Pass the search program space down.
3443         (linespec_state_constructor): Add 'search_pspace' parameter.
3444         Store it.
3445         (linespec_parser_new): Add 'search_pspace' parameter and pass it
3446         along.
3447         (linespec_lex_to_end): Adjust.
3448         (decode_line_full, decode_line_1): Add 'search_pspace' parameter
3449         and pass it along.
3450         (decode_line_with_last_displayed): Adjust.
3451         (collect_symtabs_from_filename, symtabs_from_filename): New
3452         'search_pspace' parameter.  Use it.
3453         (find_function_symbols): Pass the search program space down.
3454         * linespec.h (decode_line_1, decode_line_full): Add
3455         'search_pspace' parameter.
3456         * probe.c (parse_probes_in_pspace): New function, factored out
3457         from ...
3458         (parse_probes): ... this.  Add 'search_pspace' parameter and use
3459         it.
3460         * probe.h (parse_probes): Add pspace' parameter.
3461         * python/python.c (gdbpy_decode_line): Adjust.
3462         * tracepoint.c (scope_info): Adjust.
3463
3464 2016-01-18  Maciej W. Rozycki  <macro@imgtec.com>
3465
3466         * mips-tdep.c (mips_insn_size): Remove 48-bit microMIPS
3467         instruction support.
3468         (micromips_next_pc): Likewise.
3469         (micromips_scan_prologue): Likewise.
3470         (micromips_deal_with_atomic_sequence): Likewise.
3471         (micromips_stack_frame_destroyed_p): Likewise.
3472         (mips_breakpoint_from_pc): Likewise.
3473
3474 2016-01-18  Maciej W. Rozycki  <macro@imgtec.com>
3475
3476         * mips-tdep.c (micromips_insn_at_pc_has_delay_slot): Pass
3477         unshifted 16-bit microMIPS instruction word to `mips_insn_size'.
3478
3479 2016-01-18  Pedro Alves  <palves@redhat.com>
3480
3481         * NEWS: Mention that GDB now displays the ID and name of the
3482         thread that hit a breakpoint or received a signal.
3483         * break-catch-sig.c (signal_catchpoint_print_it): Use
3484         maybe_print_thread_hit_breakpoint.
3485         * break-catch-syscall.c (print_it_catch_syscall): Likewise.
3486         * break-catch-throw.c (print_it_exception_catchpoint): Likewise.
3487         * breakpoint.c (maybe_print_thread_hit_breakpoint): New function.
3488         (print_it_catch_fork, print_it_catch_vfork, print_it_catch_solib)
3489         (print_it_catch_exec, print_it_ranged_breakpoint)
3490         (print_it_watchpoint, print_it_masked_watchpoint, bkpt_print_it):
3491         Use maybe_print_thread_hit_breakpoint.
3492         * breakpoint.h (maybe_print_thread_hit_breakpoint): Declare.
3493         * gdbthread.h (show_thread_that_caused_stop): Declare.
3494         * infrun.c (print_signal_received_reason): Print which thread
3495         received signal.
3496         * thread.c (show_thread_that_caused_stop): New function.
3497
3498 2016-01-18  Gary Benson  <gbenson@redhat.com>
3499
3500         * nat/linux-namespaces.c (do_fork): New function.
3501         (linux_mntns_get_helper): Use the above.
3502
3503 2016-01-17  Jonas Hahnfeld <Hahnfeld@itc.rwth-aachen.de>  (tiny change)
3504
3505         Pushed by Joel Brobecker  <brobecker@adacore.com>.
3506         PR gdb/19208
3507         * dwarf2read.c (read_partial_die): Do not call set_objfile_main_name
3508         if the function has no name.
3509
3510 2016-01-15  Sandra Loosemore  <sandra@codesourcery.com>
3511
3512         * charset.c [PHONY_ICONV] (GDB_DEFAULT_HOST_CHARSET):
3513         Conditionalize for Windows host.
3514         (GDB_DEFAULT_TARGET_CHARSET): Match GDB_DEFAULT_HOST_CHARSET.
3515         (GDB_DEFAULT_TARGET_WIDE_CHARSET): Use UTF-32.
3516         (phony_iconv_open): Handle both UTF-32 endiannesses.
3517         (phony_iconv): Likewise.  Check for output overflow and clean up
3518         out-of-input cases.  Correct adjustment to input buffer pointer.
3519         (set_be_le_names) [PHONY_ICONV]: Use hard-wired names to match
3520         phony_iconv_open.
3521
3522 2016-01-15  Pedro Alves  <palves@redhat.com>
3523
3524         * NEWS: Mention star wildcard ranges.
3525         * cli/cli-utils.c (get_number_or_range): Check state->in_range first.
3526         (number_range_setup_range): New function.
3527         * cli/cli-utils.h (number_range_setup_range): New declaration.
3528         * thread.c (thread_apply_command): Support star TID ranges.
3529         * tid-parse.c (tid_range_parser_finished)
3530         (tid_range_parser_string, tid_range_parser_skip)
3531         (get_tid_or_range, get_tid_or_range): Handle
3532         TID_RANGE_STATE_STAR_RANGE.
3533         (tid_range_parser_star_range): New function.
3534         * tid-parse.h (enum tid_range_state) <TID_RANGE_STATE_STAR_RANGE>:
3535         New value.
3536         (tid_range_parser_star_range): New declaration.
3537
3538 2016-01-15  Pedro Alves  <palves@redhat.com>
3539
3540         * thread.c (thread_apply_command): Use the tid range parser to
3541         advance past the thread ID list.
3542         * tid-parse.c (get_positive_number_trailer): New function.
3543         (parse_thread_id): Use it.
3544         (get_tid_or_range): Use it.  Return 0 instead of throwing invalid
3545         thread ID error.
3546         (get_tid_or_range): Detect negative values.  Return 0 instead of
3547         throwing invalid thread ID error.
3548
3549 2016-01-14  Yao Qi  <yao.qi@linaro.org>
3550
3551         * arm-linux-tdep.c (arm_linux_get_next_pcs_syscall_next_pc):
3552         Declare.
3553         (arm_linux_get_next_pcs_ops): Install
3554         arm_linux_get_next_pcs_syscall_next_pc.
3555         (arm_linux_syscall_next_pc): Change to ...
3556         (arm_linux_get_next_pcs_syscall_next_pc): ... it.
3557         (arm_linux_init_abi): Don't set tdep->syscall_next_pc.
3558         * arm-tdep.c (arm_get_next_pcs_syscall_next_pc): Declare.
3559         (arm_get_next_pcs_syscall_next_pc): Make it static.  Don't
3560         call tdep->syscall_next_pc.
3561         * arm-tdep.h (struct gdbarch_tdep) <syscall_next_pc>: Remove.
3562         (arm_get_next_pcs_syscall_next_pc): Remove.
3563
3564 2016-01-14  Yao Qi  <yao.qi@linaro.org>
3565
3566         * remote.c (remote_set_syscall_catchpoint): Cast to char *.
3567         * thread.c (do_captured_thread_select): Cast to const char *.
3568
3569 2016-01-14  Yao Qi  <yao.qi@linaro.org>
3570
3571         * arch/arm-get-next-pcs.c (arm_get_next_pcs_ctor): Change
3572         argument arm_thumb2_breakpoint to has_thumb2_breakpoint.
3573         (thumb_get_next_pcs_raw): Check has_thumb2_breakpoint
3574         instead.
3575         * arch/arm-get-next-pcs.h (struct arm_get_next_pcs)
3576         <arm_thumb2_breakpoint>: Remove.
3577         <has_thumb2_breakpoint>: New field.
3578         (arm_get_next_pcs_ctor): Update declaration.
3579         * arm-linux-tdep.c (arm_linux_software_single_step): Pass
3580         1 to arm_get_next_pcs_ctor.
3581         * arm-tdep.c (arm_software_single_step): Pass 0 to
3582         arm_get_next_pcs_ctor.
3583
3584 2016-01-13  Ulrich Weigand  <uweigand@de.ibm.com>
3585
3586         * MAINTAINERS: Add Andreas Arnez as s390 target maintainer.
3587
3588 2016-01-13  Yao Qi  <yao.qi@linaro.org>
3589
3590         * arch/arm-get-next-pcs.c (arm_get_next_pcs_raw): Use
3591         byte_order_for_code to read instruction.
3592
3593 2016-01-13  Pedro Alves  <palves@redhat.com>
3594
3595         * NEWS: Mention $_gthread.
3596         * gdbthread.h (struct thread_info) <global_num>: Mention
3597         $_gthread.
3598         * thread.c (thread_num_make_value_helper): New function.
3599         (thread_id_make_value): Delete.
3600         (thread_id_per_inf_num_make_value, global_thread_id_make_value):
3601         New.
3602         (thread_funcs): Adjust.
3603         (gthread_funcs): New.
3604         (_initialize_thread): Register $_gthread variable.
3605
3606 2016-01-13  Pedro Alves  <palves@redhat.com>
3607
3608         * NEWS: Mention "info threads -gid".
3609         * gdbthread.h (struct thread_info) <global_num>: Mention "info
3610         threads -gid".
3611         * thread.c (info_threads_command): Handle "-gid".
3612         (_initialize_thread): Adjust "info threads" help string to mention
3613         -gid.
3614
3615 2016-01-13  Pedro Alves  <palves@redhat.com>
3616
3617         * NEWS: Mention InferiorThread.global_num.
3618         * python/py-infthread.c (thpy_get_global_num): New function.
3619         (thread_object_getset): Register "global_num".
3620
3621 2016-01-13  Pedro Alves  <palves@redhat.com>
3622
3623         * NEWS: Mention that thread IDs are now per inferior and global
3624         thread IDs.
3625         * Makefile.in (SFILES): Add tid-parse.c.
3626         (COMMON_OBS): Add tid-parse.o.
3627         (HFILES_NO_SRCDIR): Add tid-parse.h.
3628         * ada-tasks.c: Adjust to use ptid_to_global_thread_id.
3629         * breakpoint.c (insert_breakpoint_locations)
3630         (remove_threaded_breakpoints, bpstat_check_breakpoint_conditions)
3631         (print_one_breakpoint_location, set_longjmp_breakpoint)
3632         (check_longjmp_breakpoint_for_call_dummy)
3633         (set_momentary_breakpoint): Adjust to use global IDs.
3634         (find_condition_and_thread, watch_command_1): Use parse_thread_id.
3635         (until_break_command, longjmp_bkpt_dtor)
3636         (breakpoint_re_set_thread, insert_single_step_breakpoint): Adjust
3637         to use global IDs.
3638         * dummy-frame.c (pop_dummy_frame_bpt): Adjust to use
3639         ptid_to_global_thread_id.
3640         * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
3641         * gdbthread.h (struct thread_info): Rename field 'num' to
3642         'global_num.  Add new fields 'per_inf_num' and 'inf'.
3643         (thread_id_to_pid): Rename thread_id_to_pid to
3644         global_thread_id_to_ptid.
3645         (pid_to_thread_id): Rename to ...
3646         (ptid_to_global_thread_id): ... this.
3647         (valid_thread_id): Rename to ...
3648         (valid_global_thread_id): ... this.
3649         (find_thread_id): Rename to ...
3650         (find_thread_global_id): ... this.
3651         (ALL_THREADS, ALL_THREADS_BY_INFERIOR): Declare.
3652         (print_thread_info): Add comment.
3653         * tid-parse.h: New file.
3654         * tid-parse.c: New file.
3655         * infcmd.c (step_command_fsm_prepare)
3656         (step_command_fsm_should_stop): Adjust to use the global thread
3657         ID.
3658         (until_next_command, until_next_command)
3659         (finish_command_fsm_should_stop): Adjust to use the global thread
3660         ID.
3661         (attach_post_wait): Adjust to check the inferior number too.
3662         * inferior.h (struct inferior) <highest_thread_num>: New field.
3663         * infrun.c (handle_signal_stop)
3664         (insert_exception_resume_breakpoint)
3665         (insert_exception_resume_from_probe): Adjust to use the global
3666         thread ID.
3667         * record-btrace.c (record_btrace_open): Use global thread IDs.
3668         * remote.c (process_initial_stop_replies): Also consider the
3669         inferior number.
3670         * target.c (target_pre_inferior): Clear the inferior's highest
3671         thread num.
3672         * thread.c (clear_thread_inferior_resources): Adjust to use the
3673         global thread ID.
3674         (new_thread): New inferior parameter.  Adjust to use it.  Set both
3675         the thread's global ID and the thread's per-inferior ID.
3676         (add_thread_silent): Adjust.
3677         (find_thread_global_id): New.
3678         (find_thread_id): Make static.  Adjust to rename.
3679         (valid_thread_id): Rename to ...
3680         (valid_global_thread_id): ... this.
3681         (pid_to_thread_id): Rename to ...
3682         (ptid_to_global_thread_id): ... this.
3683         (thread_id_to_pid): Rename to ...
3684         (global_thread_id_to_ptid): ... this.  Adjust.
3685         (first_thread_of_process): Adjust.
3686         (do_captured_list_thread_ids): Adjust to use global thread IDs.
3687         (should_print_thread): New function.
3688         (print_thread_info): Rename to ...
3689         (print_thread_info_1): ... this, and add new show_global_ids
3690         parameter.  Handle it.  Iterate over inferiors.
3691         (print_thread_info): Reimplement as wrapper around
3692         print_thread_info_1.
3693         (show_inferior_qualified_tids): New function.
3694         (print_thread_id): Use it.
3695         (tp_array_compar): Compare inferior numbers too.
3696         (thread_apply_command): Use tid_range_parser.
3697         (do_captured_thread_select): Use parse_thread_id.
3698         (thread_id_make_value): Adjust.
3699         (_initialize_thread): Adjust "info threads" help string.
3700         * varobj.c (struct varobj_root): Update comment.
3701         (varobj_create): Adjust to use global thread IDs.
3702         (value_of_root_1): Adjust to use global_thread_id_to_ptid.
3703         * windows-tdep.c (display_tib): No longer accept an argument.
3704         * cli/cli-utils.c (get_number_trailer): Make extern.
3705         * cli/cli-utils.h (get_number_trailer): Declare.
3706         (get_number_const): Adjust documentation.
3707         * mi/mi-cmd-var.c (mi_cmd_var_update_iter): Adjust to use global
3708         thread IDs.
3709         * mi/mi-interp.c (mi_new_thread, mi_thread_exit)
3710         (mi_on_normal_stop, mi_output_running_pid, mi_on_resume):
3711         * mi/mi-main.c (mi_execute_command, mi_cmd_execute): Likewise.
3712         * guile/scm-breakpoint.c (gdbscm_set_breakpoint_thread_x):
3713         Likewise.
3714         * python/py-breakpoint.c (bppy_set_thread): Likewise.
3715         * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
3716         * python/py-infthread.c (thpy_get_num): Add comment and return the
3717         per-inferior thread ID.
3718         (thread_object_getset): Update comment of "num".
3719
3720 2016-01-13  Pedro Alves  <palves@redhat.com>
3721
3722         * breakpoint.c (remove_threaded_breakpoints)
3723         (print_one_breakpoint_location): Use print_thread_id.
3724         * btrace.c (btrace_enable, btrace_disable, btrace_teardown)
3725         (btrace_fetch, btrace_clear): Use print_thread_id.
3726         * common/print-utils.c (CELLSIZE): Delete.
3727         (get_cell): Rename to ...
3728         (get_print_cell): ... this and made extern.  Adjust call callers.
3729         Adjust to use PRINT_CELL_SIZE.
3730         * common/print-utils.h (get_print_cell): Declare.
3731         (PRINT_CELL_SIZE): New.
3732         * gdbthread.h (print_thread_id): Declare.
3733         * infcmd.c (signal_command): Use print_thread_id.
3734         * inferior.c (print_inferior): Use print_thread_id.
3735         * infrun.c (handle_signal_stop)
3736         (insert_exception_resume_breakpoint)
3737         (insert_exception_resume_from_probe)
3738         (print_signal_received_reason): Use print_thread_id.
3739         * record-btrace.c (record_btrace_info)
3740         (record_btrace_resume_thread, record_btrace_cancel_resume)
3741         (record_btrace_step_thread, record_btrace_wait): Use
3742         print_thread_id.
3743         * thread.c (thread_apply_all_command): Use print_thread_id.
3744         (print_thread_id): New function.
3745         (thread_apply_command): Use print_thread_id.
3746         (thread_command, thread_find_command, do_captured_thread_select):
3747         Use print_thread_id.
3748
3749 2016-01-13  Pedro Alves  <palves@redhat.com>
3750
3751         * NEWS: Mention InferiorThread.inferior.
3752         * python/py-infthread.c (thpy_get_inferior): New.
3753         (thread_object_getset): Register "inferior".
3754
3755 2016-01-13  Pedro Alves  <palves@redhat.com>
3756
3757         * NEWS: Mention $_inferior.
3758         * inferior.c (inferior_id_make_value): New.
3759         (inferior_funcs): New.
3760         (_initialize_inferior): Create $_inferior variable.
3761
3762 2016-01-13  Pedro Alves  <palves@redhat.com>
3763
3764         PR breakpoints/19388
3765         * frame.c (get_current_frame): Use validate_registers_access.
3766         * gdbthread.h (validate_registers_access): Declare.
3767         * infrun.c (validate_siginfo_access): Delete.
3768         (siginfo_value_read, siginfo_value_write): Use
3769         validate_registers_access.
3770         * thread.c (validate_registers_access): New function.
3771
3772 2016-01-12  Josh Stone  <jistone@redhat.com>
3773             Philippe Waroquiers  <philippe.waroquiers@skynet.be>
3774
3775         * NEWS (Changes since GDB 7.10): Mention QCatchSyscalls and the
3776         syscall_entry and syscall_return stop reasons.  Mention GDB
3777         support for remote catch syscall.
3778         * remote.c (PACKET_QCatchSyscalls): New enum.
3779         (remote_set_syscall_catchpoint): New function.
3780         (remote_protocol_features): New element for QCatchSyscalls.
3781         (remote_parse_stop_reply): Parse syscall_entry/return stops.
3782         (init_remote_ops): Install remote_set_syscall_catchpoint.
3783         (_initialize_remote): Config QCatchSyscalls.
3784         * linux-nat.h (struct lwp_info) <syscall_state>: Comment typo.
3785
3786 2016-01-12  Yao Qi  <yao.qi@linaro.org>
3787
3788         * nat/linux-ptrace.c (linux_child_function): Cast child_stack
3789         to gdb_byte * and pass to linux_fork_to_function.
3790
3791 2016-01-12  Yao Qi  <yao.qi@linaro.org>
3792
3793         * nat/linux-ptrace.c (linux_fork_to_function): Change type
3794         of argument 'function'.
3795         (linux_grandchild_function): Change return type to 'int'.
3796         Change child_stack's type to 'void *'.
3797         (linux_child_function): Likewise.
3798
3799 2016-01-12  Pedro Alves  <palves@redhat.com>
3800
3801         Remove use of the registered trademark symbol throughout.
3802
3803 2016-01-12  Thomas Schwinge  <thomas@codesourcery.com>
3804
3805         * reply_mig_hack.awk: Rewrite one regular expression.
3806
3807 2016-01-11  Mike Frysinger  <vapier@gentoo.org>
3808
3809         * acinclude.m4: Include new warning.m4 file.
3810         * configure: Regenerated.
3811         * configure.ac: Move all warning logic ...
3812         * warning.m4: ... here.
3813
3814 2016-01-08  Yao Qi  <yao.qi@linaro.org>
3815
3816         * extension.c: Include target.h.
3817         (set_active_ext_lang): Only call install_gdb_sigint_handler,
3818         check_quit_flag, and set_quit_flag if target_terminal_is_ours
3819         returns false.
3820         (restore_active_ext_lang): Likewise.
3821         * target.c (target_terminal_is_ours): New function.
3822         * target.h (target_terminal_is_ours): Declare.
3823
3824 2016-01-07  Maciej W. Rozycki  <macro@imgtec.com>
3825
3826         * mips-tdep.c (mips_breakpoint_from_pc): Rename local `status'
3827         to `err' in the little-endian leg.
3828
3829 2016-01-06  Yao Qi  <yao.qi@linaro.org>
3830
3831         * arch/arm-get-next-pcs.c (arm_get_next_pcs): Move it to some
3832         lines below.
3833         (thumb_get_next_pcs_raw): Make it static.
3834         (arm_get_next_pcs_raw): Likewise.
3835         * arch/arm-get-next-pcs.h (thumb_get_next_pcs_raw): Remove the
3836         declaration.
3837         (arm_get_next_pcs_raw): Likewise.
3838
3839 2016-01-05  Mike Frysinger  <vapier@gentoo.org>
3840
3841         * version.in: Change cvs to git.
3842
3843 2016-01-05  Mike Frysinger  <vapier@gentoo.org>
3844
3845         * configure.tgt (score-*-*): Delete gdb_sim assignment.
3846
3847 2016-01-05  Pedro Alves  <palves@redhat.com>
3848
3849         PR sim/13418
3850         * configure.ac: Define WITH_PPC_SIM when linking in the sim and
3851         the target is powerpc*.
3852         * rs6000-tdep.c (init_sim_regno_table): Check WITH_PPC_SIM instead
3853         of WITH_SIM.
3854         * configure: Regenerate.
3855         * config.in: Regenerate.
3856
3857 2016-01-04  Markus Metzger  <markus.t.metzger@intel.com>
3858
3859         * btrace.c (btrace_pt_readmem_callback): Do not return in TRY/CATCH.
3860
3861 2016-01-02  Mike Frysinger  <vapier@gentoo.org>
3862
3863         * configure.tgt (powerpc*-*-*): Delete test call and
3864         always assign gdb_sim.
3865
3866 2016-01-01  Joel Brobecker  <brobecker@adacore.com>
3867
3868         Update year range in copyright notice of all files.
3869
3870 2016-01-01  Joel Brobecker  <brobecker@adacore.com>
3871
3872         * top.c (print_gdb_version): Change copyright year in version
3873         message.
3874
3875 2016-01-01  Joel Brobecker  <brobecker@adacore.com>
3876
3877         * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2015.
3878
3879 For older changes see ChangeLog-2015.
3880 \f
3881 Local Variables:
3882 mode: change-log
3883 left-margin: 8
3884 fill-column: 74
3885 version-control: never
3886 coding: utf-8
3887 End: