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