Eliminate target_check_pending_interrupt
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2016-04-12 Pedro Alves <palves@redhat.com>
2
3 * target.c (target_check_pending_interrupt): Delete.
4 * target.h (struct target_ops) <to_check_pending_interrupt>:
5 Remove method.
6 (target_check_pending_interrupt): Remove declaration.
7 * target-delegates.c: Regenerate.
8
9 2016-04-12 Pedro Alves <palves@redhat.com>
10
11 * defs.h: Update comments on SIGINT handling.
12 (immediate_quit): Delete declaration.
13 * event-loop.c (call_async_signal_handler): Delete.
14 * event-loop.h (call_async_signal_handler): Delete declaration.
15 (mark_async_signal_handler): Update comments.
16 (gdb_call_async_signal_handler): Delete declaration.
17 * event-top.c (handle_sigint): Call mark_async_signal_handler
18 instead of gdb_call_async_signal_handler.
19 * exceptions.c (prepare_to_throw_exception): Remove reference to
20 immediate_quit.
21 (exception_fprintf): Remove comments about immediate_quit.
22 * mingw-hdep.c (sigint_event, sigint_handler): Delete.
23 (gdb_select): Don't wait on sigint_event.
24 (gdb_call_async_signal_handler): Delete.
25 (_initialize_mingw_hdep): Delete.
26 * posix-hdep.c (gdb_call_async_signal_handler): Delete.
27 * utils.c (immediate_quit): Delete.
28
29 2016-04-12 Pedro Alves <palves@redhat.com>
30
31 * defs.h (quit_handler_ftype, quit_handler)
32 (make_cleanup_override_quit_handler, default_quit_handler): New.
33 (QUIT): Adjust comments.
34 * event-top.c (default_quit_handler): New function.
35 (quit_handler): New global.
36 (struct quit_handler_cleanup_data): New.
37 (restore_quit_handler, restore_quit_handler_dtor)
38 (make_cleanup_override_quit_handler): New.
39 (async_request_quit): Call QUIT.
40 * remote.c (struct remote_state) <got_ctrlc_during_io>: New field.
41 (async_sigint_remote_twice_token, async_sigint_remote_token):
42 Delete.
43 (remote_close): Update comments.
44 (remote_start_remote): Don't set immediate_quit. Set starting_up
45 earlier.
46 (remote_serial_quit_handler, remote_unpush_and_throw): New
47 functions.
48 (remote_open_1): Clear got_ctrlc_during_io. Set
49 remote_async_terminal_ours_p unconditionally.
50 (async_initialize_sigint_signal_handler)
51 (async_handle_remote_sigint, async_handle_remote_sigint_twice)
52 (remote_check_pending_interrupt, async_remote_interrupt)
53 (async_remote_interrupt_twice)
54 (async_cleanup_sigint_signal_handler, ofunc)
55 (sync_remote_interrupt, sync_remote_interrupt_twice): Delete.
56 (remote_terminal_inferior, remote_terminal_ours): Remove async
57 checks.
58 (remote_wait_as): Don't install a SIGINT handler in sync mode.
59 (readchar, remote_serial_write): Override the quit handler with
60 remote_serial_quit_handler.
61 (getpkt_or_notif_sane_1): Don't call QUIT.
62 (initialize_remote_ops): Don't install
63 remote_check_pending_interrupt.
64 (_initialize_remote): Don't create async_sigint_remote_token and
65 async_sigint_remote_twice_token.
66 * ser-base.c (ser_base_wait_for): Call QUIT and use
67 interruptible_select.
68 (ser_base_write): Call QUIT.
69 * ser-go32.c (dos_readchar, dos_write): Call QUIT.
70 * ser-unix.c (wait_for): Don't use VTIME. Always take the
71 gdb_select path, but call QUIT and interruptible_select.
72 * utils.c (maybe_quit): Call the current quit handler. Don't call
73 target_check_pending_interrupt.
74 (defaulted_query, prompt_for_continue): Override the quit handler
75 with the default quit handler.
76
77 2016-04-12 Pedro Alves <palves@redhat.com>
78
79 * tui/tui-hooks.c (tui_target_has_run): Delete.
80 (tui_about_to_proceed): Delete.
81 (tui_about_to_proceed_observer): Delete.
82 (tui_install_hooks, tui_remove_hooks): Don't install/remove an
83 about_to_proceed observer.
84
85 2016-04-12 Pedro Alves <palves@redhat.com>
86
87 * mi/mi-interp.c (mi_new_thread): Put
88 target_terminal_ours_for_output in effect while outputting.
89 (mi_thread_exit): Use target_terminal_ours_for_output instead of
90 target_terminal_ours.
91 (mi_record_changed, mi_inferior_added, mi_inferior_appeared)
92 (mi_inferior_exit, mi_inferior_removed, mi_traceframe_changed)
93 (mi_tsv_created, mi_tsv_deleted, mi_tsv_modified)
94 (mi_breakpoint_created, mi_breakpoint_deleted)
95 (mi_breakpoint_modified, mi_solib_loaded, mi_solib_unloaded)
96 (mi_command_param_changed, mi_memory_changed)
97 (report_initial_inferior): Use target_terminal_ours_for_output
98 instead of target_terminal_ours. Restore terminal settings.
99 * mi/mi-main.c (mi_execute_command): Use
100 target_terminal_ours_for_output instead of target_terminal_ours.
101 Restore terminal settings.
102
103 2016-04-12 Pedro Alves <palves@redhat.com>
104
105 PR gdb/19828
106 * gnu-nat.c (inf_validate_task_sc): Don't call
107 target_terminal_ours / target_terminal_inferior around query.
108 * i386-tdep.c (i386_record_lea_modrm, i386_process_record): Don't
109 call target_terminal_ours / target_terminal_inferior around
110 yquery.
111 * linux-record.c (record_linux_system_call): Don't call
112 target_terminal_ours / target_terminal_inferior around yquery.
113 * nto-procfs.c (interrupt_query): Don't call target_terminal_ours
114 / target_terminal_inferior around query.
115 * record-full.c (record_full_check_insn_num): Remove
116 'set_terminal' parameter. Don't call target_terminal_ours /
117 target_terminal_inferior around query.
118 (record_full_message, record_full_registers_change)
119 (record_full_xfer_partial): Adjust.
120 * remote.c (interrupt_query): Don't call target_terminal_ours /
121 target_terminal_inferior around query.
122 * utils.c (defaulted_query): Install cleanup to restore target
123 terminal. Put target_terminal_ours_for_output in effect while
124 defaulted producing, and target_terminal_ours in in effect while
125 handling input.
126 (prompt_for_continue): Install cleanup to restore target terminal.
127 Put target_terminal_ours in in effect while handling input.
128
129 2016-04-12 Pedro Alves <palves@redhat.com>
130
131 * utils.c (defaulted_query, prompt_for_continue): Free temporary
132 strings with cleanups, instead of xfree.
133
134 2016-04-12 Pedro Alves <palves@redhat.com>
135
136 * utils.c (vwarning, internal_vproblem): Use
137 make_cleanup_restore_target_terminal and
138 target_terminal_ours_for_output.
139
140 2016-04-12 Pedro Alves <palves@redhat.com>
141
142 * infcmd.c (post_create_inferior, prepare_one_step): Use
143 target_terminal_ours_for_output instead of target_terminal_ours.
144
145 2016-04-12 Pedro Alves <palves@redhat.com>
146
147 * exceptions.c (print_flush): Use target_terminal_ours_for_output
148 instead of target_terminal_ours, and restore target terminal with
149 a cleanup.
150
151 2016-04-12 Pedro Alves <palves@redhat.com>
152
153 * cp-support.c (gdb_demangle): Use target_terminal_ours_for_output
154 instead of target_terminal_ours, and restore target terminal with
155 a cleanup.
156
157 2016-04-12 Pedro Alves <palves@redhat.com>
158
159 * ada-lang.c (type_as_string, type_as_string_and_cleanup): New
160 functions.
161 (ada_lookup_struct_elt_type): Use type_as_string_and_cleanup.
162
163 2016-04-12 Pedro Alves <palves@redhat.com>
164
165 * ser-base.c (fd_event): Retry read_prim on EINTR.
166 (do_ser_base_readchar): Retry read_prim on EINTR.
167 (ser_base_write): Retry write_prim on EINTR.
168 * ser-unix.c (ser_unix_read_prim): Don't retry on EINTR here.
169 (ser_unix_write_prim): Remove comment.
170
171 2016-04-12 Pedro Alves <palves@redhat.com>
172
173 * remote.c (remote_pass_ctrlc): New function.
174 (init_remote_ops): Install it.
175 * target.c (target_terminal_inferior): Pass pending Ctrl-C to the
176 target.
177 (target_pass_ctrlc, default_target_pass_ctrlc): New functions.
178 * target.h (struct target_ops) <to_pass_ctrlc>: New method.
179 (target_pass_ctrlc, default_target_pass_ctrlc): New declarations.
180 * target-delegates.c: Regenerate.
181
182 2016-04-12 Pedro Alves <palves@redhat.com>
183
184 * infcmd.c (interrupt_target_1): Call target_stop is in non-stop
185 mode.
186 * linux-nat.c (linux_nat_interrupt): Delete.
187 (linux_nat_add_target): Don't install linux_nat_interrupt.
188 * remote.c (remote_interrupt_ns): Change return type to void.
189 Throw error if interrupting the target is not supported.
190 (remote_interrupt): Don't call the remote_stop_ns/remote_stop_as.
191
192 2016-04-12 Pedro Alves <palves@redhat.com>
193
194 * defs.h (clear_quit_flag): Remove declaration.
195 * extension-priv.h (struct extension_language_ops)
196 <clear_quit_flag>: Remove field and update comments.
197 * extension.c (clear_quit_flag): Delete.
198 * guile/guile.c (guile_extension_ops): Adjust.
199 * python/python.c (python_extension_ops): Adjust.
200 (gdbpy_clear_quit_flag): Delete.
201
202 2016-04-12 Pedro Alves <palves@redhat.com>
203
204 * main.c (captured_main): Don't clear the quit flag.
205
206 2016-04-12 Pedro Alves <palves@redhat.com>
207
208 * exceptions.c (prepare_to_throw_exception): Don't clear the quit
209 flag.
210
211 2016-04-12 Pedro Alves <palves@redhat.com>
212
213 * event-top.c (command_handler): Don't call clear_quit_flag.
214
215 2016-04-12 Pedro Alves <palves@redhat.com>
216
217 * remote-sim.c (gdb_os_poll_quit): Don't call clear_quit_flag.
218 * remote.c (remote_wait_as): Don't call clear_quit_flag.
219
220 2016-04-12 Pedro Alves <palves@redhat.com>
221
222 * python/python.c: Include "ser-event.h".
223 (gdbpy_event_fds): Delete.
224 (gdbpy_serial_event): New.
225 (gdbpy_run_events): Change prototype. Use serial_event_clear
226 instead of serial_readchar.
227 (gdbpy_post_event): Use serial_event_set instead of serial_write.
228 (gdbpy_initialize_events): Use make_serial_event instead of
229 serial_pipe.
230
231 2016-04-12 Pedro Alves <palves@redhat.com>
232
233 * defs.h: Extend QUIT-related comments to mention
234 interruptible_select.
235 (quit_serial_event_set, quit_serial_event_clear): Declare.
236 * event-top.c: Include "ser-event.h" and "gdb_select.h".
237 (quit_serial_event): New global.
238 (async_init_signals): Make quit_serial_event.
239 (quit_serial_event_set, quit_serial_event_clear)
240 (quit_serial_event_fd, interruptible_select): New functions.
241 * extension.c (set_quit_flag): Set the quit serial event.
242 (check_quit_flag): Clear the quit serial event.
243 * gdb_select.h (interruptible_select): New declaration.
244 * guile/scm-ports.c (ioscm_input_waiting): Use
245 interruptible_select instead of gdb_select.
246 * top.c (gdb_readline_no_editing): Likewise.
247 * ui-file.c (stdio_file_read): Likewise.
248
249 2016-04-12 Pedro Alves <palves@redhat.com>
250
251 * event-loop.c: Include "ser-event.h".
252 (async_signal_handlers_serial_event): New global.
253 (async_signals_handler, initialize_async_signal_handlers): New
254 functions.
255 (mark_async_signal_handler): Set
256 async_signal_handlers_serial_event.
257 (invoke_async_signal_handlers): Clear
258 async_signal_handlers_serial_event.
259 * event-top.c (async_init_signals): Call
260 initialize_async_signal_handlers.
261
262 2016-04-12 Pedro Alves <palves@redhat.com>
263
264 * Makefile.in (SFILES): Add ser-event.c.
265 (HFILES_NO_SRCDIR): Add ser-event.h.
266 (COMMON_OBS): Add ser-event.o.
267 * ser-event.c, ser-event.h: New files.
268 * serial.c (new_serial): New function, factored out from
269 (serial_fdopen_ops): ... this.
270 (serial_open_ops_1): New function, factored out from
271 (serial_open): ... this.
272 (serial_open_ops): New function.
273 * serial.h (struct serial): Forware declare.
274 (serial_open_ops): New declaration.
275
276 2016-04-12 Pedro Alves <palves@redhat.com>
277
278 * serial.c (serial_open, serial_fdopen_ops, do_serial_close):
279 Remove references to name.
280 * serial.h (struct serial) <name>: Delete.
281
282 2016-04-12 Pedro Alves <palves@redhat.com>
283
284 * remote-fileio.c (sigint_fileio_token, remote_fio_no_longjmp):
285 Delete.
286 (async_remote_fileio_interrupt): Delete.
287 (remote_fileio_ctrl_c_signal_handler): Don't call the async signal
288 handler. Instead just always set the ctrl_c flag.
289 (remote_fileio_reply): Clear remote_fio_ctrl_c_flag before
290 re-enabling the SIGINT handler.
291 (remote_fileio_func_open, remote_fileio_func_close)
292 (remote_fileio_func_read, remote_fileio_func_write)
293 (remote_fileio_func_lseek, remote_fileio_func_rename)
294 (remote_fileio_func_unlink, remote_fileio_func_stat)
295 (remote_fileio_func_fstat, remote_fileio_func_gettimeofday)
296 (remote_fileio_func_isatty, remote_fileio_func_system)
297 (remote_fileio_request): Remove references to
298 remote_fio_no_longjmp.
299 (initialize_remote_fileio): Don't create an async signal handler.
300
301 2016-04-12 Pedro Alves <palves@redhat.com>
302
303 * event-top.c (stdin_event_handler): Call QUIT;
304 (prompt_for_continue): Don't run with immediate_quit set.
305
306 2016-04-12 Pedro Alves <palves@redhat.com>
307
308 * tui/tui-io.c (tui_redisplay_readline): Check
309 gdb_in_secondary_prompt_p instead of immediate_quit.
310 * tui/tui.c: Include top.h.
311 (tui_rl_startup_hook): Check gdb_in_secondary_prompt_p instead of
312 immediate_quit.
313
314 2016-04-12 Pedro Alves <palves@redhat.com>
315
316 * top.c (read_command_file): Inline command_loop here.
317 (command_loop): Delete.
318
319 2016-04-12 Pedro Alves <palves@redhat.com>
320
321 * top.c: Include "gdb_select.h".
322 (gdb_readline_no_editing): Wait for input with gdb_select instead
323 of blocking in fgetc.
324 (command_line_input): Don't set immediate_quit.
325
326 2016-04-08 Martin Galvan <martin.galvan@tallertechnologies.com>
327
328 * value.c (value_next): Make pass-by-reference parameters const-correct.
329 (value_parent): Likewise.
330 (value_enclosing_type): Likewise.
331 (value_lazy): Likewise.
332 (value_stack): Likewise.
333 (value_embedded_offset): Likewise.
334 (value_pointed_to_offset): Likewise.
335 (value_raw_address): Likewise.
336 (deprecated_value_modifiable): Likewise.
337 (value_free_to_mark): Likewise.
338 (value_release_to_mark): Likewise.
339 (internalvar_name): Likewise.
340 (readjust_indirect_value_type): Likewise.
341 (value_initialized): Likewise.
342 * value.h (value_next): Likewise.
343 (value_parent): Likewise.
344 (value_enclosing_type): Likewise.
345 (value_lazy): Likewise.
346 (value_stack): Likewise.
347 (value_embedded_offset): Likewise.
348 (value_pointed_to_offset): Likewise.
349 (value_raw_address): Likewise.
350 (deprecated_value_modifiable): Likewise.
351 (value_free_to_mark): Likewise.
352 (value_release_to_mark): Likewise.
353 (internalvar_name): Likewise.
354 (readjust_indirect_value_type): Likewise.
355 (value_initialized): Likewise.
356
357 2016-04-07 Yao Qi <yao.qi@linaro.org>
358
359 * record-full.c (record_full_insert_breakpoint): Return
360 early if entry on the address is found in
361 record_full_breakpoints.
362
363 2016-04-07 Yao Qi <yao.qi@linaro.org>
364
365 * record-full.c (record_full_insert_breakpoint): Set
366 bp_tgt->reqstd_address and bp_tgt->placed_size.
367
368 2016-04-06 Don Breazeal <donb@codesourcery.com>
369
370 * value.c (value_actual_type): Don't try to get rtti type
371 of the value if it has been optimized out.
372 (value_optimized_out): If a memory access error occurs,
373 just check vaue->optimized_out.
374
375 2016-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
376
377 Revert the previous commit adding unknown_v_replies_ok.
378
379 2016-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
380
381 * remote.c (struct remote_state): New field unknown_v_replies_ok.
382 (packet_config_support): Read it.
383 (remote_start_remote): Set it.
384
385 2016-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
386
387 * remote.c: Revert check-in by a mistake in the previous commit.
388
389 2016-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
390 Pedro Alves <palves@redhat.com>
391
392 * exec.c (exec_file_locate_attach): Print warning for unsupported
393 target_pid_to_exec_file.
394 * symfile-mem.c (add_vsyscall_page): Remove the "file" command
395 message part.
396
397 2016-04-04 Simon Marchi <simon.marchi@ericsson.com>
398
399 * cli/cli-decode.c (help_cmd_list): Fix function doc and remove
400 trailing spaces.
401
402 2016-04-01 Artemiy Volkov <artemiyv@acm.org>
403
404 PR gdb/19820
405 * eval.c (evaluate_subexp_standard): Allow TYPE_CODE_ENUM to be
406 the type of BINOP_REPEAT's second operand.
407
408 2016-03-31 Yichao Yu <yyc1992@gmail.com>
409
410 PR gdb/19858
411 * jit.c (jit_breakpoint_re_set_internal): Return 0 if we already
412 got the breakpoint at the right address.
413 (jit_inferior_created): New function.
414 (_initialize_jit): Install jit_inferior_created as
415 inferior_created observer.
416
417 2016-03-31 Marcin Kościelnicki <koriakin@0x04.net>
418
419 * NEWS: Mention support for tracepoints on powerpc*-linux.
420
421 2016-03-31 Catalin Udma <catalin.udma@freescale.com>
422
423 PR python/19743
424 * python/python.c (execute_gdb_command): Use console uiout
425 when executing gdb command.
426 * utils.c (restore_ui_out_closure): New structure.
427 (do_restore_ui_out): New function.
428 (make_cleanup_restore_ui_out): Likewise.
429 * utils.h (make_cleanup_restore_ui_out): Declare.
430
431 2016-03-31 Pedro Alves <palves@redhat.com>
432
433 * NEWS: Mention that support for "target m32rsdi", "target mips",
434 "target pmon", "target ddb", "target rockhopper", and "target lsi"
435 was removed.
436 * Makefile.in (ALL_TARGET_OBS): Remove remote-m32r-sdi.o and
437 remote-mips.o.
438 (ALLDEPFILES): Remove remote-m32r-sdi.c and remote-mips.c.
439 * configure.tgt: Remove all references to remote-m32r-sdi.o and
440 remote-mips.o.
441 * mips-tdep.c (deprecated_mips_set_processor_regs_hack): Delete
442 function.
443 * mips-tdep.h (deprecated_mips_set_processor_regs_hack): Delete
444 declaration.
445 * remote-m32r-sdi.c, remote-mips.c: Delete files.
446 * symfile.c (generic_load, generic_load): Remove comments.
447
448 2016-03-30 Yao Qi <yao.qi@linaro.org>
449
450 * arm-tdep.c (arm_epilogue_frame_this_id): Check 'func' against
451 0 rather than NULL.
452
453 2016-03-30 Yao Qi <yao.qi@linaro.org>
454
455 * arm-tdep.c: (arm_make_epilogue_frame_cache): New function.
456 (arm_epilogue_frame_this_id): New function.
457 (arm_epilogue_frame_prev_register): New function.
458 (arm_epilogue_frame_sniffer): New function.
459 (arm_epilogue_frame_unwind): New.
460 (arm_gdbarch_init): Append unwinder arm_epilogue_frame_unwind.
461
462 2016-03-30 Yao Qi <yao.qi@linaro.org>
463
464 * arm-tdep.c (arm_stack_frame_destroyed_p): Rename it ...
465 (arm_stack_frame_destroyed_p_1): ... here. Don't call
466 arm_pc_is_thumb.
467 (arm_stack_frame_destroyed_p): Call
468 thumb_stack_frame_destroyed_p and
469 arm_stack_frame_destroyed_p_1.
470
471 2016-03-30 Doug Evans <dje@google.com>
472
473 * python/py-utils.c (host_string_to_python_string): New function.
474 * python/python-internal.h (host_string_to_python_string): Declare it.
475 * python/py-*.c (*): Update all calls to
476 PyString_Decode (str, strlen (str), host_charset (), NULL);
477 to use host_string_to_python_string instead.
478
479 2016-03-30 Marcin Kościelnicki <koriakin@0x04.net>
480
481 * remote.c (remote_check_symbols): Allocate own buffer for reply.
482
483 2016-03-29 Max Filippov <jcmvbkbc@gmail.com>
484
485 * xtensa-tdep.c (xtensa_frame_cache): Change op1 type to LONGEST.
486 Use safe_read_memory_integer instead of read_memory_integer.
487
488 2016-03-29 Marcin Kościelnicki <koriakin@0x04.net>
489
490 * NEWS: Mention support for tracepoints on s390*-linux.
491
492 2016-03-29 Don Breazeal <donb@codesourcery.com>
493
494 * gdb/value.c (value_actual_type): Fix formatting issue.
495
496 2016-03-23 Yao Qi <yao.qi@linaro.org>
497
498 * gdbarch.sh (software_single_step): Remove comments.
499 * gdbarch.h: Regenerated.
500
501 2016-03-21 Yao Qi <yao.qi@linaro.org>
502
503 * arm-tdep.c (arm_record_media): New.
504 (arm_record_ld_st_reg_offset): Call arm_record_media.
505
506 2016-03-21 Yao Qi <yao.qi@linaro.org>
507
508 * arm-linux-tdep.c (arm_canonicalize_syscall): Canonicalize
509 more syscalls.
510
511 2016-03-18 Yao Qi <yao.qi@linaro.org>
512
513 * sparc-tdep.c (sparc_software_single_step): Make it static.
514 * sparc-tdep.h (sparc_software_single_step): Remove declaration.
515
516 2016-03-18 Yao Qi <yao.qi@linaro.org>
517
518 * spu-tdep.c (spu_software_single_step): Throw error when
519 target_read_memory fails.
520
521 2016-03-17 Jan Kratochvil <jan.kratochvil@redhat.com>
522
523 * linux-thread-db.c (check_pid_namespace_match): Extend the message.
524
525 2016-03-17 Pedro Alves <palves@redhat.com>
526 Don Breazeal <donb@codesourcery.com>
527
528 PR remote/19496
529 * infcmd.c (notice_new_inferior): Use the 'leave_running' argument
530 instead of checking the 'non_stop' global.
531 * remote.c (remote_add_thread): New parameter 'executing'. Use it
532 to set the new thread's executing state.
533 (remote_notice_new_inferior): Rename parameter 'running' to
534 'executing'. Always set the thread state to THREAD_RUNNING in
535 non-stop mode, and to THREAD_STOPPED in all-stop mode. Pass
536 EXECUTING to remote_add_thread and notice_new_inferior.
537 (remote_update_thread_list): Update to pass executing state, not
538 running state.
539
540 2016-03-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
541
542 * syscalls/s390-linux.xml: Add NUMA syscalls and new syscalls up
543 to 374.
544 * syscalls/s390x-linux.xml: Likewise.
545
546 2016-03-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
547
548 * linux-record.c (record_mem_at_reg): New helper function.
549 (record_linux_system_call): Exploit new helper function where
550 applicable.
551
552 2016-03-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
553
554 * linux-record.c: Fix whitespace issues; tabify, remove trailing
555 spaces.
556
557 2016-03-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
558
559 * linux-record.c (record_linux_system_call): Add missing return
560 statements to handling of pipe and pipe2 syscalls.
561
562 2016-03-16 Doug Evans <dje@google.com>
563
564 * xml-tdesc.c (tdesc_start_enum): Fix c++ build.
565
566 2016-03-16 Yao Qi <yao.qi@linaro.org>
567
568 * arm-linux-tdep.c (arm_linux_init_abi): Fix
569 arm_linux_record_tdep.arg1, arm_linux_record_tdep.arg2 and
570 arm_linux_record_tdep.arg3. Set arm_linux_record_tdep.arg4,
571 arm_linux_record_tdep.arg5, arm_linux_record_tdep.arg6, and
572 arm_linux_record_tdep.arg7.
573
574 2016-03-15 Keith Seitz <keiths@redhat.com>
575
576 PR breakpoints/18303
577 * cp-namespace.c (cp_lookup_bare_symbol): Change assertion to
578 look for "::" instead of simply ":".
579 (cp_search_static_and_baseclasses): Return null_block_symbol for
580 malformed input.
581 Remove assertions.
582 * cp-support.c (cp_find_first_component_aux): Do not return
583 a prefix length for ':' unless the next character is also ':'.
584
585 2016-03-15 Doug Evans <dje@google.com>
586
587 * features/aarch64-core.xml (cpsr_flags): New flags type.
588 (cpsr): Use it.
589 * features/aarch64.c: Regenerate.
590
591 2016-03-15 Doug Evans <dje@google.com>
592
593 * features/i386/32bit-core.xml (i386_eflags): Remove "end" spec.
594 * features/i386/32bit-sse.xml (i386_eflags): Ditto.
595 * features/i386/64bit-core.xml (i386_eflags): Ditto.
596 * features/i386/64bit-sse.xml (i386_eflags): Ditto.
597 * features/i386/x32-core.xml (i386_eflags): Ditto.
598
599 2016-03-15 Doug Evans <dje@google.com>
600 Wei-cheng Wang <cole945@gmail.com>
601
602 Extend flags to support multibit and enum bitfields.
603 * NEWS: Document new features.
604 * c-typeprint.c (c_type_print_varspec_prefix): Handle TYPE_CODE_FLAGS.
605 (c_type_print_varspec_suffix, c_type_print_base): Ditto.
606 * gdbtypes.c (arch_flags_type): Don't assume all fields are one bit.
607 (append_flags_type_field): New function.
608 (append_flags_type_flag): Call it.
609 * gdbtypes.h (append_flags_type_field): Declare.
610 * target-descriptions.c (struct tdesc_type_flag): Delete.
611 (enum tdesc_type_kind) <TDESC_TYPE_BOOL>: New enum value.
612 (enum tdesc_type_kind) <TDESC_TYPE_ENUM>: Ditto.
613 (struct tdesc_type) <u.f>: Delete.
614 (tdesc_predefined_types): Add "bool".
615 (tdesc_predefined_type): New function.
616 (tdesc_gdb_type): Handle TDESC_TYPE_BOOL, TDESC_TYPE_ENUM.
617 Update TDESC_TYPE_FLAGS support.
618 (tdesc_free_type): Handle TDESC_TYPE_ENUM. Update TDESC_TYPE_FLAGS.
619 (tdesc_create_flags): Update.
620 (tdesc_create_enum): New function.
621 (tdesc_add_field): Initialize start,end to -1.
622 (tdesc_add_typed_bitfield): New function.
623 (tdesc_add_bitfield): Call it.
624 (tdesc_add_flag): Allow TDESC_TYPE_STRUCT. Update.
625 (tdesc_add_enum_value): New function.
626 (maint_print_c_tdesc_cmd): Fold TDESC_TYPE_FLAGS support into
627 TDESC_TYPE_STRUCT. Handle TDESC_TYPE_ENUM.
628 * target-descriptions.h (tdesc_create_enum): Declare.
629 (tdesc_add_typed_bitfield, tdesc_add_enum_value): Declare.
630 * valprint.c (generic_val_print_enum_1): New function.
631 (generic_val_print_enum): Call it.
632 (val_print_type_code_flags): Make static. Handle multibit bitfields
633 and enum bitfields.
634 * valprint.h (val_print_type_code_flags): Delete.
635 * xml-tdesc.c (struct tdesc_parsing_data) <current_type_is_flags>:
636 Delete. All uses removed.
637 (tdesc_start_enum): New function.
638 (tdesc_start_field): Handle multibit and enum bitfields.
639 (tdesc_start_enum_value): New function.
640 (enum_value_attributes, enum_children, enum_attributes): New static
641 globals.
642 (feature_children): Add "enum".
643 * features/gdb-target.dtd (enum, evalue): New elements.
644
645 2016-03-15 Doug Evans <dje@google.com>
646
647 * target-descriptions.c (struct tdesc_type) <u.u.size>: Change type
648 from LONGEST to int.
649 (struct tdesc_type) <u.f.size>: Ditto.
650 (tdesc_set_struct_size): Change type of "size" arg from LONGEST
651 to int. Add assertion size > 0.
652 (tdesc_create_flags): Ditto.
653 * target-descriptions.h (tdesc_set_struct_size): Update.
654 (tdesc_create_flags): Update.
655 * xml-tdesc.c (MAX_FIELD_SIZE, MAX_FIELD_BITSIZE): New macros.
656 (MAX_VECTOR_SIZE): New macro.
657 (tdesc_start_struct): Catch conversion errors from LONGEST to int.
658 (tdesc_start_flags, tdesc_start_field, tdesc_start_vector): Ditto.
659
660 2016-03-15 Doug Evans <dje@google.com>
661
662 * target-descriptions.c (maint_print_c_tdesc_cmd): Use "type" for
663 TYPE_CODE_FLAGS instead of "field_type", for consistency.
664 * features/i386/amd64-avx-linux.c: Regenerate.
665 * features/i386/amd64-avx.c: Regenerate.
666 * features/i386/amd64-avx512-linux.c: Regenerate.
667 * features/i386/amd64-avx512.c: Regenerate.
668 * features/i386/amd64-linux.c: Regenerate.
669 * features/i386/amd64-mpx-linux.c: Regenerate.
670 * features/i386/amd64-mpx.c: Regenerate.
671 * features/i386/amd64.c: Regenerate.
672 * features/i386/i386-avx-linux.c: Regenerate.
673 * features/i386/i386-avx.c: Regenerate.
674 * features/i386/i386-avx512-linux.c: Regenerate.
675 * features/i386/i386-avx512.c: Regenerate.
676 * features/i386/i386-linux.c: Regenerate.
677 * features/i386/i386-mmx-linux.c: Regenerate.
678 * features/i386/i386-mmx.c: Regenerate.
679 * features/i386/i386-mpx-linux.c: Regenerate.
680 * features/i386/i386-mpx.c: Regenerate.
681 * features/i386/i386.c: Regenerate.
682 * features/i386/x32-avx-linux.c: Regenerate.
683 * features/i386/x32-avx.c: Regenerate.
684 * features/i386/x32-avx512-linux.c: Regenerate.
685 * features/i386/x32-avx512.c: Regenerate.
686 * features/i386/x32-linux.c: Regenerate.
687 * features/i386/x32.c: Regenerate.
688
689 2016-03-15 Pedro Alves <palves@redhat.com>
690
691 PR gdb/19676
692 * linux-thread-db.c (try_thread_db_load_1): Leave
693 info->td_ta_thr_iter_p NULL iff debugging a live process and we
694 have /proc access.
695 (find_new_threads_once): Assert that we have a non-NULL
696 info->td_ta_thr_iter_p instead of checking whether the target has
697 execution.
698
699 2016-03-15 Pedro Alves <palves@redhat.com>
700
701 PR gdb/19676
702 * infrun.c (displaced_step_prepare): Also disable displaced
703 stepping on NOT_SUPPORTED_ERROR.
704 * linux-tdep.c (linux_displaced_step_location): If reading auxv
705 fails, throw NOT_SUPPORTED_ERROR instead of generic error.
706
707 2016-03-13 Marcin Kościelnicki <koriakin@0x04.net>
708
709 * s390-linux-tdep.c (s390_gen_return_address): New function.
710 (s390_gdbarch_init): Fill gen_return_address hook.
711
712 2016-03-11 Andrew Burgess <andrew.burgess@embecosm.com>
713
714 * symmisc.c (maintenance_info_line_tables): New function.
715 (maintenance_print_one_line_table): New function.
716 (_initialize_symmisc): Register 'maint info line-table' command.
717 * NEWS: Mention new command.
718
719 2016-03-11 Marcin Kościelnicki <koriakin@0x04.net>
720
721 * s390-linux-tdep.c (s390_ax_pseudo_register_collect): New function.
722 (s390_ax_pseudo_register_push_stack): New function.
723 (s390_gdbarch_init): Fill ax_pseudo_register_collect and
724 ax_pseudo_register_push_stack hooks.
725
726 2016-03-10 Simon Marchi <simon.marchi@polymtl.ca>
727
728 * data-directory/Makefile.in (PYTHON_FILE_LIST): Install
729 gdb/function/as_string.py.
730 * python/lib/gdb/function/as_string.py: New file.
731 * NEWS: Mention the new $_as_string function.
732
733 2016-03-09 Jose E. Marchesi <jose.marchesi@oracle.com>
734
735 * target.h: Fix doc string of target_can_use_hardware_watchpoint.
736
737 2016-03-09 Pedro Alves <palves@redhat.com>
738
739 * event-top.c (more_to_come): Delete.
740 (struct readline_input_state): Delete.
741 (readline_input_state): Delete.
742 (get_command_line_buffer): New function.
743 (command_handler): Update comments. Don't handle NULL commands
744 here. Do not execute commented lines.
745 (command_line_append_input_line): New function.
746 (handle_line_of_input): New function, partly based on
747 command_line_handler and command_line_input.
748 (command_line_handler): Rewrite.
749 * event-top.h (command_handler): New declaration.
750 (command_loop): Defer command execution to command_handler.
751 (command_line_input): Update comments. Simplify, using struct
752 buffer and handle_line_of_input.
753 * top.h (struct buffer): New forward declaration.
754 (handle_line_of_input): New declaration.
755
756 2016-03-09 Pedro Alves <palves@redhat.com>
757
758 * event-top.c (command_line_handler): Use xfree + xstrdup instead
759 of xrealloc + strcpy.
760 * main.c (captured_main): Use xstrdup instead of xmalloc plus
761 manual clear.
762 * top.c (saved_command_line): Rewrite comment.
763 (saved_command_line_size): Delete.
764 (command_line_input): Use xfree + xstrdup instead of xrealloc +
765 strcpy.
766 * top.h (saved_command_line_size): Delete declaration.
767
768 2016-03-09 Pedro Alves <palves@redhat.com>
769
770 * event-top.c: Include buffer.h.
771 (gdb_readline_no_editing_callback): Use struct buffer instead
772 of xrealloc.
773
774 2016-03-09 Pedro Alves <palves@redhat.com>
775
776 * common/buffer.h (buffer_grow_char): New function.
777 * top.c: Include buffer.h.
778 (gdb_readline_no_editing): Rename 'prompt_arg' parameter to
779 'prompt'. Use struct buffer instead of xrealloc.
780
781 2016-03-09 Pedro Alves <palves@redhat.com>
782
783 * defs.h (gdb_readline): Delete declaration.
784 * top.c (gdb_readline): Rename to ...
785 (gdb_readline_no_editing): ... this, and make static.
786
787 2016-03-09 Pedro Alves <palves@redhat.com>
788
789 * utils.c (prompt_for_continue): Update comments.
790
791 2016-03-09 Pedro Alves <palves@redhat.com>
792
793 * event-top.c (async_annotation_suffix): Delete.
794 (top_level_prompt, command_line_handler): Don't use
795 'async_annotation_suffix' and simplify.
796 * event-top.h (async_annotation_suffix): Delete declaration.
797 (init_main): Remove reference to 'async_annotation_suffix'.
798
799 2016-03-09 Pedro Alves <palves@redhat.com>
800
801 * event-top.c (gdb_readline2): Rename to ...
802 (gdb_readline_no_editing_callback): ... this.
803 (change_line_handler, stdin_event_handler)
804 (gdb_setup_readline): Adjust.
805 * event-top.h (gdb_readline2): Rename to ...
806 (gdb_readline_no_editing_callback): ... this, and move closer to
807 other readline-related declarations.
808 * mi/mi-interp.c (mi_interpreter_resume): Adjust.
809
810 2016-03-09 Pedro Alves <palves@redhat.com>
811
812 * top.c (window_hook): Delete.
813 (command_loop): Remove references to window_hook.
814
815 2016-03-09 Marcin Kościelnicki <koriakin@0x04.net>
816
817 * corefile.c (safe_read_memory_unsigned_integer): New function.
818 * gdbcore.h (safe_read_memory_unsigned_integer): New prototype.
819 * rs6000-tdep.c (rs6000_frame_cache): Read backchain as unsigned.
820
821 2016-03-09 Marcin Kościelnicki <koriakin@0x04.net>
822
823 * rs6000-tdep.c: Add "ax.h" and "ax-gdb.h" includes.
824 (rs6000_gen_return_address): New function.
825 (rs6000_gdbarch_init): Wire in the above.
826
827 2016-03-09 Marcin Kościelnicki <koriakin@0x04.net>
828
829 * rs6000-tdep.c (rs6000_ax_pseudo_register_collect): New function.
830 (rs6000_gdbarch_init): Wire in the above.
831
832 2016-03-09 Andreas Arnez <arnez@linux.vnet.ibm.com>
833
834 * s390-linux-tdep.c (s390_analyze_prologue): Ignore BRC and BRCL
835 instructions that do nothing or are conditional traps.
836
837 2016-03-09 Andreas Arnez <arnez@linux.vnet.ibm.com>
838
839 * s390-linux-tdep.c (s390_prologue_frame_unwind_cache): Store
840 frame func's PC in info->func before any other failure can occur.
841 (s390_frame_this_id): Use frame_id_build_unavailable_stack if
842 info->func has been filled out.
843
844 2016-03-09 Pedro Alves <palves@redhat.com>
845
846 * osabi.c (gdb_osabi_names): Avoid spaces in osabi names.
847
848 2016-03-09 Pedro Alves <palves@redhat.com>
849
850 * frv-tdep.c (frv_gdbarch_init): Handle bfd_mach_fr300.
851
852 2016-03-09 Pedro Alves <palves@redhat.com>
853
854 * cris-tdep.c (cris_gdbarch_init): Return 0 if the info's byte
855 order is BFD_ENDIAN_BIG or if the cris version is unsupported.
856
857 2016-03-09 Pedro Alves <palves@redhat.com>
858
859 * doublest.c: Extend comments.
860 (floatformat_to_doublest, floatformat_from_doublest): Copy the
861 floatformat's total size, not the host type's size.
862
863 2016-03-09 Pedro Alves <palves@redhat.com>
864
865 * doublest.c (floatformat_totalsize_bytes): New function.
866 (floatformat_from_type): Assert that the type's length is at least
867 as long as the floatformat's totalsize.
868 * doublest.h (floatformat_totalsize_bytes): New declaration.
869 * gdbtypes.c (arch_float_type): Assert that the type's length is
870 at least as long as the floatformat's totalsize.
871
872 2016-03-09 Pedro Alves <palves@redhat.com>
873
874 * hppa-linux-tdep.c (hppa_linux_init_abi): Set the long double
875 format to floatformats_ieee_double.
876
877 2016-03-07 Pedro Alves <palves@redhat.com>
878
879 * mips-tdep.c (mips_gdbarch_init): Check whether info.abfd is NULL
880 before calling bfd_get_flavour.
881
882 2016-03-05 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
883
884 * avr-tdep.c (AVR_LAST_ARG_REGNUM): Define.
885 (avr_push_dummy_call): Correct last needed argument register.
886 Write MSB of argument into register and subsequent bytes into
887 other registers in decreasing order.
888
889 2016-03-04 Yao Qi <yao.qi@linaro.org>
890
891 * arm-tdep.c (arm_record_vdata_transfer_insn): Simplify the
892 condition check. Record the right D register number.
893
894 2016-03-04 Yao Qi <yao.qi@linaro.org>
895
896 * arm-tdep.c (arm_record_extension_space): Remove code
897 printing "Process record does not support".
898 (arm_record_data_proc_misc_ld_str): Likewise.
899 (decode_insn): Call arm_record_extension_space if condition
900 is 0xf. Call arm_record_unsupported_insn if ret isn't
901 ARM_RECORD_SUCCESS. Use 'ret' instead of 'insn_id' to hold
902 the value of thumb2_record_decode_insn_handler.
903
904 2016-03-04 Simon Marchi <simon.marchi@ericsson.com>
905
906 * features/feature_to_c.sh: Print the help when passing no
907 argument.
908
909 2016-03-02 Bernhard Heckel <bernhard.heckel@intel.com>
910
911 * MAINTAINERS (Write After Approval): Add Bernhard Heckel.
912
913 2016-03-02 Bernhard Heckel <bernhard.heckel@intel.com>
914
915 * dwarf2read.c (new_symbol_full): Fix detection of gfortran compilers.
916
917 2016-03-01 Andreas Arnez <arnez@linux.vnet.ibm.com>
918
919 * s390-linux-tdep.c (s390_backchain_frame_unwind_cache): Avoid
920 exception when attempting to access the inferior's backchain.
921
922 2016-02-29 Yao Qi <yao.qi@linaro.org>
923
924 * aarch64-linux-tdep.c (aarch64_canonicalize_syscall): Support
925 eventfd2, eventfd2, dup3, inotify_init1, fallocate and pipe2.
926 Return gdb_sys_epoll_create1 instead of gdb_sys_epoll_create
927 for aarch64_sys_epoll_create1.
928
929 2016-02-29 Yao Qi <yao.qi@linaro.org>
930
931 * linux-record.h (enum gdb_syscall) <gdb_sys_fallocate>: New.
932 <gdb_sys_eventfd2, gdb_sys_epoll_create1, gdb_sys_dup3>: New.
933 <gdb_sys_pipe2, gdb_sys_inotify_init1>: New.
934 * linux-record.c (record_linux_system_call): Handle them.
935
936 2016-02-28 Iain Buclaw <ibuclaw@gdcproject.org>
937
938 * d-namespace.c (d_lookup_symbol_imports): Avoid recursive lookups from
939 cyclic imports.
940
941 2016-02-26 Keith Seitz <keiths@redhat.com>
942
943 * rs6000-tdep.c (rs6000_frame_cache): Explicitly cast return result
944 to avoid invalid conversion from void *.
945
946 2016-02-26 Yao Qi <yao.qi@linaro.org>
947
948 * arm-tdep.c (arm_record_exreg_ld_st_insn): Set 'single_reg'
949 per bit 8. Check bit 20 instead of bit 4 for VMOV
950 instruction. Record D registers for instructions changing
951 S registers. Change of the order of length and address
952 in record_buf_mem array.
953
954 2016-02-26 Yao Qi <yao.qi@linaro.org>
955
956 * arm-tdep.c (thumb_record_ld_st_reg_offset): Fix the register
957 number of Rd.
958
959 2016-02-25 Doug Evans <dje@google.com>
960
961 * remote-m32r-sdi.c (recv_char_data): Initialize val to avoid
962 compiler warning.
963 (recv_long_data): Ditto.
964
965 2016-02-25 Simon Marchi <simon.marchi@ericsson.com>
966
967 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault):
968 Initialize variables.
969
970 2016-02-25 Antoine Tremblay <antoine.tremblay@ericsson.com>
971
972 * ax-general.c (ax_reg): Call gdbarch_remote_register_number.
973 (ax_reg_mask): Likewise.
974
975 2016-02-24 Pedro Alves <palves@redhat.com>
976
977 * linux-nat.c (save_sigtrap) Delete.
978 (stop_wait_callback): Call save_stop_reason instead of
979 save_sigtrap.
980 (check_stopped_by_breakpoint): Rename to ...
981 (save_stop_reason): ... this. Bits of save_sigtrap folded here.
982 Use GDB_ARCH_IS_TRAP_HWBKPT and handle ambiguous
983 GDB_ARCH_IS_TRAP_BRKPT / GDB_ARCH_IS_TRAP_HWBKPT. Factor out
984 common code between the USE_SIGTRAP_SIGINFO and
985 !USE_SIGTRAP_SIGINFO blocks.
986 (linux_nat_filter_event): Call save_stop_reason instead of
987 save_sigtrap.
988 * nat/linux-ptrace.h: Check for both SI_KERNEL and TRAP_BRKPT
989 si_code for MIPS.
990 * nat/linux-ptrace.h: Fix "TRAP_HWBPT" typo in x86 table. Add
991 comments on MIPS behavior.
992 (GDB_ARCH_IS_TRAP_HWBKPT): Define for all archs.
993
994 2016-02-24 Marcin Kościelnicki <koriakin@0x04.net>
995
996 * rs6000-tdep.c (rs6000_frame_cache): Initialize frame and pc to 0
997 to avoid spurious warnings.
998
999 2016-02-24 Gary Benson <gbenson@redhat.com>
1000
1001 * exec.c (exec_file_locate_attach): Do not attempt to
1002 locate main executable locally if not found in sysroot.
1003
1004 2016-02-24 Joel Brobecker <brobecker@adacore.com>
1005
1006 GDB 7.11 released.
1007
1008 2016-02-24 Wei-cheng Wang <cole945@gmail.com>
1009
1010 * rs6000-tdep.c (rs6000_frame_cache, rs6000_frame_this_id): Handle
1011 unavailable PC/SP to build unavailable frame.
1012
1013 2016-02-23 Doug Evans <dje@google.com>
1014
1015 Extend "skip" command to support -file, -gfile, -function, -rfunction.
1016 * NEWS: Document new features.
1017 * skip.c: #include "fnmatch.h", "gdb_regex.h".
1018 (skiplist_entry) <file>: Renamed from filename.
1019 <function>: Renamed from function_name.
1020 <file_is_glob, function_is_regexp>: New members.
1021 <compiled_function_regexp, compiled_function_regexp_is_valid>:
1022 New members.
1023 (make_skip_entry): New function.
1024 (free_skiplist_entry, free_skiplist_entry_cleanup): New functions.
1025 (make_free_skiplist_entry_cleanup): New function.
1026 (skip_file_command): Update.
1027 (skip_function, skip_function_command): Update.
1028 (compile_skip_regexp): New functions.
1029 (skip_command): Add support for new options.
1030 (skip_info): Update.
1031 (skip_file_p, skip_gfile_p): New functions.
1032 (skip_function_p, skip_rfunction_p): New functions.
1033 (function_name_is_marked_for_skip): Update and simplify.
1034 (_initialize_step_skip): Update.
1035 * symtab.c: #include "fnmatch.h".
1036 (compare_glob_filenames_for_search): New function.
1037 * symtab.h (compare_glob_filenames_for_search): Declare.
1038 * utils.c (count_path_elements): New function.
1039 (strip_leading_path_elements): New function.
1040 * utils.h (count_path_elements): Declare.
1041 (strip_leading_path_elements): Declare.
1042
1043 2016-02-23 Simon Marchi <simon.marchi@ericsson.com>
1044
1045 * arm-tdep.c (arm_decode_svc_copro): Remove "to" parameter.
1046 (thumb_process_displaced_insn): Likewise.
1047 (arm_process_displaced_insn): Adjust calls.
1048
1049 2016-02-23 Yao Qi <yao.qi@linaro.org>
1050
1051 * aarch64-linux-tdep.c (enum aarch64_syscall) <aarch64_sys_mknod>:
1052 Remove.
1053 <aarch64_sys_mkdir, aarch64_sys_unlink, aarch64_sys_symlink>: Remove.
1054 <aarch64_sys_link, aarch64_sys_rename, aarch64_sys_faccess>: Remove.
1055 <aarch64_sys_mknodat, aarch64_sys_mkdirat>: New.
1056 <aarch64_sys_unlinkat, aarch64_sys_symlinkat>: New.
1057 <aarch64_sys_linkat, aarch64_sys_renameat>: New.
1058 <aarch64_sys_faccessat>: New.
1059 <aarch64_sys_open, aarch64_sys_readlink, aarch64_sys_fstatat>: Remove.
1060 <aarch64_sys_openat, aarch64_sys_readlinkat>: New.
1061 <aarch64_sys_newfstatat>: New.
1062 (UNSUPPORTED_SYSCALL_MAP): New macro.
1063 (aarch64_canonicalize_syscall): Add missing syscalls.
1064
1065 2016-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1066
1067 * gdb-gdb.py (class TypeFlagsPrinter): Use parentheses for print.
1068
1069 2016-02-22 Yao Qi <yao.qi@linaro.org>
1070
1071 * arm-tdep.c: Fix code format issues.
1072
1073 2016-02-21 Iain Buclaw <ibuclaw@gdcproject.org>
1074
1075 * d-namespace.c (d_lookup_symbol_imports): Remove argument
1076 'search_parents'. All callers updated.
1077
1078 2016-02-18 Marcin Kościelnicki <koriakin@0x04.net>
1079
1080 * s390-linux-tdep.c (s390_guess_tracepoint_registers): New function.
1081 (s390_gdbarch_init): Fill guess_tracepoint_registers hook.
1082
1083 2016-02-18 Walfred Tedeschi <walfred.tedeschi@intel.com>
1084
1085 * NEWS: Add entry for bound violation.
1086 * amd64-linux-tdep.c (amd64_linux_init_abi_common):
1087 Add handler for segmentation fault.
1088 * gdbarch.sh (handle_segmentation_fault): New.
1089 * gdbarch.c: Regenerate.
1090 * gdbarch.h: Regenerate.
1091 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): New.
1092 (SIG_CODE_BONDARY_FAULT): New define.
1093 (i386_linux_init_abi): Use i386_mpx_bound_violation_handler.
1094 * i386-linux-tdep.h (i386_linux_handle_segmentation_fault) New.
1095 * i386-tdep.c (i386_mpx_enabled): Add as external.
1096 * i386-tdep.c (i386_mpx_enabled): Add as external.
1097 * infrun.c (handle_segmentation_fault): New function.
1098 (print_signal_received_reason): Use handle_segmentation_fault.
1099
1100 2016-02-18 Marcin Kościelnicki <koriakin@0x04.net>
1101
1102 * arch-utils.c (default_guess_tracepoint_registers): New function.
1103 * arch-utils.h (default_guess_tracepoint_registers): New prototype.
1104 * gdbarch.c: Regenerate.
1105 * gdbarch.h: Regenerate.
1106 * gdbarch.sh: Add guess_tracepoint_registers hook.
1107 * tracefile.c (tracefile_fetch_registers): Use the new gdbarch hook.
1108
1109 2016-02-17 Gary Benson <gbenson@redhat.com>
1110
1111 * exec.c (exec_file_locate_attach): Add missing cleanup.
1112
1113 2016-02-16 Don Breazeal <donb@codesourcery.com>
1114
1115 PR remote/19496
1116 * remote.c (remove_new_fork_children): Check for pending
1117 fork status in thread_info.suspend.
1118
1119 2016-02-16 Yao Qi <yao.qi@linaro.org>
1120
1121 * arm-linux-tdep.c (arm_linux_software_single_step): Assign
1122 'old_chain' later.
1123
1124 2016-02-16 Yao Qi <yao.qi@linaro.org>
1125
1126 * arch/arm-get-next-pcs.h (struct arm_get_next_pcs_ops)
1127 <syscall_next_pc>: Remove argument PC. Callers updated.
1128 * arm-linux-tdep.c (arm_linux_get_next_pcs_syscall_next_pc):
1129 Remove argument PC. Get pc from regcache_read_pc.
1130 * arm-tdep.c (arm_get_next_pcs_syscall_next_pc): Remove
1131 argument PC.
1132
1133 2016-02-15 Yao Qi <yao.qi@linaro.org>
1134
1135 * aarch64-tdep.c (aarch64_analyze_prologue): Remove "0x".
1136
1137 2016-02-12 Yao Qi <yao.qi@linaro.org>
1138
1139 * arch/arm-linux.c (arm_linux_get_next_pcs_fixup): Calculate
1140 nextpc according to instruction.
1141
1142 2016-02-12 Yao Qi <yao.qi@linaro.org>
1143
1144 * arch/arm-get-next-pcs.c (arm_get_next_pcs): Call
1145 self->ops->fixup if it isn't NULL.
1146 * arch/arm-get-next-pcs.h: Include gdb_vecs.h.
1147 (struct arm_get_next_pcs_ops) <fixup>: New field.
1148 * arch/arm-linux.c: Include common-regcache.h and
1149 arch/arm-get-next-pcs.h.
1150 (arm_linux_get_next_pcs_fixup): New function.
1151 * arch/arm-linux.h (arm_linux_get_next_pcs_fixup): Declare.
1152 * arm-linux-tdep.c (arm_linux_get_next_pcs_ops): Initialize
1153 it with arm_linux_get_next_pcs_fixup.
1154 (arm_linux_software_single_step): Move code to
1155 arm_linux_get_next_pcs_fixup.
1156 * arm-tdep.c (arm_get_next_pcs_ops): Initialize it.
1157
1158 2016-02-12 Marcin Kościelnicki <koriakin@0x04.net>
1159
1160 * xml-tdesc.c (target_fetch_description_xml) [!HAVE_LIBEXPAT]: Warn
1161 and return NULL.
1162
1163 2016-02-12 Markus Metzger <markus.t.metzger@intel.com>
1164
1165 * frame.h (skip_tailcall_frames): Update comment.
1166 * frame.c (skip_artificial_frames, skip_tailcall_frames): Return NULL
1167 if only artificial frames are found. Update comment.
1168 (frame_unwind_caller_id): Handle NULL return.
1169 (frame_unwind_caller_pc, frame_unwind_caller_arch): Assert that
1170 skip_artificial_frames does not return NULL.
1171 (frame_pop): Add an error if only tailcall frames are found.
1172 * infcmd.c (finish_command): Move skip_tailcall_frames call into
1173 forward-execution case. Add an error if only tailcall frames are
1174 found.
1175
1176 2016-02-12 Markus Metzger <markus.t.metzger@intel.com>
1177
1178 * stack.c (frame_info): Check frame_unwind_caller_id.
1179
1180 2016-02-12 Markus Metzger <markus.t.metzger@intel.com>
1181
1182 * frame.h (skip_tailcall_frames): New.
1183 * frame.c (skip_tailcall_frames): New.
1184 (frame_pop): Call skip_tailcall_frames.
1185 * infcmd.c (finish_command): Call skip_tailcall_frames.
1186
1187 2016-02-11 Pedro Alves <palves@redhat.com>
1188
1189 * Makefile.in (check-parallel): New rule.
1190
1191 2016-02-11 Simon Marchi <simon.marchi@ericsson.com>
1192
1193 * arm-tdep.c (arm_skip_prologue): Remove unused variables.
1194 (arm_analyze_prologue): Likewise.
1195 (arm_scan_prologue): Likewise.
1196 (arm_m_exception_prev_register): Likewise.
1197 (arm_copy_block_xfer): Likewise.
1198 (thumb2_copy_block_xfer): Likewise.
1199 (arm_decode_miscellaneous): Likewise.
1200 (arm_decode_ld_st_word_ubyte): Likewise.
1201 (arm_decode_svc_copro): Likewise.
1202 (thumb2_decode_svc_copro): Likewise.
1203 (thumb_copy_16bit_ldr_literal): Likewise.
1204 (thumb_copy_pop_pc_16bit): Likewise.
1205 (decode_thumb_32bit_ld_mem_hints): Likewise.
1206 (arm_show_force_mode): Likewise.
1207 (_initialize_arm_tdep): Likewise.
1208 (arm_record_strx): Likewise.
1209 (arm_record_extension_space): Likewise.
1210 (arm_record_data_proc_misc_ld_str): Likewise.
1211 (arm_record_exreg_ld_st_insn): Likewise.
1212 (arm_record_vfp_data_proc_insn): Likewise.
1213 (arm_record_coproc_data_proc): Likewise.
1214 (thumb_record_misc): Likewise.
1215 (thumb_record_ldm_stm_swi): Likewise.
1216 (thumb2_record_ld_st_dual_ex_tbb): Likewise.
1217 (thumb2_record_ld_mem_hints): Likewise.
1218 (thumb2_record_lmul_lmla_div): Likewise.
1219 (thumb2_record_asimd_struct_ld_st): Likewise.
1220 (arm_process_record): Likewise.
1221
1222 2016-02-11 Simon Marchi <simon.marchi@ericsson.com>
1223
1224 * arm-tdep.c (arm_displaced_step_copy_insn): Remove.
1225 (ARM displaced stepping support): Remove reference to
1226 arm_displaced_step_copy_insn in comment.
1227 * arm-tdep.h (arm_displaced_step_copy_insn): Remove.
1228 * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Remove
1229 reference to arm_displaced_step_copy_insn in comment.
1230
1231 2016-02-11 Simon Marchi <simon.marchi@ericsson.com>
1232
1233 * arm-tdep.c (thumb_copy_unmodified_16bit): Change type of insn.
1234 (thumb_copy_b): Likewise.
1235 (arm_decode_b_bl_ldmstm): Likewise.
1236 (thumb_copy_16bit_ldr_literal): Likewise.
1237 (thumb_copy_pop_pc_16bit): Likewise.
1238
1239 2016-02-11 Antoine Tremblay <antoine.tremblay@ericsson.com>
1240
1241 * tracepoint.c (encode_actions_1): Use target_gdbarch () rather
1242 than loc->gdbarch.
1243
1244 2016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
1245
1246 * tracefile-tfile.c (trace_tdesc): New static variable.
1247 (tfile_open): Clear trace_tdesc, call target_find_description.
1248 (tfile_interp_line): Recognize tdesc lines.
1249 (tfile_close): Clear trace_tdesc.
1250 (tfile_xfer_partial_features): New function.
1251 (tfile_xfer_partial): Call tfile_xfer_partial_features.
1252 (tfile_append_tdesc_line): New function.
1253
1254 2016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
1255
1256 * ctf.c (ctf_write_tdesc): New function.
1257 (ctf_write_ops): Wire in ctf_write_tdesc.
1258 * tracefile-tfile.c (tfile_write_tdesc): New function.
1259 (tfile_write_ops): Wire in tfile_write_tdesc.
1260 * tracefile.c (trace_save): Call write_tdesc method.
1261 * tracefile.h (struct trace_file_write_ops): Add write_tdesc method.
1262 * xml-tdesc.c (target_fetch_description_xml): New function.
1263 * xml-tdesc.h: Add target_fetch_description_xml prototype.
1264
1265 2016-02-10 Simon Marchi <simon.marchi@ericsson.com>
1266
1267 * arm-tdep.c (arm_copy_extra_ld_st): Fix "unpriveleged" typo.
1268 (arm_decode_dp_misc): Likewise.
1269
1270 2016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
1271
1272 * amd64-tdep.c (amd64_ax_pseudo_register_collect): New function.
1273 (amd64_init_abi): Fill ax_pseudo_register_collect hook.
1274 * gdb/i386-tdep.c (i386_pseudo_register_read_into_value): Remove
1275 misleading comment.
1276 (i386_pseudo_register_write): Ditto.
1277 (i386_ax_pseudo_register_collect): New function.
1278 (i386_gdbarch_init): Fill ax_pseudo_register_collect hook.
1279 * i386-tdep.h: Add i386_ax_pseudo_register_collect prototype.
1280
1281 2016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
1282
1283 * tracefile-tfile.c (tfile_fetch_registers): Use g packet order
1284 instead of gdb order.
1285
1286 2016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
1287
1288 * tracefile-tfile.c (tfile_fetch_registers): Fix off-by-one in bounds
1289 check.
1290
1291 2016-02-10 Joel Brobecker <brobecker@adacore.com>
1292
1293 * NEWS: Create a new section for the next release branch.
1294 Rename the section of the current branch, now that it has
1295 been cut.
1296
1297 2016-02-10 Joel Brobecker <brobecker@adacore.com>
1298
1299 GDB 7.11 branch created (9ef9e6a6a0dd8f948708cb67c9afcfd0be40cb0a):
1300 * version.in: Bump version to 7.11.50.DATE-git.
1301
1302 2016-02-09 Keith Seitz <keiths@redhat.com>
1303
1304 PR breakpoints/19546
1305 * breakpoint.c (breakpoint_event_location_empty_p): New function.
1306 (update_breakpoints_after_exec, bkpt_re_set): Use this new function
1307 instead of event_location_empty_p.
1308
1309 2016-02-09 Keith Seitz <keiths@redhat.com>
1310
1311 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Use
1312 string_to_event_location_basic instead of string_to_event_location.
1313
1314 2016-02-09 Keith Seitz <keiths@redhat.com>
1315
1316 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Skip
1317 leading whitespace and use string_to_event_location_basic instead
1318 of new_linespec_location.
1319
1320 2016-02-09 Keith Seitz <keiths@redhat.com>
1321
1322 PR python/19506
1323 * python/py-breakpoint.c (bppy_init): Use
1324 string_to_event_location_basic instead of new_linespec_location.
1325
1326 2016-02-09 Keith Seitz <keiths@redhat.com>
1327
1328 * location.c (string_to_explicit_location): Note that "-p" is
1329 reserved for probe locations and return NULL for any input
1330 that starts with that.
1331 (string_to_event_location): Move "legacy" linespec code to ...
1332 (string_to_event_location_basic): ... here.
1333 * location.h (string_to_event_location): Update comment.
1334 (string_to_event_location_basic): New function.
1335
1336 2016-02-09 Simon Marchi <simon.marchi@ericsson.com>
1337
1338 * configure.ac: Use AC_CONFIG_FILES instead of passing arguments
1339 to AC_OUTPUT. Remove "exit 0" at the end.
1340 * configure: Regenerate.
1341
1342 2016-02-09 Pedro Alves <palves@redhat.com>
1343
1344 PR breakpoints/19548
1345 * breakpoint.c (create_overlay_event_breakpoint): Don't update
1346 global location list here.
1347 (create_longjmp_master_breakpoint)
1348 (create_std_terminate_master_breakpoint)
1349 (create_exception_master_breakpoint, create_jit_event_breakpoint)
1350 (update_breakpoint_locations):
1351 (breakpoint_re_set): Update global location list after all
1352 breakpoints are re-set.
1353
1354 2016-02-08 Simon Marchi <simon.marchi@ericsson.com>
1355
1356 * remote.c (remote_register_number_and_offset): Remove unused
1357 variable(s).
1358 (remote_thread_always_alive): Likewise.
1359 (remote_update_thread_list): Likewise.
1360 (process_initial_stop_replies): Likewise.
1361 (remote_start_remote): Likewise.
1362 (remote_check_symbols): Likewise.
1363 (discard_pending_stop_replies): Likewise.
1364 (process_stop_reply): Likewise.
1365 (putpkt_binary): Likewise.
1366 (getpkt): Likewise.
1367 (remote_add_target_side_condition): Likewise.
1368 (remote_insert_breakpoint): Likewise.
1369 (remote_supports_stopped_by_sw_breakpoint): Likewise.
1370 (remote_supports_stopped_by_hw_breakpoint): Likewise.
1371 (remote_xfer_partial): Likewise.
1372 (remote_read_btrace): Likewise.
1373 (remote_async_serial_handler): Likewise.
1374 (remote_thread_events): Likewise.
1375 (_initialize_remote): Likewise.
1376
1377 2016-02-07 Simon Marchi <simon.marchi@polymtl.ca>
1378
1379 * varobj.h (varobj_delete): Remove dellist parameter, update and
1380 move documentation here.
1381 * varobj.c (struct cpstack, cppush, cppop): Remove.
1382 (delete_variable): Remove resultp (first) parameter.
1383 (delete_variable_1): Likewise.
1384 (varobj_delete): Remove dellist parameter and unused code.
1385 (update_dynamic_varobj_children): Adjust varobj_delete call.
1386 (update_type_if_necessary): Likewise.
1387 (varobj_set_visualizer): Likewise.
1388 (varobj_update): Likewise.
1389 (value_of_root): Likewise.
1390 (varobj_invalidate_iter): Likewise.
1391 * mi/mi-cmd-var.c (mi_cmd_var_delete): Likewise.
1392
1393 2016-02-04 Yao Qi <yao.qi@linaro.org>
1394
1395 * remote.c (remote_wait_as): Set rs->waiting_for_stop_reply to
1396 0 before handling 'F' and set it back afterwards.
1397
1398 2016-02-02 Simon Marchi <simon.marchi@ericsson.com>
1399
1400 * ui-out.c (MAX_UI_OUT_LEVELS): Remove.
1401
1402 2016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
1403
1404 * amd64-linux-siginfo.c (nat_siginfo_t, nat_sigval_t, nat_timeval):
1405 New types.
1406 (compat_siginfo): New bound fields added.
1407 (compat_x32_siginfo): New field added.
1408 (cpt_si_addr_lsb): New define.
1409 (compat_siginfo_from_siginfo): Use nat_siginfo.
1410 (siginfo_from_compat_siginfo): Use nat_siginfo.
1411 (compat_x32_siginfo_from_siginfo): Likewise.
1412 (siginfo_from_compat_x32_siginfo): Likewise.
1413
1414 2016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
1415
1416 * linux-tdep.c (linux_get_siginfo_type): Add the _addr_bnd
1417 structure to the siginfo if extra_fields contains
1418 LINUX_SIGINFO_FIELD_ADDR_BND.
1419
1420 2016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
1421
1422 * linux-tdep.h (linux_get_siginfo_type_with_fields): Make extern.
1423 * linux-tdep.c (linux_get_siginfo_type_with_fields): Make extern.
1424 * i386-linux-tdep.h (x86_linux_get_siginfo_type): New
1425 function.
1426 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Add
1427 x86_linux_get_siginfo_type for the amd64 abi.
1428 * i386-linux-tdep.c (x86_linux_get_siginfo_type): New
1429 function.
1430 (i386_linux_init_abi): Add new function at the i386 ABI
1431 initialization.
1432
1433 2016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
1434
1435 * linux-tdep.h (linux_siginfo_extra_field_values): New enum values.
1436 (linux_siginfo_extra_fields): New enum type.
1437 * linux-tdep.c (linux_get_siginfo_type_with_fields): New function.
1438 (linux_get_siginfo_type): Use new function.
1439
1440 2016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
1441
1442 * nat/amd64-linux-siginfo.c: New file.
1443 * nat/amd64-linux-siginfo.h: New file.
1444 * Makefile.in (HFILES_NO_SRCDIR): Add nat/amd64-linux-siginfo.h.
1445 (amd64-linux-siginfo.o): New rule.
1446 * config/i386/linux64.mh (NATDEPFILES): Add amd64-linux-siginfo.o.
1447 * amd64-linux-nat.c (nat/amd64-linux-siginfo.h): New include.
1448 (compat_siginfo_from_siginfo, siginfo_from_compat_siginfo)
1449 (compat_x32_siginfo_from_siginfo, siginfo_from_compat_x32_siginfo)
1450 (compat_timeval, compat_sigval, compat_x32_clock, cpt_si_pid)
1451 (cpt_si_uid, cpt_si_timerid, cpt_si_overrun, cpt_si_status)
1452 (cpt_si_utime, cpt_si_stime, cpt_si_ptr, cpt_si_addr, cpt_si_band)
1453 (cpt_si_fd, si_timerid, si_overrun): Move to nat/amd64-linux-siginfo.c.
1454
1455 2016-02-01 Andrew Burgess <andrew.burgess@embecosm.com>
1456
1457 * value.c (max_value_size): New variable.
1458 (MIN_VALUE_FOR_MAX_VALUE_SIZE): New define.
1459 (set_max_value_size): New function.
1460 (show_max_value_size): New function.
1461 (check_type_length_before_alloc): New function.
1462 (allocate_value_contents): Call check_type_length_before_alloc.
1463 (set_value_enclosing_type): Likewise.
1464 (_initialize_values): Add set/show handler for max-value-size.
1465 * NEWS: Mention new set/show command.
1466
1467 2016-01-31 Simon Marchi <simon.marchi@polymtl.ca>
1468
1469 * varobj.h (struct varobj): Fix typos in comments.
1470 (struct lang_varobj_ops): Likewise.
1471 * varobj.c (VAROBJ_TABLE_SIZE): Likewise.
1472 (varobj_create): Move misplaced comment.
1473
1474 2016-01-29 Simon Marchi <simon.marchi@ericsson.com>
1475
1476 * aarch64-tdep.c (aarch64_record_asimd_load_store): Add braces
1477 to for include additional lines.
1478 * xcoffread.c (scan_xcoff_symtab): Remove unnecessary braces.
1479
1480 2016-01-28 Simon Marchi <simon.marchi@ericsson.com>
1481
1482 * gnulib/import/Makefile.am: Regenerate.
1483 * gnulib/import/Makefile.in: Regenerate.
1484 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
1485 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add rawmemchr.
1486
1487 2016-01-28 Simon Marchi <simon.marchi@ericsson.com>
1488
1489 * remote.c (skip_to_semicolon): Remove.
1490 (remote_parse_stop_reply): Use strchrnul instead of
1491 skip_to_semicolon.
1492 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
1493 strchrnul.
1494 * gnulib/aclocal.m4: Regenerate.
1495 * gnulib/config.in: Regenerate.
1496 * gnulib/configure: Regenerate.
1497 * gnulib/import/Makefile.am: Regenerate.
1498 * gnulib/import/Makefile.in: Regenerate.
1499 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
1500 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
1501 * gnulib/import/m4/rawmemchr.m4: New file.
1502 * gnulib/import/m4/strchrnul.m4: New file.
1503 * gnulib/import/rawmemchr.c: New file.
1504 * gnulib/import/rawmemchr.valgrind: New file.
1505 * gnulib/import/strchrnul.c: New file.
1506 * gnulib/import/strchrnul.valgrind: New file.
1507
1508 2016-01-28 Yao Qi <yao.qi@linaro.org>
1509
1510 * breakpoint.c (build_target_command_list): Don't call continue
1511 if aexpr is NULL.
1512 (build_target_condition_list): Likewise.
1513
1514 2016-01-27 Kevin Buettner <kevinb@redhat.com>
1515
1516 * rx-tdep.c (rx_push_dummy_call): Treat scalars larger than 8
1517 bytes as aggregates.
1518
1519 2016-01-27 Joel Brobecker <brobecker@adacore.com>
1520
1521 * MAINTAINERS (Responsible Maintainers): Add Keith Seitz as
1522 Linespec Maintainers.
1523
1524 2016-01-26 Simon Marchi <simon.marchi@ericsson.com>
1525
1526 * common/common-utils.c (skip_spaces): Fix comment.
1527 (skip_to_space_const): Likewise.
1528
1529 2016-01-25 Yao Qi <yao.qi@linaro.org>
1530
1531 * arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw):
1532 Remove argument pc. Get pc by regcache_read_pc. Callers updated.
1533 (arm_deal_with_atomic_sequence_raw): Likewise.
1534 (thumb_get_next_pcs_raw): Likewise.
1535 (arm_get_next_pcs_raw): Likewise.
1536 (arm_get_next_pcs): Remove argument pc. Callers updated.
1537 * arch/arm-get-next-pcs.h (arm_get_next_pcs): Update declaration.
1538
1539 2016-01-25 Mark Wielaard <mjw@redhat.com>
1540
1541 * ada-lang.c (ada_evaluate_subexp): Add proper else block.
1542 * c-typeprint.c (c_type_print_base): Fix misleading indentation of
1543 if statement.
1544 * inflow.c (child_terminal_ours_1): Fix misleading indentation of
1545 statement block by introducing an else.
1546 * linux-record.c (record_linux_sockaddr): Fix misleading indentation
1547 of return statements.
1548 (record_linux_msghdr): Likewise.
1549
1550 2016-01-25 Pedro Alves <palves@redhat.com>
1551
1552 PR threads/19461
1553 * infrun.c (handle_inferior_event_1) <fork/vfork>: Update
1554 parent/child running states.
1555
1556 2016-01-25 Pedro Alves <palves@redhat.com>
1557
1558 PR gdb/19494
1559 * linux-nat.c (kill_one_lwp): New, factored out from ...
1560 (kill_callback): ... this.
1561 (kill_wait_callback): New, factored out from ...
1562 (kill_wait_one_lwp): ... this.
1563 (kill_unfollowed_fork_children): New function.
1564 (linux_nat_kill): Use it.
1565
1566 2016-01-22 John Baldwin <jhb@FreeBSD.org>
1567
1568 * fbsd-nat.c (fbsd_pid_to_str): Adjust string format.
1569
1570 2016-01-22 Yao Qi <yao.qi@linaro.org>
1571
1572 * arm-linux-nat.c (fetch_fpregs): Call perror_with_name
1573 instead of warning.
1574 (store_fpregs, fetch_regs, store_regs): Likewise.
1575 (fetch_wmmx_regs, store_wmmx_regs): Likewise.
1576 (fetch_vfp_regs, store_vfp_regs): Likewise.
1577
1578 2016-01-21 Doug Evans <dje@google.com>
1579
1580 * breakpoint.c (init_breakpoint_sal): Add comment.
1581
1582 2016-01-21 Marcin Kościelnicki <koriakin@0x04.net>
1583
1584 * ax-gdb.c (gen_traced_pop): Use gen_fetch for string collection.
1585
1586 2016-01-21 Andrew Burgess <andrew.burgess@embecosm.com>
1587
1588 * disasm.c (maybe_add_dis_line_entry): Rename to...
1589 (add_dis_line_entry): ...this, and update header comment.
1590 (do_mixed_source_and_assembly): Now use add_dis_line_entry.
1591
1592 2016-01-21 Pedro Alves <palves@redhat.com>
1593
1594 * Makefile.in (COMPILER_CFLAGS): New.
1595 (CXXFLAGS): Get it from configure.
1596 (INTERNAL_CFLAGS_BASE, INTERNAL_LDFLAGS): Use COMPILER_CFLAGS
1597 instead of CFLAGS.
1598 * build-with-cxx.m4 (GDB_AC_BUILD_WITH_CXX): Set and AC_SUBST
1599 COMPILER_CFLAGS.
1600 * configure: Regenerate.
1601
1602 2016-01-21 Joel Brobecker <brobecker@adacore.com>
1603
1604 * location.h (new_address_location): Add new parameters
1605 "addr_string" and "addr_string_len".
1606 (get_address_string_location): Add declaration.
1607 * location.c (new_address_location): Add new parameters
1608 "addr_string" and "addr_string_len". If not NULL, store
1609 a copy of the addr_string in the new location as well.
1610 (get_address_string_location): New function.
1611 (string_to_event_location): Update call to new_address_location.
1612 * linespec.c (event_location_to_sals) <ADDRESS_LOCATION>:
1613 Save the event location in the parser's state before
1614 passing it to convert_address_location_to_sals.
1615 * breakpoint.c (create_thread_event_breakpoint): Update call
1616 to new_address_location.
1617 (init_breakpoint_sal): Get the event location's string, if any,
1618 and use it to update call to new_address_location.
1619 * python/py-finishbreakpoint.c (bpfinishpy_init):
1620 Update call to new_address_location.
1621 * spu-tdep.c (spu_catch_start): Likewise.
1622
1623 * config/djgpp/fnchange.lst: Add entries for
1624 gdb/testsuite/gdb.base/break-fun-addr1.c and
1625 gdb/testsuite/gdb.base/break-fun-addr2.c.
1626
1627 2016-01-21 Yao Qi <yao.qi@linaro.org>
1628
1629 * arm-linux-tdep.c (arm_linux_sigreturn_next_pc): Add parameter
1630 is_thumb and set it according to CPSR saved on the stack.
1631 (arm_linux_get_next_pcs_syscall_next_pc): Pass is_thumb to
1632 arm_linux_sigreturn_next_pc.
1633
1634 2016-01-20 Simon Marchi <simon.marchi@polymtl.ca>
1635
1636 * python/lib/gdb/printing.py (FlagEnumerationPrinter.__call__):
1637 Fix enumerators sort key function.
1638
1639 2016-01-20 Joel Brobecker <brobecker@adacore.com>
1640
1641 * printcmd.c (print_scalar_formatted): Move binary operator from
1642 end of line to beginning of next line. Adjust formatting
1643 accordingly.
1644
1645 2016-01-19 John Baldwin <jhb@FreeBSD.org>
1646
1647 * fbsd-nat.c (fbsd_pid_to_exec_file): Use new "buflen" instead of
1648 "len" with sysctl.
1649
1650 2016-01-19 John Baldwin <jhb@FreeBSD.org>
1651
1652 * fbsd-tdep.c (find_stop_signal): Remove.
1653 (struct fbsd_collect_regset_section_cb) <lwp>: New field.
1654 <stop_signal>: New field.
1655 <abort_iteration>: New field.
1656 (fbsd_collect_regset_section_cb): Use new fields.
1657 (fbsd_collect_thread_registers): New function.
1658 (struct fbsd_corefile_thread_data): New structure.
1659 (fbsd_corefile_thread): New function.
1660 (fbsd_make_corefile_notes): Use new function to dump notes for each
1661 non-exited thread in a process.
1662
1663 2016-01-19 John Baldwin <jhb@FreeBSD.org>
1664
1665 * configure.ac: Check for support for LWP names on FreeBSD.
1666 * fbsd-nat.c [PT_LWPINFO] New variable debug_fbsd_lwp.
1667 [TDP_RFPPWAIT || HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME]
1668 (fbsd_fetch_kinfo_proc): Move function earlier.
1669 [PT_LWPINFO] (fbsd_thread_alive): New function.
1670 [PT_LWPINFO] (fbsd_pid_to_str): New function.
1671 [HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME] (fbsd_thread_name): New function.
1672 [PT_LWP_EVENTS] (fbsd_enable_lwp_events): New function.
1673 [PT_LWPINFO] (fbsd_add_threads): New function.
1674 [PT_LWPINFO] (fbsd_update_thread_list): New function.
1675 [PT_LWPINFO] New variable super_resume.
1676 [PT_LWPINFO] (resume_one_thread_cb): New function.
1677 [PT_LWPINFO] (resume_all_threads_cb): New function.
1678 [PT_LWPINFO] (fbsd_resume): New function.
1679 (fbsd_remember_child): Save full ptid instead of plain pid.
1680 (fbsd_is_child_pending): Return ptid of saved child process.
1681 (fbsd_wait): Include lwp in returned ptid and switch to LWP ptid on
1682 first stop.
1683 [PT_LWP_EVENTS] Handle LWP events.
1684 [TDP_RFPPWAIT] Include LWP in child ptid.
1685 (fbsd_post_startup_inferior) [PT_LWP_EVENTS]: Enable LWP events.
1686 (fbsd_post_attach) [PT_LWP_EVENTS]: Enable LWP events.
1687 Add threads for existing processes.
1688 (fbsd_nat_add_target) [PT_LWPINFO]: Set "to_thread_alive" to
1689 "fbsd_thread_alive".
1690 Set "to_pid_to_str" to "fbsd_pid_to_str".
1691 [HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME]: Set "to_thread_name" to
1692 "fbsd_thread_name".
1693 [PT_LWPINFO]: Set "to_update_thread_list" to "fbsd_update_thread_list".
1694 Set "to_has_thread_control" to "tc_schedlock".
1695 Set "to_resume" to "fbsd_resume".
1696 (_initialize_fbsd_nat): New function.
1697 * configure: Regenerate.
1698 * config.in: Regenerate.
1699
1700 2016-01-19 John Baldwin <jhb@FreeBSD.org>
1701
1702 * amd64bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
1703 get_ptrace_pid.
1704 (amd64bsd_store_inferior_registers): Use get_ptrace_pid.
1705 (amd64bsd_dr_get): Use get_ptrace_pid.
1706 (amd64bsd_dr_set): Use get_ptrace_pid.
1707 * i386bsd-nat.c (i386bsd_fetch_inferior_registers): Use get_ptrace_pid.
1708 (i386bsd_store_inferior_registers): Use get_ptrace_pid.
1709 (i386bsd_dr_get): Use get_ptrace_pid.
1710 (i386bsd_dr_set): Use get_ptrace_pid.
1711 * inf-ptrace.c (get_ptrace_pid): Export.
1712 * inf-ptrace.h (get_ptrace_pid): Declare.
1713 * ppcfbsd-nat.c (ppcfbsd_fetch_inferior_registers): Use lwp id.
1714 (ppcfbsd_store_inferior_registers): Use lwp id.
1715
1716 2016-01-19 John Baldwin <jhb@FreeBSD.org>
1717
1718 * fbsd_tdep.c (fbsd_core_pid_to_str): New function.
1719 (fbsd_core_thread_name): New function.
1720 (fbsd_init_abi): Add "core_pid_to_str" gdbarch method.
1721 Add "core_thread_name" gdbarch method.
1722
1723 2016-01-19 John Baldwin <jhb@FreeBSD.org>
1724
1725 * corelow.c (core_thread_name): New function.
1726 (init_core_ops): Use "core_thread_name" for the "to_thread_name"
1727 target op.
1728 * gdbarch.sh (core_thread_name): New gdbarch callback.
1729 * gdbarch.h: Re-generate.
1730 * gdbarch.c: Re-generate.
1731
1732 2016-01-19 Simon Marchi <simon.marchi@polymtl.ca>
1733
1734 * python/lib/gdb/printing.py (_EnumInstance.to_string): Explicitly
1735 convert gdb.Value to integer type using int().
1736
1737 2016-01-19 John Baldwin <jhb@FreeBSD.org>
1738
1739 * configure.ac: Include <sys/types.h when checking for "r_fs" in
1740 "struct reg".
1741 * configure: Regenerate.
1742
1743 2016-01-19 Pedro Alves <palves@redhat.com>
1744
1745 * ax-gdb.c (agent_command_1): Adjust call to decode_line_full.
1746 * break-catch-throw.c (re_set_exception_catchpoint): Pass the
1747 current program space down to linespec decoding and breakpoint
1748 location updating.
1749 * breakpoint.c (parse_breakpoint_sals): Adjust calls to
1750 decode_line_full.
1751 (until_break_command): Adjust calls to decode_line_1.
1752 (base_breakpoint_decode_location, bkpt_decode_location): Add
1753 'search_pspace' parameter. Pass it along.
1754 (bkpt_probe_create_sals_from_location): Adjust calls to
1755 parse_probes.
1756 (tracepoint_decode_location, tracepoint_probe_decode_location)
1757 (strace_marker_decode_location): Add 'search_pspace' parameter.
1758 Pass it along.
1759 (all_locations_are_pending): Rewrite to take a breakpoint and
1760 program space as arguments instead.
1761 (hoist_existing_locations): New function.
1762 (update_breakpoint_locations): Add 'filter_pspace' parameter. Use
1763 hoist_existing_locations instead of always removing all locations,
1764 and adjust to all_locations_are_pending change.
1765 (location_to_sals): Add 'search_pspace' parameter. Pass it along.
1766 Don't disable the breakpoint if there are other locations in
1767 another program space.
1768 (breakpoint_re_set_default): Adjust to pass down the current
1769 program space as filter program space.
1770 (decode_location_default): Add 'search_pspace' parameter and pass
1771 it along.
1772 (prepare_re_set_context): Don't switch program space here.
1773 (breakpoint_re_set): Use save_current_space_and_thread instead of
1774 save_current_program_space.
1775 * breakpoint.h (struct breakpoint_ops) <decode_location>: Add
1776 'search_pspace' parameter.
1777 (update_breakpoint_locations): Add 'filter_pspace' parameter.
1778 * cli/cli-cmds.c (edit_command, list_command): Adjust calls to
1779 decode_line_1.
1780 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the current
1781 program space as filter program space.
1782 * linespec.c (struct linespec_state) <search_pspace>: New field.
1783 (create_sals_line_offset, convert_explicit_location_to_sals)
1784 (parse_linespec): Pass the search program space down.
1785 (linespec_state_constructor): Add 'search_pspace' parameter.
1786 Store it.
1787 (linespec_parser_new): Add 'search_pspace' parameter and pass it
1788 along.
1789 (linespec_lex_to_end): Adjust.
1790 (decode_line_full, decode_line_1): Add 'search_pspace' parameter
1791 and pass it along.
1792 (decode_line_with_last_displayed): Adjust.
1793 (collect_symtabs_from_filename, symtabs_from_filename): New
1794 'search_pspace' parameter. Use it.
1795 (find_function_symbols): Pass the search program space down.
1796 * linespec.h (decode_line_1, decode_line_full): Add
1797 'search_pspace' parameter.
1798 * probe.c (parse_probes_in_pspace): New function, factored out
1799 from ...
1800 (parse_probes): ... this. Add 'search_pspace' parameter and use
1801 it.
1802 * probe.h (parse_probes): Add pspace' parameter.
1803 * python/python.c (gdbpy_decode_line): Adjust.
1804 * tracepoint.c (scope_info): Adjust.
1805
1806 2016-01-18 Maciej W. Rozycki <macro@imgtec.com>
1807
1808 * mips-tdep.c (mips_insn_size): Remove 48-bit microMIPS
1809 instruction support.
1810 (micromips_next_pc): Likewise.
1811 (micromips_scan_prologue): Likewise.
1812 (micromips_deal_with_atomic_sequence): Likewise.
1813 (micromips_stack_frame_destroyed_p): Likewise.
1814 (mips_breakpoint_from_pc): Likewise.
1815
1816 2016-01-18 Maciej W. Rozycki <macro@imgtec.com>
1817
1818 * mips-tdep.c (micromips_insn_at_pc_has_delay_slot): Pass
1819 unshifted 16-bit microMIPS instruction word to `mips_insn_size'.
1820
1821 2016-01-18 Pedro Alves <palves@redhat.com>
1822
1823 * NEWS: Mention that GDB now displays the ID and name of the
1824 thread that hit a breakpoint or received a signal.
1825 * break-catch-sig.c (signal_catchpoint_print_it): Use
1826 maybe_print_thread_hit_breakpoint.
1827 * break-catch-syscall.c (print_it_catch_syscall): Likewise.
1828 * break-catch-throw.c (print_it_exception_catchpoint): Likewise.
1829 * breakpoint.c (maybe_print_thread_hit_breakpoint): New function.
1830 (print_it_catch_fork, print_it_catch_vfork, print_it_catch_solib)
1831 (print_it_catch_exec, print_it_ranged_breakpoint)
1832 (print_it_watchpoint, print_it_masked_watchpoint, bkpt_print_it):
1833 Use maybe_print_thread_hit_breakpoint.
1834 * breakpoint.h (maybe_print_thread_hit_breakpoint): Declare.
1835 * gdbthread.h (show_thread_that_caused_stop): Declare.
1836 * infrun.c (print_signal_received_reason): Print which thread
1837 received signal.
1838 * thread.c (show_thread_that_caused_stop): New function.
1839
1840 2016-01-18 Gary Benson <gbenson@redhat.com>
1841
1842 * nat/linux-namespaces.c (do_fork): New function.
1843 (linux_mntns_get_helper): Use the above.
1844
1845 2016-01-17 Jonas Hahnfeld <Hahnfeld@itc.rwth-aachen.de> (tiny change)
1846
1847 Pushed by Joel Brobecker <brobecker@adacore.com>.
1848 PR gdb/19208
1849 * dwarf2read.c (read_partial_die): Do not call set_objfile_main_name
1850 if the function has no name.
1851
1852 2016-01-15 Sandra Loosemore <sandra@codesourcery.com>
1853
1854 * charset.c [PHONY_ICONV] (GDB_DEFAULT_HOST_CHARSET):
1855 Conditionalize for Windows host.
1856 (GDB_DEFAULT_TARGET_CHARSET): Match GDB_DEFAULT_HOST_CHARSET.
1857 (GDB_DEFAULT_TARGET_WIDE_CHARSET): Use UTF-32.
1858 (phony_iconv_open): Handle both UTF-32 endiannesses.
1859 (phony_iconv): Likewise. Check for output overflow and clean up
1860 out-of-input cases. Correct adjustment to input buffer pointer.
1861 (set_be_le_names) [PHONY_ICONV]: Use hard-wired names to match
1862 phony_iconv_open.
1863
1864 2016-01-15 Pedro Alves <palves@redhat.com>
1865
1866 * NEWS: Mention star wildcard ranges.
1867 * cli/cli-utils.c (get_number_or_range): Check state->in_range first.
1868 (number_range_setup_range): New function.
1869 * cli/cli-utils.h (number_range_setup_range): New declaration.
1870 * thread.c (thread_apply_command): Support star TID ranges.
1871 * tid-parse.c (tid_range_parser_finished)
1872 (tid_range_parser_string, tid_range_parser_skip)
1873 (get_tid_or_range, get_tid_or_range): Handle
1874 TID_RANGE_STATE_STAR_RANGE.
1875 (tid_range_parser_star_range): New function.
1876 * tid-parse.h (enum tid_range_state) <TID_RANGE_STATE_STAR_RANGE>:
1877 New value.
1878 (tid_range_parser_star_range): New declaration.
1879
1880 2016-01-15 Pedro Alves <palves@redhat.com>
1881
1882 * thread.c (thread_apply_command): Use the tid range parser to
1883 advance past the thread ID list.
1884 * tid-parse.c (get_positive_number_trailer): New function.
1885 (parse_thread_id): Use it.
1886 (get_tid_or_range): Use it. Return 0 instead of throwing invalid
1887 thread ID error.
1888 (get_tid_or_range): Detect negative values. Return 0 instead of
1889 throwing invalid thread ID error.
1890
1891 2016-01-14 Yao Qi <yao.qi@linaro.org>
1892
1893 * arm-linux-tdep.c (arm_linux_get_next_pcs_syscall_next_pc):
1894 Declare.
1895 (arm_linux_get_next_pcs_ops): Install
1896 arm_linux_get_next_pcs_syscall_next_pc.
1897 (arm_linux_syscall_next_pc): Change to ...
1898 (arm_linux_get_next_pcs_syscall_next_pc): ... it.
1899 (arm_linux_init_abi): Don't set tdep->syscall_next_pc.
1900 * arm-tdep.c (arm_get_next_pcs_syscall_next_pc): Declare.
1901 (arm_get_next_pcs_syscall_next_pc): Make it static. Don't
1902 call tdep->syscall_next_pc.
1903 * arm-tdep.h (struct gdbarch_tdep) <syscall_next_pc>: Remove.
1904 (arm_get_next_pcs_syscall_next_pc): Remove.
1905
1906 2016-01-14 Yao Qi <yao.qi@linaro.org>
1907
1908 * remote.c (remote_set_syscall_catchpoint): Cast to char *.
1909 * thread.c (do_captured_thread_select): Cast to const char *.
1910
1911 2016-01-14 Yao Qi <yao.qi@linaro.org>
1912
1913 * arch/arm-get-next-pcs.c (arm_get_next_pcs_ctor): Change
1914 argument arm_thumb2_breakpoint to has_thumb2_breakpoint.
1915 (thumb_get_next_pcs_raw): Check has_thumb2_breakpoint
1916 instead.
1917 * arch/arm-get-next-pcs.h (struct arm_get_next_pcs)
1918 <arm_thumb2_breakpoint>: Remove.
1919 <has_thumb2_breakpoint>: New field.
1920 (arm_get_next_pcs_ctor): Update declaration.
1921 * arm-linux-tdep.c (arm_linux_software_single_step): Pass
1922 1 to arm_get_next_pcs_ctor.
1923 * arm-tdep.c (arm_software_single_step): Pass 0 to
1924 arm_get_next_pcs_ctor.
1925
1926 2016-01-13 Ulrich Weigand <uweigand@de.ibm.com>
1927
1928 * MAINTAINERS: Add Andreas Arnez as s390 target maintainer.
1929
1930 2016-01-13 Yao Qi <yao.qi@linaro.org>
1931
1932 * arch/arm-get-next-pcs.c (arm_get_next_pcs_raw): Use
1933 byte_order_for_code to read instruction.
1934
1935 2016-01-13 Pedro Alves <palves@redhat.com>
1936
1937 * NEWS: Mention $_gthread.
1938 * gdbthread.h (struct thread_info) <global_num>: Mention
1939 $_gthread.
1940 * thread.c (thread_num_make_value_helper): New function.
1941 (thread_id_make_value): Delete.
1942 (thread_id_per_inf_num_make_value, global_thread_id_make_value):
1943 New.
1944 (thread_funcs): Adjust.
1945 (gthread_funcs): New.
1946 (_initialize_thread): Register $_gthread variable.
1947
1948 2016-01-13 Pedro Alves <palves@redhat.com>
1949
1950 * NEWS: Mention "info threads -gid".
1951 * gdbthread.h (struct thread_info) <global_num>: Mention "info
1952 threads -gid".
1953 * thread.c (info_threads_command): Handle "-gid".
1954 (_initialize_thread): Adjust "info threads" help string to mention
1955 -gid.
1956
1957 2016-01-13 Pedro Alves <palves@redhat.com>
1958
1959 * NEWS: Mention InferiorThread.global_num.
1960 * python/py-infthread.c (thpy_get_global_num): New function.
1961 (thread_object_getset): Register "global_num".
1962
1963 2016-01-13 Pedro Alves <palves@redhat.com>
1964
1965 * NEWS: Mention that thread IDs are now per inferior and global
1966 thread IDs.
1967 * Makefile.in (SFILES): Add tid-parse.c.
1968 (COMMON_OBS): Add tid-parse.o.
1969 (HFILES_NO_SRCDIR): Add tid-parse.h.
1970 * ada-tasks.c: Adjust to use ptid_to_global_thread_id.
1971 * breakpoint.c (insert_breakpoint_locations)
1972 (remove_threaded_breakpoints, bpstat_check_breakpoint_conditions)
1973 (print_one_breakpoint_location, set_longjmp_breakpoint)
1974 (check_longjmp_breakpoint_for_call_dummy)
1975 (set_momentary_breakpoint): Adjust to use global IDs.
1976 (find_condition_and_thread, watch_command_1): Use parse_thread_id.
1977 (until_break_command, longjmp_bkpt_dtor)
1978 (breakpoint_re_set_thread, insert_single_step_breakpoint): Adjust
1979 to use global IDs.
1980 * dummy-frame.c (pop_dummy_frame_bpt): Adjust to use
1981 ptid_to_global_thread_id.
1982 * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
1983 * gdbthread.h (struct thread_info): Rename field 'num' to
1984 'global_num. Add new fields 'per_inf_num' and 'inf'.
1985 (thread_id_to_pid): Rename thread_id_to_pid to
1986 global_thread_id_to_ptid.
1987 (pid_to_thread_id): Rename to ...
1988 (ptid_to_global_thread_id): ... this.
1989 (valid_thread_id): Rename to ...
1990 (valid_global_thread_id): ... this.
1991 (find_thread_id): Rename to ...
1992 (find_thread_global_id): ... this.
1993 (ALL_THREADS, ALL_THREADS_BY_INFERIOR): Declare.
1994 (print_thread_info): Add comment.
1995 * tid-parse.h: New file.
1996 * tid-parse.c: New file.
1997 * infcmd.c (step_command_fsm_prepare)
1998 (step_command_fsm_should_stop): Adjust to use the global thread
1999 ID.
2000 (until_next_command, until_next_command)
2001 (finish_command_fsm_should_stop): Adjust to use the global thread
2002 ID.
2003 (attach_post_wait): Adjust to check the inferior number too.
2004 * inferior.h (struct inferior) <highest_thread_num>: New field.
2005 * infrun.c (handle_signal_stop)
2006 (insert_exception_resume_breakpoint)
2007 (insert_exception_resume_from_probe): Adjust to use the global
2008 thread ID.
2009 * record-btrace.c (record_btrace_open): Use global thread IDs.
2010 * remote.c (process_initial_stop_replies): Also consider the
2011 inferior number.
2012 * target.c (target_pre_inferior): Clear the inferior's highest
2013 thread num.
2014 * thread.c (clear_thread_inferior_resources): Adjust to use the
2015 global thread ID.
2016 (new_thread): New inferior parameter. Adjust to use it. Set both
2017 the thread's global ID and the thread's per-inferior ID.
2018 (add_thread_silent): Adjust.
2019 (find_thread_global_id): New.
2020 (find_thread_id): Make static. Adjust to rename.
2021 (valid_thread_id): Rename to ...
2022 (valid_global_thread_id): ... this.
2023 (pid_to_thread_id): Rename to ...
2024 (ptid_to_global_thread_id): ... this.
2025 (thread_id_to_pid): Rename to ...
2026 (global_thread_id_to_ptid): ... this. Adjust.
2027 (first_thread_of_process): Adjust.
2028 (do_captured_list_thread_ids): Adjust to use global thread IDs.
2029 (should_print_thread): New function.
2030 (print_thread_info): Rename to ...
2031 (print_thread_info_1): ... this, and add new show_global_ids
2032 parameter. Handle it. Iterate over inferiors.
2033 (print_thread_info): Reimplement as wrapper around
2034 print_thread_info_1.
2035 (show_inferior_qualified_tids): New function.
2036 (print_thread_id): Use it.
2037 (tp_array_compar): Compare inferior numbers too.
2038 (thread_apply_command): Use tid_range_parser.
2039 (do_captured_thread_select): Use parse_thread_id.
2040 (thread_id_make_value): Adjust.
2041 (_initialize_thread): Adjust "info threads" help string.
2042 * varobj.c (struct varobj_root): Update comment.
2043 (varobj_create): Adjust to use global thread IDs.
2044 (value_of_root_1): Adjust to use global_thread_id_to_ptid.
2045 * windows-tdep.c (display_tib): No longer accept an argument.
2046 * cli/cli-utils.c (get_number_trailer): Make extern.
2047 * cli/cli-utils.h (get_number_trailer): Declare.
2048 (get_number_const): Adjust documentation.
2049 * mi/mi-cmd-var.c (mi_cmd_var_update_iter): Adjust to use global
2050 thread IDs.
2051 * mi/mi-interp.c (mi_new_thread, mi_thread_exit)
2052 (mi_on_normal_stop, mi_output_running_pid, mi_on_resume):
2053 * mi/mi-main.c (mi_execute_command, mi_cmd_execute): Likewise.
2054 * guile/scm-breakpoint.c (gdbscm_set_breakpoint_thread_x):
2055 Likewise.
2056 * python/py-breakpoint.c (bppy_set_thread): Likewise.
2057 * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
2058 * python/py-infthread.c (thpy_get_num): Add comment and return the
2059 per-inferior thread ID.
2060 (thread_object_getset): Update comment of "num".
2061
2062 2016-01-13 Pedro Alves <palves@redhat.com>
2063
2064 * breakpoint.c (remove_threaded_breakpoints)
2065 (print_one_breakpoint_location): Use print_thread_id.
2066 * btrace.c (btrace_enable, btrace_disable, btrace_teardown)
2067 (btrace_fetch, btrace_clear): Use print_thread_id.
2068 * common/print-utils.c (CELLSIZE): Delete.
2069 (get_cell): Rename to ...
2070 (get_print_cell): ... this and made extern. Adjust call callers.
2071 Adjust to use PRINT_CELL_SIZE.
2072 * common/print-utils.h (get_print_cell): Declare.
2073 (PRINT_CELL_SIZE): New.
2074 * gdbthread.h (print_thread_id): Declare.
2075 * infcmd.c (signal_command): Use print_thread_id.
2076 * inferior.c (print_inferior): Use print_thread_id.
2077 * infrun.c (handle_signal_stop)
2078 (insert_exception_resume_breakpoint)
2079 (insert_exception_resume_from_probe)
2080 (print_signal_received_reason): Use print_thread_id.
2081 * record-btrace.c (record_btrace_info)
2082 (record_btrace_resume_thread, record_btrace_cancel_resume)
2083 (record_btrace_step_thread, record_btrace_wait): Use
2084 print_thread_id.
2085 * thread.c (thread_apply_all_command): Use print_thread_id.
2086 (print_thread_id): New function.
2087 (thread_apply_command): Use print_thread_id.
2088 (thread_command, thread_find_command, do_captured_thread_select):
2089 Use print_thread_id.
2090
2091 2016-01-13 Pedro Alves <palves@redhat.com>
2092
2093 * NEWS: Mention InferiorThread.inferior.
2094 * python/py-infthread.c (thpy_get_inferior): New.
2095 (thread_object_getset): Register "inferior".
2096
2097 2016-01-13 Pedro Alves <palves@redhat.com>
2098
2099 * NEWS: Mention $_inferior.
2100 * inferior.c (inferior_id_make_value): New.
2101 (inferior_funcs): New.
2102 (_initialize_inferior): Create $_inferior variable.
2103
2104 2016-01-13 Pedro Alves <palves@redhat.com>
2105
2106 PR breakpoints/19388
2107 * frame.c (get_current_frame): Use validate_registers_access.
2108 * gdbthread.h (validate_registers_access): Declare.
2109 * infrun.c (validate_siginfo_access): Delete.
2110 (siginfo_value_read, siginfo_value_write): Use
2111 validate_registers_access.
2112 * thread.c (validate_registers_access): New function.
2113
2114 2016-01-12 Josh Stone <jistone@redhat.com>
2115 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2116
2117 * NEWS (Changes since GDB 7.10): Mention QCatchSyscalls and the
2118 syscall_entry and syscall_return stop reasons. Mention GDB
2119 support for remote catch syscall.
2120 * remote.c (PACKET_QCatchSyscalls): New enum.
2121 (remote_set_syscall_catchpoint): New function.
2122 (remote_protocol_features): New element for QCatchSyscalls.
2123 (remote_parse_stop_reply): Parse syscall_entry/return stops.
2124 (init_remote_ops): Install remote_set_syscall_catchpoint.
2125 (_initialize_remote): Config QCatchSyscalls.
2126 * linux-nat.h (struct lwp_info) <syscall_state>: Comment typo.
2127
2128 2016-01-12 Yao Qi <yao.qi@linaro.org>
2129
2130 * nat/linux-ptrace.c (linux_child_function): Cast child_stack
2131 to gdb_byte * and pass to linux_fork_to_function.
2132
2133 2016-01-12 Yao Qi <yao.qi@linaro.org>
2134
2135 * nat/linux-ptrace.c (linux_fork_to_function): Change type
2136 of argument 'function'.
2137 (linux_grandchild_function): Change return type to 'int'.
2138 Change child_stack's type to 'void *'.
2139 (linux_child_function): Likewise.
2140
2141 2016-01-12 Pedro Alves <palves@redhat.com>
2142
2143 Remove use of the registered trademark symbol throughout.
2144
2145 2016-01-12 Thomas Schwinge <thomas@codesourcery.com>
2146
2147 * reply_mig_hack.awk: Rewrite one regular expression.
2148
2149 2016-01-11 Mike Frysinger <vapier@gentoo.org>
2150
2151 * acinclude.m4: Include new warning.m4 file.
2152 * configure: Regenerated.
2153 * configure.ac: Move all warning logic ...
2154 * warning.m4: ... here.
2155
2156 2016-01-08 Yao Qi <yao.qi@linaro.org>
2157
2158 * extension.c: Include target.h.
2159 (set_active_ext_lang): Only call install_gdb_sigint_handler,
2160 check_quit_flag, and set_quit_flag if target_terminal_is_ours
2161 returns false.
2162 (restore_active_ext_lang): Likewise.
2163 * target.c (target_terminal_is_ours): New function.
2164 * target.h (target_terminal_is_ours): Declare.
2165
2166 2016-01-07 Maciej W. Rozycki <macro@imgtec.com>
2167
2168 * mips-tdep.c (mips_breakpoint_from_pc): Rename local `status'
2169 to `err' in the little-endian leg.
2170
2171 2016-01-06 Yao Qi <yao.qi@linaro.org>
2172
2173 * arch/arm-get-next-pcs.c (arm_get_next_pcs): Move it to some
2174 lines below.
2175 (thumb_get_next_pcs_raw): Make it static.
2176 (arm_get_next_pcs_raw): Likewise.
2177 * arch/arm-get-next-pcs.h (thumb_get_next_pcs_raw): Remove the
2178 declaration.
2179 (arm_get_next_pcs_raw): Likewise.
2180
2181 2016-01-05 Mike Frysinger <vapier@gentoo.org>
2182
2183 * version.in: Change cvs to git.
2184
2185 2016-01-05 Mike Frysinger <vapier@gentoo.org>
2186
2187 * configure.tgt (score-*-*): Delete gdb_sim assignment.
2188
2189 2016-01-05 Pedro Alves <palves@redhat.com>
2190
2191 PR sim/13418
2192 * configure.ac: Define WITH_PPC_SIM when linking in the sim and
2193 the target is powerpc*.
2194 * rs6000-tdep.c (init_sim_regno_table): Check WITH_PPC_SIM instead
2195 of WITH_SIM.
2196 * configure: Regenerate.
2197 * config.in: Regenerate.
2198
2199 2016-01-04 Markus Metzger <markus.t.metzger@intel.com>
2200
2201 * btrace.c (btrace_pt_readmem_callback): Do not return in TRY/CATCH.
2202
2203 2016-01-02 Mike Frysinger <vapier@gentoo.org>
2204
2205 * configure.tgt (powerpc*-*-*): Delete test call and
2206 always assign gdb_sim.
2207
2208 2016-01-01 Joel Brobecker <brobecker@adacore.com>
2209
2210 Update year range in copyright notice of all files.
2211
2212 2016-01-01 Joel Brobecker <brobecker@adacore.com>
2213
2214 * top.c (print_gdb_version): Change copyright year in version
2215 message.
2216
2217 2016-01-01 Joel Brobecker <brobecker@adacore.com>
2218
2219 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2015.
2220
2221 For older changes see ChangeLog-2015.
2222 \f
2223 Local Variables:
2224 mode: change-log
2225 left-margin: 8
2226 fill-column: 74
2227 version-control: never
2228 coding: utf-8
2229 End:
This page took 0.075436 seconds and 5 git commands to generate.