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