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