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