Introduce interruptible_select
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
f0881b37
PA
12016-04-12 Pedro Alves <palves@redhat.com>
2
3 * defs.h: Extend QUIT-related comments to mention
4 interruptible_select.
5 (quit_serial_event_set, quit_serial_event_clear): Declare.
6 * event-top.c: Include "ser-event.h" and "gdb_select.h".
7 (quit_serial_event): New global.
8 (async_init_signals): Make quit_serial_event.
9 (quit_serial_event_set, quit_serial_event_clear)
10 (quit_serial_event_fd, interruptible_select): New functions.
11 * extension.c (set_quit_flag): Set the quit serial event.
12 (check_quit_flag): Clear the quit serial event.
13 * gdb_select.h (interruptible_select): New declaration.
14 * guile/scm-ports.c (ioscm_input_waiting): Use
15 interruptible_select instead of gdb_select.
16 * top.c (gdb_readline_no_editing): Likewise.
17 * ui-file.c (stdio_file_read): Likewise.
18
5cc3ce8b
PA
192016-04-12 Pedro Alves <palves@redhat.com>
20
21 * event-loop.c: Include "ser-event.h".
22 (async_signal_handlers_serial_event): New global.
23 (async_signals_handler, initialize_async_signal_handlers): New
24 functions.
25 (mark_async_signal_handler): Set
26 async_signal_handlers_serial_event.
27 (invoke_async_signal_handlers): Clear
28 async_signal_handlers_serial_event.
29 * event-top.c (async_init_signals): Call
30 initialize_async_signal_handlers.
31
00340e1b
PA
322016-04-12 Pedro Alves <palves@redhat.com>
33
34 * Makefile.in (SFILES): Add ser-event.c.
35 (HFILES_NO_SRCDIR): Add ser-event.h.
36 (COMMON_OBS): Add ser-event.o.
37 * ser-event.c, ser-event.h: New files.
38 * serial.c (new_serial): New function, factored out from
39 (serial_fdopen_ops): ... this.
40 (serial_open_ops_1): New function, factored out from
41 (serial_open): ... this.
42 (serial_open_ops): New function.
43 * serial.h (struct serial): Forware declare.
44 (serial_open_ops): New declaration.
45
5f5219fc
PA
462016-04-12 Pedro Alves <palves@redhat.com>
47
48 * serial.c (serial_open, serial_fdopen_ops, do_serial_close):
49 Remove references to name.
50 * serial.h (struct serial) <name>: Delete.
51
acd5494d
PA
522016-04-12 Pedro Alves <palves@redhat.com>
53
54 * remote-fileio.c (sigint_fileio_token, remote_fio_no_longjmp):
55 Delete.
56 (async_remote_fileio_interrupt): Delete.
57 (remote_fileio_ctrl_c_signal_handler): Don't call the async signal
58 handler. Instead just always set the ctrl_c flag.
59 (remote_fileio_reply): Clear remote_fio_ctrl_c_flag before
60 re-enabling the SIGINT handler.
61 (remote_fileio_func_open, remote_fileio_func_close)
62 (remote_fileio_func_read, remote_fileio_func_write)
63 (remote_fileio_func_lseek, remote_fileio_func_rename)
64 (remote_fileio_func_unlink, remote_fileio_func_stat)
65 (remote_fileio_func_fstat, remote_fileio_func_gettimeofday)
66 (remote_fileio_func_isatty, remote_fileio_func_system)
67 (remote_fileio_request): Remove references to
68 remote_fio_no_longjmp.
69 (initialize_remote_fileio): Don't create an async signal handler.
70
d2acc30b
PA
712016-04-12 Pedro Alves <palves@redhat.com>
72
73 * event-top.c (stdin_event_handler): Call QUIT;
74 (prompt_for_continue): Don't run with immediate_quit set.
75
ab33ab13
PA
762016-04-12 Pedro Alves <palves@redhat.com>
77
78 * tui/tui-io.c (tui_redisplay_readline): Check
79 gdb_in_secondary_prompt_p instead of immediate_quit.
80 * tui/tui.c: Include top.h.
81 (tui_rl_startup_hook): Check gdb_in_secondary_prompt_p instead of
82 immediate_quit.
83
faa4ebe1
PA
842016-04-12 Pedro Alves <palves@redhat.com>
85
86 * top.c (read_command_file): Inline command_loop here.
87 (command_loop): Delete.
88
3212b858
PA
892016-04-12 Pedro Alves <palves@redhat.com>
90
91 * top.c: Include "gdb_select.h".
92 (gdb_readline_no_editing): Wait for input with gdb_select instead
93 of blocking in fgetc.
94 (command_line_input): Don't set immediate_quit.
95
4bf7b526
MG
962016-04-08 Martin Galvan <martin.galvan@tallertechnologies.com>
97
98 * value.c (value_next): Make pass-by-reference parameters const-correct.
99 (value_parent): Likewise.
100 (value_enclosing_type): Likewise.
101 (value_lazy): Likewise.
102 (value_stack): Likewise.
103 (value_embedded_offset): Likewise.
104 (value_pointed_to_offset): Likewise.
105 (value_raw_address): Likewise.
106 (deprecated_value_modifiable): Likewise.
107 (value_free_to_mark): Likewise.
108 (value_release_to_mark): Likewise.
109 (internalvar_name): Likewise.
110 (readjust_indirect_value_type): Likewise.
111 (value_initialized): Likewise.
112 * value.h (value_next): Likewise.
113 (value_parent): Likewise.
114 (value_enclosing_type): Likewise.
115 (value_lazy): Likewise.
116 (value_stack): Likewise.
117 (value_embedded_offset): Likewise.
118 (value_pointed_to_offset): Likewise.
119 (value_raw_address): Likewise.
120 (deprecated_value_modifiable): Likewise.
121 (value_free_to_mark): Likewise.
122 (value_release_to_mark): Likewise.
123 (internalvar_name): Likewise.
124 (readjust_indirect_value_type): Likewise.
125 (value_initialized): Likewise.
126
e390720b
YQ
1272016-04-07 Yao Qi <yao.qi@linaro.org>
128
129 * record-full.c (record_full_insert_breakpoint): Return
130 early if entry on the address is found in
131 record_full_breakpoints.
132
1ccd06e4
YQ
1332016-04-07 Yao Qi <yao.qi@linaro.org>
134
135 * record-full.c (record_full_insert_breakpoint): Set
136 bp_tgt->reqstd_address and bp_tgt->placed_size.
137
ecf2e90c
DB
1382016-04-06 Don Breazeal <donb@codesourcery.com>
139
140 * value.c (value_actual_type): Don't try to get rtti type
141 of the value if it has been optimized out.
142 (value_optimized_out): If a memory access error occurs,
143 just check vaue->optimized_out.
144
14731617
JK
1452016-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
146
147 Revert the previous commit adding unknown_v_replies_ok.
148
319cb5d0
JK
1492016-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
150
151 * remote.c (struct remote_state): New field unknown_v_replies_ok.
152 (packet_config_support): Read it.
153 (remote_start_remote): Set it.
154
052d2eb2
JK
1552016-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
156
157 * remote.c: Revert check-in by a mistake in the previous commit.
158
fef3cb9f
JK
1592016-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
160 Pedro Alves <palves@redhat.com>
161
162 * exec.c (exec_file_locate_attach): Print warning for unsupported
163 target_pid_to_exec_file.
164 * symfile-mem.c (add_vsyscall_page): Remove the "file" command
165 message part.
166
2aa08bd1
SM
1672016-04-04 Simon Marchi <simon.marchi@ericsson.com>
168
169 * cli/cli-decode.c (help_cmd_list): Fix function doc and remove
170 trailing spaces.
171
cc63428a
AV
1722016-04-01 Artemiy Volkov <artemiyv@acm.org>
173
174 PR gdb/19820
175 * eval.c (evaluate_subexp_standard): Allow TYPE_CODE_ENUM to be
176 the type of BINOP_REPEAT's second operand.
177
9bb84c9f
YY
1782016-03-31 Yichao Yu <yyc1992@gmail.com>
179
180 PR gdb/19858
181 * jit.c (jit_breakpoint_re_set_internal): Return 0 if we already
182 got the breakpoint at the right address.
183 (jit_inferior_created): New function.
184 (_initialize_jit): Install jit_inferior_created as
185 inferior_created observer.
186
22084c42
MK
1872016-03-31 Marcin Kościelnicki <koriakin@0x04.net>
188
189 * NEWS: Mention support for tracepoints on powerpc*-linux.
190
e7ea3ec7
CU
1912016-03-31 Catalin Udma <catalin.udma@freescale.com>
192
193 PR python/19743
194 * python/python.c (execute_gdb_command): Use console uiout
195 when executing gdb command.
196 * utils.c (restore_ui_out_closure): New structure.
197 (do_restore_ui_out): New function.
198 (make_cleanup_restore_ui_out): Likewise.
199 * utils.h (make_cleanup_restore_ui_out): Declare.
200
f7c38292
PA
2012016-03-31 Pedro Alves <palves@redhat.com>
202
203 * NEWS: Mention that support for "target m32rsdi", "target mips",
204 "target pmon", "target ddb", "target rockhopper", and "target lsi"
205 was removed.
206 * Makefile.in (ALL_TARGET_OBS): Remove remote-m32r-sdi.o and
207 remote-mips.o.
208 (ALLDEPFILES): Remove remote-m32r-sdi.c and remote-mips.c.
209 * configure.tgt: Remove all references to remote-m32r-sdi.o and
210 remote-mips.o.
211 * mips-tdep.c (deprecated_mips_set_processor_regs_hack): Delete
212 function.
213 * mips-tdep.h (deprecated_mips_set_processor_regs_hack): Delete
214 declaration.
215 * remote-m32r-sdi.c, remote-mips.c: Delete files.
216 * symfile.c (generic_load, generic_load): Remove comments.
217
fb3f3d25
YQ
2182016-03-30 Yao Qi <yao.qi@linaro.org>
219
220 * arm-tdep.c (arm_epilogue_frame_this_id): Check 'func' against
221 0 rather than NULL.
222
779aa56f
YQ
2232016-03-30 Yao Qi <yao.qi@linaro.org>
224
225 * arm-tdep.c: (arm_make_epilogue_frame_cache): New function.
226 (arm_epilogue_frame_this_id): New function.
227 (arm_epilogue_frame_prev_register): New function.
228 (arm_epilogue_frame_sniffer): New function.
229 (arm_epilogue_frame_unwind): New.
230 (arm_gdbarch_init): Append unwinder arm_epilogue_frame_unwind.
231
c58b006a
YQ
2322016-03-30 Yao Qi <yao.qi@linaro.org>
233
234 * arm-tdep.c (arm_stack_frame_destroyed_p): Rename it ...
235 (arm_stack_frame_destroyed_p_1): ... here. Don't call
236 arm_pc_is_thumb.
237 (arm_stack_frame_destroyed_p): Call
238 thumb_stack_frame_destroyed_p and
239 arm_stack_frame_destroyed_p_1.
240
4ae6cc19
DE
2412016-03-30 Doug Evans <dje@google.com>
242
243 * python/py-utils.c (host_string_to_python_string): New function.
244 * python/python-internal.h (host_string_to_python_string): Declare it.
245 * python/py-*.c (*): Update all calls to
246 PyString_Decode (str, strlen (str), host_charset (), NULL);
247 to use host_string_to_python_string instead.
248
28170b88
MK
2492016-03-30 Marcin Kościelnicki <koriakin@0x04.net>
250
251 * remote.c (remote_check_symbols): Allocate own buffer for reply.
252
a08b52b5
MF
2532016-03-29 Max Filippov <jcmvbkbc@gmail.com>
254
255 * xtensa-tdep.c (xtensa_frame_cache): Change op1 type to LONGEST.
256 Use safe_read_memory_integer instead of read_memory_integer.
257
c37c0ba6
MK
2582016-03-29 Marcin Kościelnicki <koriakin@0x04.net>
259
260 * NEWS: Mention support for tracepoints on s390*-linux.
261
444bca65
DB
2622016-03-29 Don Breazeal <donb@codesourcery.com>
263
264 * gdb/value.c (value_actual_type): Fix formatting issue.
265
cc651c1c
YQ
2662016-03-23 Yao Qi <yao.qi@linaro.org>
267
268 * gdbarch.sh (software_single_step): Remove comments.
269 * gdbarch.h: Regenerated.
270
c55978a6
YQ
2712016-03-21 Yao Qi <yao.qi@linaro.org>
272
273 * arm-tdep.c (arm_record_media): New.
274 (arm_record_ld_st_reg_offset): Call arm_record_media.
275
479fe002
YQ
2762016-03-21 Yao Qi <yao.qi@linaro.org>
277
278 * arm-linux-tdep.c (arm_canonicalize_syscall): Canonicalize
279 more syscalls.
280
9c3f2234
YQ
2812016-03-18 Yao Qi <yao.qi@linaro.org>
282
283 * sparc-tdep.c (sparc_software_single_step): Make it static.
284 * sparc-tdep.h (sparc_software_single_step): Remove declaration.
285
941319d1
YQ
2862016-03-18 Yao Qi <yao.qi@linaro.org>
287
288 * spu-tdep.c (spu_software_single_step): Throw error when
289 target_read_memory fails.
290
708bf0a1
JK
2912016-03-17 Jan Kratochvil <jan.kratochvil@redhat.com>
292
293 * linux-thread-db.c (check_pid_namespace_match): Extend the message.
294
0d5b594f
PA
2952016-03-17 Pedro Alves <palves@redhat.com>
296 Don Breazeal <donb@codesourcery.com>
297
298 PR remote/19496
299 * infcmd.c (notice_new_inferior): Use the 'leave_running' argument
300 instead of checking the 'non_stop' global.
301 * remote.c (remote_add_thread): New parameter 'executing'. Use it
302 to set the new thread's executing state.
303 (remote_notice_new_inferior): Rename parameter 'running' to
304 'executing'. Always set the thread state to THREAD_RUNNING in
305 non-stop mode, and to THREAD_STOPPED in all-stop mode. Pass
306 EXECUTING to remote_add_thread and notice_new_inferior.
307 (remote_update_thread_list): Update to pass executing state, not
308 running state.
309
bba960fc
AA
3102016-03-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
311
312 * syscalls/s390-linux.xml: Add NUMA syscalls and new syscalls up
313 to 374.
314 * syscalls/s390x-linux.xml: Likewise.
315
5fd0888a
AA
3162016-03-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
317
318 * linux-record.c (record_mem_at_reg): New helper function.
319 (record_linux_system_call): Exploit new helper function where
320 applicable.
321
0fc8f115
AA
3222016-03-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
323
324 * linux-record.c: Fix whitespace issues; tabify, remove trailing
325 spaces.
326
afdab916
AA
3272016-03-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
328
329 * linux-record.c (record_linux_system_call): Add missing return
330 statements to handling of pipe and pipe2 syscalls.
331
bfeeb14b
DE
3322016-03-16 Doug Evans <dje@google.com>
333
334 * xml-tdesc.c (tdesc_start_enum): Fix c++ build.
335
6b94a855
YQ
3362016-03-16 Yao Qi <yao.qi@linaro.org>
337
338 * arm-linux-tdep.c (arm_linux_init_abi): Fix
339 arm_linux_record_tdep.arg1, arm_linux_record_tdep.arg2 and
340 arm_linux_record_tdep.arg3. Set arm_linux_record_tdep.arg4,
341 arm_linux_record_tdep.arg5, arm_linux_record_tdep.arg6, and
342 arm_linux_record_tdep.arg7.
343
1cafadb4
DB
3442016-03-15 Keith Seitz <keiths@redhat.com>
345
346 PR breakpoints/18303
347 * cp-namespace.c (cp_lookup_bare_symbol): Change assertion to
348 look for "::" instead of simply ":".
349 (cp_search_static_and_baseclasses): Return null_block_symbol for
350 malformed input.
351 Remove assertions.
352 * cp-support.c (cp_find_first_component_aux): Do not return
353 a prefix length for ':' unless the next character is also ':'.
354
89c200ed
DE
3552016-03-15 Doug Evans <dje@google.com>
356
357 * features/aarch64-core.xml (cpsr_flags): New flags type.
358 (cpsr): Use it.
359 * features/aarch64.c: Regenerate.
360
49b7ae7b
DE
3612016-03-15 Doug Evans <dje@google.com>
362
363 * features/i386/32bit-core.xml (i386_eflags): Remove "end" spec.
364 * features/i386/32bit-sse.xml (i386_eflags): Ditto.
365 * features/i386/64bit-core.xml (i386_eflags): Ditto.
366 * features/i386/64bit-sse.xml (i386_eflags): Ditto.
367 * features/i386/x32-core.xml (i386_eflags): Ditto.
368
81516450 3692016-03-15 Doug Evans <dje@google.com>
79427bd2 370 Wei-cheng Wang <cole945@gmail.com>
81516450
DE
371
372 Extend flags to support multibit and enum bitfields.
79427bd2 373 * NEWS: Document new features.
81516450
DE
374 * c-typeprint.c (c_type_print_varspec_prefix): Handle TYPE_CODE_FLAGS.
375 (c_type_print_varspec_suffix, c_type_print_base): Ditto.
376 * gdbtypes.c (arch_flags_type): Don't assume all fields are one bit.
377 (append_flags_type_field): New function.
378 (append_flags_type_flag): Call it.
379 * gdbtypes.h (append_flags_type_field): Declare.
380 * target-descriptions.c (struct tdesc_type_flag): Delete.
381 (enum tdesc_type_kind) <TDESC_TYPE_BOOL>: New enum value.
382 (enum tdesc_type_kind) <TDESC_TYPE_ENUM>: Ditto.
383 (struct tdesc_type) <u.f>: Delete.
384 (tdesc_predefined_types): Add "bool".
385 (tdesc_predefined_type): New function.
386 (tdesc_gdb_type): Handle TDESC_TYPE_BOOL, TDESC_TYPE_ENUM.
387 Update TDESC_TYPE_FLAGS support.
388 (tdesc_free_type): Handle TDESC_TYPE_ENUM. Update TDESC_TYPE_FLAGS.
389 (tdesc_create_flags): Update.
390 (tdesc_create_enum): New function.
391 (tdesc_add_field): Initialize start,end to -1.
392 (tdesc_add_typed_bitfield): New function.
393 (tdesc_add_bitfield): Call it.
394 (tdesc_add_flag): Allow TDESC_TYPE_STRUCT. Update.
395 (tdesc_add_enum_value): New function.
396 (maint_print_c_tdesc_cmd): Fold TDESC_TYPE_FLAGS support into
397 TDESC_TYPE_STRUCT. Handle TDESC_TYPE_ENUM.
398 * target-descriptions.h (tdesc_create_enum): Declare.
399 (tdesc_add_typed_bitfield, tdesc_add_enum_value): Declare.
400 * valprint.c (generic_val_print_enum_1): New function.
401 (generic_val_print_enum): Call it.
402 (val_print_type_code_flags): Make static. Handle multibit bitfields
403 and enum bitfields.
404 * valprint.h (val_print_type_code_flags): Delete.
405 * xml-tdesc.c (struct tdesc_parsing_data) <current_type_is_flags>:
406 Delete. All uses removed.
407 (tdesc_start_enum): New function.
408 (tdesc_start_field): Handle multibit and enum bitfields.
409 (tdesc_start_enum_value): New function.
410 (enum_value_attributes, enum_children, enum_attributes): New static
411 globals.
412 (feature_children): Add "enum".
413 * features/gdb-target.dtd (enum, evalue): New elements.
414
54157a25
DE
4152016-03-15 Doug Evans <dje@google.com>
416
417 * target-descriptions.c (struct tdesc_type) <u.u.size>: Change type
418 from LONGEST to int.
419 (struct tdesc_type) <u.f.size>: Ditto.
420 (tdesc_set_struct_size): Change type of "size" arg from LONGEST
421 to int. Add assertion size > 0.
422 (tdesc_create_flags): Ditto.
423 * target-descriptions.h (tdesc_set_struct_size): Update.
424 (tdesc_create_flags): Update.
425 * xml-tdesc.c (MAX_FIELD_SIZE, MAX_FIELD_BITSIZE): New macros.
426 (MAX_VECTOR_SIZE): New macro.
427 (tdesc_start_struct): Catch conversion errors from LONGEST to int.
428 (tdesc_start_flags, tdesc_start_field, tdesc_start_vector): Ditto.
429
73b4f516
DE
4302016-03-15 Doug Evans <dje@google.com>
431
432 * target-descriptions.c (maint_print_c_tdesc_cmd): Use "type" for
433 TYPE_CODE_FLAGS instead of "field_type", for consistency.
434 * features/i386/amd64-avx-linux.c: Regenerate.
435 * features/i386/amd64-avx.c: Regenerate.
436 * features/i386/amd64-avx512-linux.c: Regenerate.
437 * features/i386/amd64-avx512.c: Regenerate.
438 * features/i386/amd64-linux.c: Regenerate.
439 * features/i386/amd64-mpx-linux.c: Regenerate.
440 * features/i386/amd64-mpx.c: Regenerate.
441 * features/i386/amd64.c: Regenerate.
442 * features/i386/i386-avx-linux.c: Regenerate.
443 * features/i386/i386-avx.c: Regenerate.
444 * features/i386/i386-avx512-linux.c: Regenerate.
445 * features/i386/i386-avx512.c: Regenerate.
446 * features/i386/i386-linux.c: Regenerate.
447 * features/i386/i386-mmx-linux.c: Regenerate.
448 * features/i386/i386-mmx.c: Regenerate.
449 * features/i386/i386-mpx-linux.c: Regenerate.
450 * features/i386/i386-mpx.c: Regenerate.
451 * features/i386/i386.c: Regenerate.
452 * features/i386/x32-avx-linux.c: Regenerate.
453 * features/i386/x32-avx.c: Regenerate.
454 * features/i386/x32-avx512-linux.c: Regenerate.
455 * features/i386/x32-avx512.c: Regenerate.
456 * features/i386/x32-linux.c: Regenerate.
457 * features/i386/x32.c: Regenerate.
458
1eb2dbb8
PA
4592016-03-15 Pedro Alves <palves@redhat.com>
460
461 PR gdb/19676
462 * linux-thread-db.c (try_thread_db_load_1): Leave
463 info->td_ta_thr_iter_p NULL iff debugging a live process and we
464 have /proc access.
465 (find_new_threads_once): Assert that we have a non-NULL
466 info->td_ta_thr_iter_p instead of checking whether the target has
467 execution.
468
16b41842
PA
4692016-03-15 Pedro Alves <palves@redhat.com>
470
471 PR gdb/19676
472 * infrun.c (displaced_step_prepare): Also disable displaced
473 stepping on NOT_SUPPORTED_ERROR.
474 * linux-tdep.c (linux_displaced_step_location): If reading auxv
475 fails, throw NOT_SUPPORTED_ERROR instead of generic error.
476
70104a90
MK
4772016-03-13 Marcin Kościelnicki <koriakin@0x04.net>
478
479 * s390-linux-tdep.c (s390_gen_return_address): New function.
480 (s390_gdbarch_init): Fill gen_return_address hook.
481
f2403c39
AB
4822016-03-11 Andrew Burgess <andrew.burgess@embecosm.com>
483
484 * symmisc.c (maintenance_info_line_tables): New function.
485 (maintenance_print_one_line_table): New function.
486 (_initialize_symmisc): Register 'maint info line-table' command.
487 * NEWS: Mention new command.
488
c4b3e547
MK
4892016-03-11 Marcin Kościelnicki <koriakin@0x04.net>
490
491 * s390-linux-tdep.c (s390_ax_pseudo_register_collect): New function.
492 (s390_ax_pseudo_register_push_stack): New function.
493 (s390_gdbarch_init): Fill ax_pseudo_register_collect and
494 ax_pseudo_register_push_stack hooks.
495
f2f3ccb9
SM
4962016-03-10 Simon Marchi <simon.marchi@polymtl.ca>
497
498 * data-directory/Makefile.in (PYTHON_FILE_LIST): Install
499 gdb/function/as_string.py.
500 * python/lib/gdb/function/as_string.py: New file.
501 * NEWS: Mention the new $_as_string function.
502
2343b78a
JM
5032016-03-09 Jose E. Marchesi <jose.marchesi@oracle.com>
504
505 * target.h: Fix doc string of target_can_use_hardware_watchpoint.
506
b69d38af
PA
5072016-03-09 Pedro Alves <palves@redhat.com>
508
509 * event-top.c (more_to_come): Delete.
510 (struct readline_input_state): Delete.
511 (readline_input_state): Delete.
512 (get_command_line_buffer): New function.
513 (command_handler): Update comments. Don't handle NULL commands
514 here. Do not execute commented lines.
515 (command_line_append_input_line): New function.
516 (handle_line_of_input): New function, partly based on
517 command_line_handler and command_line_input.
518 (command_line_handler): Rewrite.
519 * event-top.h (command_handler): New declaration.
520 (command_loop): Defer command execution to command_handler.
521 (command_line_input): Update comments. Simplify, using struct
522 buffer and handle_line_of_input.
523 * top.h (struct buffer): New forward declaration.
524 (handle_line_of_input): New declaration.
525
2669cade
PA
5262016-03-09 Pedro Alves <palves@redhat.com>
527
528 * event-top.c (command_line_handler): Use xfree + xstrdup instead
529 of xrealloc + strcpy.
530 * main.c (captured_main): Use xstrdup instead of xmalloc plus
531 manual clear.
532 * top.c (saved_command_line): Rewrite comment.
533 (saved_command_line_size): Delete.
534 (command_line_input): Use xfree + xstrdup instead of xrealloc +
535 strcpy.
536 * top.h (saved_command_line_size): Delete declaration.
537
187212b3
PA
5382016-03-09 Pedro Alves <palves@redhat.com>
539
540 * event-top.c: Include buffer.h.
541 (gdb_readline_no_editing_callback): Use struct buffer instead
542 of xrealloc.
543
7a3bde34
PA
5442016-03-09 Pedro Alves <palves@redhat.com>
545
546 * common/buffer.h (buffer_grow_char): New function.
547 * top.c: Include buffer.h.
548 (gdb_readline_no_editing): Rename 'prompt_arg' parameter to
549 'prompt'. Use struct buffer instead of xrealloc.
550
c5c136ea
PA
5512016-03-09 Pedro Alves <palves@redhat.com>
552
553 * defs.h (gdb_readline): Delete declaration.
554 * top.c (gdb_readline): Rename to ...
555 (gdb_readline_no_editing): ... this, and make static.
556
720d2e96
PA
5572016-03-09 Pedro Alves <palves@redhat.com>
558
559 * utils.c (prompt_for_continue): Update comments.
560
608ff013
PA
5612016-03-09 Pedro Alves <palves@redhat.com>
562
563 * event-top.c (async_annotation_suffix): Delete.
564 (top_level_prompt, command_line_handler): Don't use
565 'async_annotation_suffix' and simplify.
566 * event-top.h (async_annotation_suffix): Delete declaration.
567 (init_main): Remove reference to 'async_annotation_suffix'.
568
c70061cf
PA
5692016-03-09 Pedro Alves <palves@redhat.com>
570
571 * event-top.c (gdb_readline2): Rename to ...
572 (gdb_readline_no_editing_callback): ... this.
573 (change_line_handler, stdin_event_handler)
574 (gdb_setup_readline): Adjust.
575 * event-top.h (gdb_readline2): Rename to ...
576 (gdb_readline_no_editing_callback): ... this, and move closer to
577 other readline-related declarations.
578 * mi/mi-interp.c (mi_interpreter_resume): Adjust.
579
8a243832
PA
5802016-03-09 Pedro Alves <palves@redhat.com>
581
582 * top.c (window_hook): Delete.
583 (command_loop): Remove references to window_hook.
584
cc2c4da8
MK
5852016-03-09 Marcin Kościelnicki <koriakin@0x04.net>
586
587 * corefile.c (safe_read_memory_unsigned_integer): New function.
588 * gdbcore.h (safe_read_memory_unsigned_integer): New prototype.
589 * rs6000-tdep.c (rs6000_frame_cache): Read backchain as unsigned.
590
a67914de
MK
5912016-03-09 Marcin Kościelnicki <koriakin@0x04.net>
592
593 * rs6000-tdep.c: Add "ax.h" and "ax-gdb.h" includes.
594 (rs6000_gen_return_address): New function.
595 (rs6000_gdbarch_init): Wire in the above.
596
2a2fa07b
MK
5972016-03-09 Marcin Kościelnicki <koriakin@0x04.net>
598
599 * rs6000-tdep.c (rs6000_ax_pseudo_register_collect): New function.
600 (rs6000_gdbarch_init): Wire in the above.
601
bc0e3f49
AA
6022016-03-09 Andreas Arnez <arnez@linux.vnet.ibm.com>
603
604 * s390-linux-tdep.c (s390_analyze_prologue): Ignore BRC and BRCL
605 instructions that do nothing or are conditional traps.
606
6d53bec8
AA
6072016-03-09 Andreas Arnez <arnez@linux.vnet.ibm.com>
608
609 * s390-linux-tdep.c (s390_prologue_frame_unwind_cache): Store
610 frame func's PC in info->func before any other failure can occur.
611 (s390_frame_this_id): Use frame_id_build_unavailable_stack if
612 info->func has been filled out.
613
f7990f16
PA
6142016-03-09 Pedro Alves <palves@redhat.com>
615
616 * osabi.c (gdb_osabi_names): Avoid spaces in osabi names.
617
087ccc6a
PA
6182016-03-09 Pedro Alves <palves@redhat.com>
619
620 * frv-tdep.c (frv_gdbarch_init): Handle bfd_mach_fr300.
621
114d7832
PA
6222016-03-09 Pedro Alves <palves@redhat.com>
623
624 * cris-tdep.c (cris_gdbarch_init): Return 0 if the info's byte
625 order is BFD_ENDIAN_BIG or if the cris version is unsupported.
626
d7a87b5e
PA
6272016-03-09 Pedro Alves <palves@redhat.com>
628
629 * doublest.c: Extend comments.
630 (floatformat_to_doublest, floatformat_from_doublest): Copy the
631 floatformat's total size, not the host type's size.
632
b79497cb
PA
6332016-03-09 Pedro Alves <palves@redhat.com>
634
635 * doublest.c (floatformat_totalsize_bytes): New function.
636 (floatformat_from_type): Assert that the type's length is at least
637 as long as the floatformat's totalsize.
638 * doublest.h (floatformat_totalsize_bytes): New declaration.
639 * gdbtypes.c (arch_float_type): Assert that the type's length is
640 at least as long as the floatformat's totalsize.
641
aacca8a7
PA
6422016-03-09 Pedro Alves <palves@redhat.com>
643
644 * hppa-linux-tdep.c (hppa_linux_init_abi): Set the long double
645 format to floatformats_ieee_double.
646
e6c2f47b
PA
6472016-03-07 Pedro Alves <palves@redhat.com>
648
649 * mips-tdep.c (mips_gdbarch_init): Check whether info.abfd is NULL
650 before calling bfd_get_flavour.
651
cb86f388
DC
6522016-03-05 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
653
654 * avr-tdep.c (AVR_LAST_ARG_REGNUM): Define.
655 (avr_push_dummy_call): Correct last needed argument register.
656 Write MSB of argument into register and subsequent bytes into
657 other registers in decreasing order.
658
f1771dce
YQ
6592016-03-04 Yao Qi <yao.qi@linaro.org>
660
661 * arm-tdep.c (arm_record_vdata_transfer_insn): Simplify the
662 condition check. Record the right D register number.
663
ca92db2d
YQ
6642016-03-04 Yao Qi <yao.qi@linaro.org>
665
666 * arm-tdep.c (arm_record_extension_space): Remove code
667 printing "Process record does not support".
668 (arm_record_data_proc_misc_ld_str): Likewise.
669 (decode_insn): Call arm_record_extension_space if condition
670 is 0xf. Call arm_record_unsupported_insn if ret isn't
671 ARM_RECORD_SUCCESS. Use 'ret' instead of 'insn_id' to hold
672 the value of thumb2_record_decode_insn_handler.
673
73519cce
SM
6742016-03-04 Simon Marchi <simon.marchi@ericsson.com>
675
676 * features/feature_to_c.sh: Print the help when passing no
677 argument.
678
650beae3
BH
6792016-03-02 Bernhard Heckel <bernhard.heckel@intel.com>
680
681 * MAINTAINERS (Write After Approval): Add Bernhard Heckel.
682
28586665
BH
6832016-03-02 Bernhard Heckel <bernhard.heckel@intel.com>
684
685 * dwarf2read.c (new_symbol_full): Fix detection of gfortran compilers.
686
f2489477
AA
6872016-03-01 Andreas Arnez <arnez@linux.vnet.ibm.com>
688
689 * s390-linux-tdep.c (s390_backchain_frame_unwind_cache): Avoid
690 exception when attempting to access the inferior's backchain.
691
d5219069
YQ
6922016-02-29 Yao Qi <yao.qi@linaro.org>
693
694 * aarch64-linux-tdep.c (aarch64_canonicalize_syscall): Support
695 eventfd2, eventfd2, dup3, inotify_init1, fallocate and pipe2.
696 Return gdb_sys_epoll_create1 instead of gdb_sys_epoll_create
697 for aarch64_sys_epoll_create1.
698
253b4d3a
YQ
6992016-02-29 Yao Qi <yao.qi@linaro.org>
700
701 * linux-record.h (enum gdb_syscall) <gdb_sys_fallocate>: New.
702 <gdb_sys_eventfd2, gdb_sys_epoll_create1, gdb_sys_dup3>: New.
703 <gdb_sys_pipe2, gdb_sys_inotify_init1>: New.
704 * linux-record.c (record_linux_system_call): Handle them.
705
38899f16
IB
7062016-02-28 Iain Buclaw <ibuclaw@gdcproject.org>
707
708 * d-namespace.c (d_lookup_symbol_imports): Avoid recursive lookups from
709 cyclic imports.
710
1ed0c2a4
KS
7112016-02-26 Keith Seitz <keiths@redhat.com>
712
713 * rs6000-tdep.c (rs6000_frame_cache): Explicitly cast return result
714 to avoid invalid conversion from void *.
715
9fde51ed
YQ
7162016-02-26 Yao Qi <yao.qi@linaro.org>
717
718 * arm-tdep.c (arm_record_exreg_ld_st_insn): Set 'single_reg'
719 per bit 8. Check bit 20 instead of bit 4 for VMOV
720 instruction. Record D registers for instructions changing
721 S registers. Change of the order of length and address
722 in record_buf_mem array.
723
1f33efec
YQ
7242016-02-26 Yao Qi <yao.qi@linaro.org>
725
726 * arm-tdep.c (thumb_record_ld_st_reg_offset): Fix the register
727 number of Rd.
728
1547ef64
DE
7292016-02-25 Doug Evans <dje@google.com>
730
731 * remote-m32r-sdi.c (recv_char_data): Initialize val to avoid
732 compiler warning.
733 (recv_long_data): Ditto.
734
166616ce
SM
7352016-02-25 Simon Marchi <simon.marchi@ericsson.com>
736
737 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault):
738 Initialize variables.
739
1eb7c2d8
AT
7402016-02-25 Antoine Tremblay <antoine.tremblay@ericsson.com>
741
742 * ax-general.c (ax_reg): Call gdbarch_remote_register_number.
743 (ax_reg_mask): Likewise.
744
e7ad2f14
PA
7452016-02-24 Pedro Alves <palves@redhat.com>
746
747 * linux-nat.c (save_sigtrap) Delete.
748 (stop_wait_callback): Call save_stop_reason instead of
749 save_sigtrap.
750 (check_stopped_by_breakpoint): Rename to ...
751 (save_stop_reason): ... this. Bits of save_sigtrap folded here.
752 Use GDB_ARCH_IS_TRAP_HWBKPT and handle ambiguous
753 GDB_ARCH_IS_TRAP_BRKPT / GDB_ARCH_IS_TRAP_HWBKPT. Factor out
754 common code between the USE_SIGTRAP_SIGINFO and
755 !USE_SIGTRAP_SIGINFO blocks.
756 (linux_nat_filter_event): Call save_stop_reason instead of
757 save_sigtrap.
758 * nat/linux-ptrace.h: Check for both SI_KERNEL and TRAP_BRKPT
759 si_code for MIPS.
760 * nat/linux-ptrace.h: Fix "TRAP_HWBPT" typo in x86 table. Add
761 comments on MIPS behavior.
762 (GDB_ARCH_IS_TRAP_HWBKPT): Define for all archs.
763
338435ef
MK
7642016-02-24 Marcin Kościelnicki <koriakin@0x04.net>
765
766 * rs6000-tdep.c (rs6000_frame_cache): Initialize frame and pc to 0
767 to avoid spurious warnings.
768
bf74e428
GB
7692016-02-24 Gary Benson <gbenson@redhat.com>
770
771 * exec.c (exec_file_locate_attach): Do not attempt to
772 locate main executable locally if not found in sysroot.
773
62fb310b
JB
7742016-02-24 Joel Brobecker <brobecker@adacore.com>
775
776 GDB 7.11 released.
777
50ae56ec
WW
7782016-02-24 Wei-cheng Wang <cole945@gmail.com>
779
780 * rs6000-tdep.c (rs6000_frame_cache, rs6000_frame_this_id): Handle
781 unavailable PC/SP to build unavailable frame.
782
cce0e923
DE
7832016-02-23 Doug Evans <dje@google.com>
784
785 Extend "skip" command to support -file, -gfile, -function, -rfunction.
786 * NEWS: Document new features.
787 * skip.c: #include "fnmatch.h", "gdb_regex.h".
788 (skiplist_entry) <file>: Renamed from filename.
789 <function>: Renamed from function_name.
790 <file_is_glob, function_is_regexp>: New members.
791 <compiled_function_regexp, compiled_function_regexp_is_valid>:
792 New members.
793 (make_skip_entry): New function.
794 (free_skiplist_entry, free_skiplist_entry_cleanup): New functions.
795 (make_free_skiplist_entry_cleanup): New function.
796 (skip_file_command): Update.
797 (skip_function, skip_function_command): Update.
798 (compile_skip_regexp): New functions.
799 (skip_command): Add support for new options.
800 (skip_info): Update.
801 (skip_file_p, skip_gfile_p): New functions.
802 (skip_function_p, skip_rfunction_p): New functions.
803 (function_name_is_marked_for_skip): Update and simplify.
804 (_initialize_step_skip): Update.
805 * symtab.c: #include "fnmatch.h".
806 (compare_glob_filenames_for_search): New function.
807 * symtab.h (compare_glob_filenames_for_search): Declare.
808 * utils.c (count_path_elements): New function.
809 (strip_leading_path_elements): New function.
810 * utils.h (count_path_elements): Declare.
811 (strip_leading_path_elements): Declare.
812
12545665
SM
8132016-02-23 Simon Marchi <simon.marchi@ericsson.com>
814
815 * arm-tdep.c (arm_decode_svc_copro): Remove "to" parameter.
816 (thumb_process_displaced_insn): Likewise.
817 (arm_process_displaced_insn): Adjust calls.
818
c955ae73
YQ
8192016-02-23 Yao Qi <yao.qi@linaro.org>
820
821 * aarch64-linux-tdep.c (enum aarch64_syscall) <aarch64_sys_mknod>:
822 Remove.
823 <aarch64_sys_mkdir, aarch64_sys_unlink, aarch64_sys_symlink>: Remove.
824 <aarch64_sys_link, aarch64_sys_rename, aarch64_sys_faccess>: Remove.
825 <aarch64_sys_mknodat, aarch64_sys_mkdirat>: New.
826 <aarch64_sys_unlinkat, aarch64_sys_symlinkat>: New.
827 <aarch64_sys_linkat, aarch64_sys_renameat>: New.
828 <aarch64_sys_faccessat>: New.
829 <aarch64_sys_open, aarch64_sys_readlink, aarch64_sys_fstatat>: Remove.
830 <aarch64_sys_openat, aarch64_sys_readlinkat>: New.
831 <aarch64_sys_newfstatat>: New.
832 (UNSUPPORTED_SYSCALL_MAP): New macro.
833 (aarch64_canonicalize_syscall): Add missing syscalls.
834
ac46107c
JK
8352016-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
836
837 * gdb-gdb.py (class TypeFlagsPrinter): Use parentheses for print.
838
01e57735
YQ
8392016-02-22 Yao Qi <yao.qi@linaro.org>
840
841 * arm-tdep.c: Fix code format issues.
842
30a6a7f0
IB
8432016-02-21 Iain Buclaw <ibuclaw@gdcproject.org>
844
845 * d-namespace.c (d_lookup_symbol_imports): Remove argument
846 'search_parents'. All callers updated.
847
f79a3bae
MK
8482016-02-18 Marcin Kościelnicki <koriakin@0x04.net>
849
850 * s390-linux-tdep.c (s390_guess_tracepoint_registers): New function.
851 (s390_gdbarch_init): Fill guess_tracepoint_registers hook.
852
012b3a21
WT
8532016-02-18 Walfred Tedeschi <walfred.tedeschi@intel.com>
854
855 * NEWS: Add entry for bound violation.
856 * amd64-linux-tdep.c (amd64_linux_init_abi_common):
857 Add handler for segmentation fault.
858 * gdbarch.sh (handle_segmentation_fault): New.
859 * gdbarch.c: Regenerate.
860 * gdbarch.h: Regenerate.
861 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): New.
862 (SIG_CODE_BONDARY_FAULT): New define.
863 (i386_linux_init_abi): Use i386_mpx_bound_violation_handler.
864 * i386-linux-tdep.h (i386_linux_handle_segmentation_fault) New.
865 * i386-tdep.c (i386_mpx_enabled): Add as external.
866 * i386-tdep.c (i386_mpx_enabled): Add as external.
867 * infrun.c (handle_segmentation_fault): New function.
868 (print_signal_received_reason): Use handle_segmentation_fault.
869
5f034a78
MK
8702016-02-18 Marcin Kościelnicki <koriakin@0x04.net>
871
872 * arch-utils.c (default_guess_tracepoint_registers): New function.
873 * arch-utils.h (default_guess_tracepoint_registers): New prototype.
874 * gdbarch.c: Regenerate.
875 * gdbarch.h: Regenerate.
876 * gdbarch.sh: Add guess_tracepoint_registers hook.
877 * tracefile.c (tracefile_fetch_registers): Use the new gdbarch hook.
878
88178e82
GB
8792016-02-17 Gary Benson <gbenson@redhat.com>
880
881 * exec.c (exec_file_locate_attach): Add missing cleanup.
882
4041ed77
DB
8832016-02-16 Don Breazeal <donb@codesourcery.com>
884
885 PR remote/19496
886 * remote.c (remove_new_fork_children): Check for pending
887 fork status in thread_info.suspend.
888
b442c911
YQ
8892016-02-16 Yao Qi <yao.qi@linaro.org>
890
891 * arm-linux-tdep.c (arm_linux_software_single_step): Assign
892 'old_chain' later.
893
553cb527
YQ
8942016-02-16 Yao Qi <yao.qi@linaro.org>
895
896 * arch/arm-get-next-pcs.h (struct arm_get_next_pcs_ops)
897 <syscall_next_pc>: Remove argument PC. Callers updated.
898 * arm-linux-tdep.c (arm_linux_get_next_pcs_syscall_next_pc):
899 Remove argument PC. Get pc from regcache_read_pc.
900 * arm-tdep.c (arm_get_next_pcs_syscall_next_pc): Remove
901 argument PC.
902
0a0da556
YQ
9032016-02-15 Yao Qi <yao.qi@linaro.org>
904
905 * aarch64-tdep.c (aarch64_analyze_prologue): Remove "0x".
906
01113bc1
YQ
9072016-02-12 Yao Qi <yao.qi@linaro.org>
908
909 * arch/arm-linux.c (arm_linux_get_next_pcs_fixup): Calculate
910 nextpc according to instruction.
911
ed443b61
YQ
9122016-02-12 Yao Qi <yao.qi@linaro.org>
913
914 * arch/arm-get-next-pcs.c (arm_get_next_pcs): Call
915 self->ops->fixup if it isn't NULL.
916 * arch/arm-get-next-pcs.h: Include gdb_vecs.h.
917 (struct arm_get_next_pcs_ops) <fixup>: New field.
918 * arch/arm-linux.c: Include common-regcache.h and
919 arch/arm-get-next-pcs.h.
920 (arm_linux_get_next_pcs_fixup): New function.
921 * arch/arm-linux.h (arm_linux_get_next_pcs_fixup): Declare.
922 * arm-linux-tdep.c (arm_linux_get_next_pcs_ops): Initialize
923 it with arm_linux_get_next_pcs_fixup.
924 (arm_linux_software_single_step): Move code to
925 arm_linux_get_next_pcs_fixup.
926 * arm-tdep.c (arm_get_next_pcs_ops): Initialize it.
927
d21b5f15
MK
9282016-02-12 Marcin Kościelnicki <koriakin@0x04.net>
929
930 * xml-tdesc.c (target_fetch_description_xml) [!HAVE_LIBEXPAT]: Warn
931 and return NULL.
932
33b4777c
MM
9332016-02-12 Markus Metzger <markus.t.metzger@intel.com>
934
935 * frame.h (skip_tailcall_frames): Update comment.
936 * frame.c (skip_artificial_frames, skip_tailcall_frames): Return NULL
937 if only artificial frames are found. Update comment.
938 (frame_unwind_caller_id): Handle NULL return.
939 (frame_unwind_caller_pc, frame_unwind_caller_arch): Assert that
940 skip_artificial_frames does not return NULL.
941 (frame_pop): Add an error if only tailcall frames are found.
942 * infcmd.c (finish_command): Move skip_tailcall_frames call into
943 forward-execution case. Add an error if only tailcall frames are
944 found.
945
a038fa3e
MM
9462016-02-12 Markus Metzger <markus.t.metzger@intel.com>
947
948 * stack.c (frame_info): Check frame_unwind_caller_id.
949
2f3ef606
MM
9502016-02-12 Markus Metzger <markus.t.metzger@intel.com>
951
952 * frame.h (skip_tailcall_frames): New.
953 * frame.c (skip_tailcall_frames): New.
954 (frame_pop): Call skip_tailcall_frames.
955 * infcmd.c (finish_command): Call skip_tailcall_frames.
956
e352bf0a
PA
9572016-02-11 Pedro Alves <palves@redhat.com>
958
959 * Makefile.in (check-parallel): New rule.
960
bec2ab5a
SM
9612016-02-11 Simon Marchi <simon.marchi@ericsson.com>
962
963 * arm-tdep.c (arm_skip_prologue): Remove unused variables.
964 (arm_analyze_prologue): Likewise.
965 (arm_scan_prologue): Likewise.
966 (arm_m_exception_prev_register): Likewise.
967 (arm_copy_block_xfer): Likewise.
968 (thumb2_copy_block_xfer): Likewise.
969 (arm_decode_miscellaneous): Likewise.
970 (arm_decode_ld_st_word_ubyte): Likewise.
971 (arm_decode_svc_copro): Likewise.
972 (thumb2_decode_svc_copro): Likewise.
973 (thumb_copy_16bit_ldr_literal): Likewise.
974 (thumb_copy_pop_pc_16bit): Likewise.
975 (decode_thumb_32bit_ld_mem_hints): Likewise.
976 (arm_show_force_mode): Likewise.
977 (_initialize_arm_tdep): Likewise.
978 (arm_record_strx): Likewise.
979 (arm_record_extension_space): Likewise.
980 (arm_record_data_proc_misc_ld_str): Likewise.
981 (arm_record_exreg_ld_st_insn): Likewise.
982 (arm_record_vfp_data_proc_insn): Likewise.
983 (arm_record_coproc_data_proc): Likewise.
984 (thumb_record_misc): Likewise.
985 (thumb_record_ldm_stm_swi): Likewise.
986 (thumb2_record_ld_st_dual_ex_tbb): Likewise.
987 (thumb2_record_ld_mem_hints): Likewise.
988 (thumb2_record_lmul_lmla_div): Likewise.
989 (thumb2_record_asimd_struct_ld_st): Likewise.
990 (arm_process_record): Likewise.
991
2ba163c8
SM
9922016-02-11 Simon Marchi <simon.marchi@ericsson.com>
993
994 * arm-tdep.c (arm_displaced_step_copy_insn): Remove.
995 (ARM displaced stepping support): Remove reference to
996 arm_displaced_step_copy_insn in comment.
997 * arm-tdep.h (arm_displaced_step_copy_insn): Remove.
998 * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Remove
999 reference to arm_displaced_step_copy_insn in comment.
1000
615234c1
SM
10012016-02-11 Simon Marchi <simon.marchi@ericsson.com>
1002
1003 * arm-tdep.c (thumb_copy_unmodified_16bit): Change type of insn.
1004 (thumb_copy_b): Likewise.
1005 (arm_decode_b_bl_ldmstm): Likewise.
1006 (thumb_copy_16bit_ldr_literal): Likewise.
1007 (thumb_copy_pop_pc_16bit): Likewise.
1008
82e9becd
AT
10092016-02-11 Antoine Tremblay <antoine.tremblay@ericsson.com>
1010
1011 * tracepoint.c (encode_actions_1): Use target_gdbarch () rather
1012 than loc->gdbarch.
1013
5ac87a99
MK
10142016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
1015
1016 * tracefile-tfile.c (trace_tdesc): New static variable.
1017 (tfile_open): Clear trace_tdesc, call target_find_description.
1018 (tfile_interp_line): Recognize tdesc lines.
1019 (tfile_close): Clear trace_tdesc.
1020 (tfile_xfer_partial_features): New function.
1021 (tfile_xfer_partial): Call tfile_xfer_partial_features.
1022 (tfile_append_tdesc_line): New function.
1023
18d3cec5
MK
10242016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
1025
1026 * ctf.c (ctf_write_tdesc): New function.
1027 (ctf_write_ops): Wire in ctf_write_tdesc.
1028 * tracefile-tfile.c (tfile_write_tdesc): New function.
1029 (tfile_write_ops): Wire in tfile_write_tdesc.
1030 * tracefile.c (trace_save): Call write_tdesc method.
1031 * tracefile.h (struct trace_file_write_ops): Add write_tdesc method.
1032 * xml-tdesc.c (target_fetch_description_xml): New function.
1033 * xml-tdesc.h: Add target_fetch_description_xml prototype.
1034
550dc4e2
SM
10352016-02-10 Simon Marchi <simon.marchi@ericsson.com>
1036
1037 * arm-tdep.c (arm_copy_extra_ld_st): Fix "unpriveleged" typo.
1038 (arm_decode_dp_misc): Likewise.
1039
62e5fd57
MK
10402016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
1041
1042 * amd64-tdep.c (amd64_ax_pseudo_register_collect): New function.
1043 (amd64_init_abi): Fill ax_pseudo_register_collect hook.
1044 * gdb/i386-tdep.c (i386_pseudo_register_read_into_value): Remove
1045 misleading comment.
1046 (i386_pseudo_register_write): Ditto.
1047 (i386_ax_pseudo_register_collect): New function.
1048 (i386_gdbarch_init): Fill ax_pseudo_register_collect hook.
1049 * i386-tdep.h: Add i386_ax_pseudo_register_collect prototype.
1050
e909d859
MK
10512016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
1052
1053 * tracefile-tfile.c (tfile_fetch_registers): Use g packet order
1054 instead of gdb order.
1055
473b99e5
MK
10562016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
1057
1058 * tracefile-tfile.c (tfile_fetch_registers): Fix off-by-one in bounds
1059 check.
1060
1233c0ba
JB
10612016-02-10 Joel Brobecker <brobecker@adacore.com>
1062
1063 * NEWS: Create a new section for the next release branch.
1064 Rename the section of the current branch, now that it has
1065 been cut.
1066
d1dc0942
JB
10672016-02-10 Joel Brobecker <brobecker@adacore.com>
1068
1069 GDB 7.11 branch created (9ef9e6a6a0dd8f948708cb67c9afcfd0be40cb0a):
1070 * version.in: Bump version to 7.11.50.DATE-git.
1071
9ef9e6a6
KS
10722016-02-09 Keith Seitz <keiths@redhat.com>
1073
1074 PR breakpoints/19546
1075 * breakpoint.c (breakpoint_event_location_empty_p): New function.
1076 (update_breakpoints_after_exec, bkpt_re_set): Use this new function
1077 instead of event_location_empty_p.
1078
39a67dc4
KS
10792016-02-09 Keith Seitz <keiths@redhat.com>
1080
1081 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Use
1082 string_to_event_location_basic instead of string_to_event_location.
1083
a96e36da
KS
10842016-02-09 Keith Seitz <keiths@redhat.com>
1085
1086 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Skip
1087 leading whitespace and use string_to_event_location_basic instead
1088 of new_linespec_location.
1089
9f61929f
KS
10902016-02-09 Keith Seitz <keiths@redhat.com>
1091
1092 PR python/19506
1093 * python/py-breakpoint.c (bppy_init): Use
1094 string_to_event_location_basic instead of new_linespec_location.
1095
eeb1af43
KS
10962016-02-09 Keith Seitz <keiths@redhat.com>
1097
1098 * location.c (string_to_explicit_location): Note that "-p" is
1099 reserved for probe locations and return NULL for any input
1100 that starts with that.
1101 (string_to_event_location): Move "legacy" linespec code to ...
1102 (string_to_event_location_basic): ... here.
1103 * location.h (string_to_event_location): Update comment.
1104 (string_to_event_location_basic): New function.
1105
1e94266c
SM
11062016-02-09 Simon Marchi <simon.marchi@ericsson.com>
1107
1108 * configure.ac: Use AC_CONFIG_FILES instead of passing arguments
1109 to AC_OUTPUT. Remove "exit 0" at the end.
1110 * configure: Regenerate.
1111
2a7f3dff
PA
11122016-02-09 Pedro Alves <palves@redhat.com>
1113
1114 PR breakpoints/19548
1115 * breakpoint.c (create_overlay_event_breakpoint): Don't update
1116 global location list here.
1117 (create_longjmp_master_breakpoint)
1118 (create_std_terminate_master_breakpoint)
1119 (create_exception_master_breakpoint, create_jit_event_breakpoint)
1120 (update_breakpoint_locations):
1121 (breakpoint_re_set): Update global location list after all
1122 breakpoints are re-set.
1123
54887903
SM
11242016-02-08 Simon Marchi <simon.marchi@ericsson.com>
1125
1126 * remote.c (remote_register_number_and_offset): Remove unused
1127 variable(s).
1128 (remote_thread_always_alive): Likewise.
1129 (remote_update_thread_list): Likewise.
1130 (process_initial_stop_replies): Likewise.
1131 (remote_start_remote): Likewise.
1132 (remote_check_symbols): Likewise.
1133 (discard_pending_stop_replies): Likewise.
1134 (process_stop_reply): Likewise.
1135 (putpkt_binary): Likewise.
1136 (getpkt): Likewise.
1137 (remote_add_target_side_condition): Likewise.
1138 (remote_insert_breakpoint): Likewise.
1139 (remote_supports_stopped_by_sw_breakpoint): Likewise.
1140 (remote_supports_stopped_by_hw_breakpoint): Likewise.
1141 (remote_xfer_partial): Likewise.
1142 (remote_read_btrace): Likewise.
1143 (remote_async_serial_handler): Likewise.
1144 (remote_thread_events): Likewise.
1145 (_initialize_remote): Likewise.
1146
30914ca8
SM
11472016-02-07 Simon Marchi <simon.marchi@polymtl.ca>
1148
1149 * varobj.h (varobj_delete): Remove dellist parameter, update and
1150 move documentation here.
1151 * varobj.c (struct cpstack, cppush, cppop): Remove.
1152 (delete_variable): Remove resultp (first) parameter.
1153 (delete_variable_1): Likewise.
1154 (varobj_delete): Remove dellist parameter and unused code.
1155 (update_dynamic_varobj_children): Adjust varobj_delete call.
1156 (update_type_if_necessary): Likewise.
1157 (varobj_set_visualizer): Likewise.
1158 (varobj_update): Likewise.
1159 (value_of_root): Likewise.
1160 (varobj_invalidate_iter): Likewise.
1161 * mi/mi-cmd-var.c (mi_cmd_var_delete): Likewise.
1162
e42e5352
YQ
11632016-02-04 Yao Qi <yao.qi@linaro.org>
1164
1165 * remote.c (remote_wait_as): Set rs->waiting_for_stop_reply to
1166 0 before handling 'F' and set it back afterwards.
1167
6456a18b
SM
11682016-02-02 Simon Marchi <simon.marchi@ericsson.com>
1169
1170 * ui-out.c (MAX_UI_OUT_LEVELS): Remove.
1171
3f2f6cb5
WT
11722016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
1173
1174 * amd64-linux-siginfo.c (nat_siginfo_t, nat_sigval_t, nat_timeval):
1175 New types.
1176 (compat_siginfo): New bound fields added.
1177 (compat_x32_siginfo): New field added.
1178 (cpt_si_addr_lsb): New define.
1179 (compat_siginfo_from_siginfo): Use nat_siginfo.
1180 (siginfo_from_compat_siginfo): Use nat_siginfo.
1181 (compat_x32_siginfo_from_siginfo): Likewise.
1182 (siginfo_from_compat_x32_siginfo): Likewise.
1183
96b5c49f
WT
11842016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
1185
1186 * linux-tdep.c (linux_get_siginfo_type): Add the _addr_bnd
1187 structure to the siginfo if extra_fields contains
1188 LINUX_SIGINFO_FIELD_ADDR_BND.
1189
190b495d
WT
11902016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
1191
1192 * linux-tdep.h (linux_get_siginfo_type_with_fields): Make extern.
1193 * linux-tdep.c (linux_get_siginfo_type_with_fields): Make extern.
1194 * i386-linux-tdep.h (x86_linux_get_siginfo_type): New
1195 function.
1196 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Add
1197 x86_linux_get_siginfo_type for the amd64 abi.
1198 * i386-linux-tdep.c (x86_linux_get_siginfo_type): New
1199 function.
1200 (i386_linux_init_abi): Add new function at the i386 ABI
1201 initialization.
1202
43564574
WT
12032016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
1204
1205 * linux-tdep.h (linux_siginfo_extra_field_values): New enum values.
1206 (linux_siginfo_extra_fields): New enum type.
1207 * linux-tdep.c (linux_get_siginfo_type_with_fields): New function.
1208 (linux_get_siginfo_type): Use new function.
1209
93813b37
WT
12102016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
1211
1212 * nat/amd64-linux-siginfo.c: New file.
1213 * nat/amd64-linux-siginfo.h: New file.
1214 * Makefile.in (HFILES_NO_SRCDIR): Add nat/amd64-linux-siginfo.h.
1215 (amd64-linux-siginfo.o): New rule.
1216 * config/i386/linux64.mh (NATDEPFILES): Add amd64-linux-siginfo.o.
1217 * amd64-linux-nat.c (nat/amd64-linux-siginfo.h): New include.
1218 (compat_siginfo_from_siginfo, siginfo_from_compat_siginfo)
1219 (compat_x32_siginfo_from_siginfo, siginfo_from_compat_x32_siginfo)
1220 (compat_timeval, compat_sigval, compat_x32_clock, cpt_si_pid)
1221 (cpt_si_uid, cpt_si_timerid, cpt_si_overrun, cpt_si_status)
1222 (cpt_si_utime, cpt_si_stime, cpt_si_ptr, cpt_si_addr, cpt_si_band)
1223 (cpt_si_fd, si_timerid, si_overrun): Move to nat/amd64-linux-siginfo.c.
1224
5fdf6324
AB
12252016-02-01 Andrew Burgess <andrew.burgess@embecosm.com>
1226
1227 * value.c (max_value_size): New variable.
1228 (MIN_VALUE_FOR_MAX_VALUE_SIZE): New define.
1229 (set_max_value_size): New function.
1230 (show_max_value_size): New function.
1231 (check_type_length_before_alloc): New function.
1232 (allocate_value_contents): Call check_type_length_before_alloc.
1233 (set_value_enclosing_type): Likewise.
1234 (_initialize_values): Add set/show handler for max-value-size.
1235 * NEWS: Mention new set/show command.
1236
5fa13070
SM
12372016-01-31 Simon Marchi <simon.marchi@polymtl.ca>
1238
1239 * varobj.h (struct varobj): Fix typos in comments.
1240 (struct lang_varobj_ops): Likewise.
1241 * varobj.c (VAROBJ_TABLE_SIZE): Likewise.
1242 (varobj_create): Move misplaced comment.
1243
a2e3e93f
SM
12442016-01-29 Simon Marchi <simon.marchi@ericsson.com>
1245
1246 * aarch64-tdep.c (aarch64_record_asimd_load_store): Add braces
1247 to for include additional lines.
1248 * xcoffread.c (scan_xcoff_symtab): Remove unnecessary braces.
1249
56e374a6
SM
12502016-01-28 Simon Marchi <simon.marchi@ericsson.com>
1251
1252 * gnulib/import/Makefile.am: Regenerate.
1253 * gnulib/import/Makefile.in: Regenerate.
1254 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
1255 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add rawmemchr.
1256
8424cc97
SM
12572016-01-28 Simon Marchi <simon.marchi@ericsson.com>
1258
1259 * remote.c (skip_to_semicolon): Remove.
1260 (remote_parse_stop_reply): Use strchrnul instead of
1261 skip_to_semicolon.
1262 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
1263 strchrnul.
1264 * gnulib/aclocal.m4: Regenerate.
1265 * gnulib/config.in: Regenerate.
1266 * gnulib/configure: Regenerate.
1267 * gnulib/import/Makefile.am: Regenerate.
1268 * gnulib/import/Makefile.in: Regenerate.
1269 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
1270 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
1271 * gnulib/import/m4/rawmemchr.m4: New file.
1272 * gnulib/import/m4/strchrnul.m4: New file.
1273 * gnulib/import/rawmemchr.c: New file.
1274 * gnulib/import/rawmemchr.valgrind: New file.
1275 * gnulib/import/strchrnul.c: New file.
1276 * gnulib/import/strchrnul.valgrind: New file.
1277
4a6a1ed4
YQ
12782016-01-28 Yao Qi <yao.qi@linaro.org>
1279
1280 * breakpoint.c (build_target_command_list): Don't call continue
1281 if aexpr is NULL.
1282 (build_target_condition_list): Likewise.
1283
94715c17
KB
12842016-01-27 Kevin Buettner <kevinb@redhat.com>
1285
1286 * rx-tdep.c (rx_push_dummy_call): Treat scalars larger than 8
1287 bytes as aggregates.
1288
c07af0ab
JB
12892016-01-27 Joel Brobecker <brobecker@adacore.com>
1290
1291 * MAINTAINERS (Responsible Maintainers): Add Keith Seitz as
1292 Linespec Maintainers.
1293
41548caa
SM
12942016-01-26 Simon Marchi <simon.marchi@ericsson.com>
1295
1296 * common/common-utils.c (skip_spaces): Fix comment.
1297 (skip_to_space_const): Likewise.
1298
4d18591b
YQ
12992016-01-25 Yao Qi <yao.qi@linaro.org>
1300
1301 * arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw):
1302 Remove argument pc. Get pc by regcache_read_pc. Callers updated.
1303 (arm_deal_with_atomic_sequence_raw): Likewise.
1304 (thumb_get_next_pcs_raw): Likewise.
1305 (arm_get_next_pcs_raw): Likewise.
1306 (arm_get_next_pcs): Remove argument pc. Callers updated.
1307 * arch/arm-get-next-pcs.h (arm_get_next_pcs): Update declaration.
1308
a579cd9a
MW
13092016-01-25 Mark Wielaard <mjw@redhat.com>
1310
1311 * ada-lang.c (ada_evaluate_subexp): Add proper else block.
1312 * c-typeprint.c (c_type_print_base): Fix misleading indentation of
1313 if statement.
1314 * inflow.c (child_terminal_ours_1): Fix misleading indentation of
1315 statement block by introducing an else.
1316 * linux-record.c (record_linux_sockaddr): Fix misleading indentation
1317 of return statements.
1318 (record_linux_msghdr): Likewise.
1319
a2077e25
PA
13202016-01-25 Pedro Alves <palves@redhat.com>
1321
1322 PR threads/19461
1323 * infrun.c (handle_inferior_event_1) <fork/vfork>: Update
1324 parent/child running states.
1325
1d2736d4
PA
13262016-01-25 Pedro Alves <palves@redhat.com>
1327
1328 PR gdb/19494
1329 * linux-nat.c (kill_one_lwp): New, factored out from ...
1330 (kill_callback): ... this.
1331 (kill_wait_callback): New, factored out from ...
1332 (kill_wait_one_lwp): ... this.
1333 (kill_unfollowed_fork_children): New function.
1334 (linux_nat_kill): Use it.
1335
b2bae2f7
JB
13362016-01-22 John Baldwin <jhb@FreeBSD.org>
1337
1338 * fbsd-nat.c (fbsd_pid_to_str): Adjust string format.
1339
d86feca3
YQ
13402016-01-22 Yao Qi <yao.qi@linaro.org>
1341
1342 * arm-linux-nat.c (fetch_fpregs): Call perror_with_name
1343 instead of warning.
1344 (store_fpregs, fetch_regs, store_regs): Likewise.
1345 (fetch_wmmx_regs, store_wmmx_regs): Likewise.
1346 (fetch_vfp_regs, store_vfp_regs): Likewise.
1347
b35a8b2f
DE
13482016-01-21 Doug Evans <dje@google.com>
1349
1350 * breakpoint.c (init_breakpoint_sal): Add comment.
1351
f906b857
MK
13522016-01-21 Marcin Kościelnicki <koriakin@0x04.net>
1353
1354 * ax-gdb.c (gen_traced_pop): Use gen_fetch for string collection.
1355
4a099de2
AB
13562016-01-21 Andrew Burgess <andrew.burgess@embecosm.com>
1357
1358 * disasm.c (maybe_add_dis_line_entry): Rename to...
1359 (add_dis_line_entry): ...this, and update header comment.
1360 (do_mixed_source_and_assembly): Now use add_dis_line_entry.
1361
a994041d
PA
13622016-01-21 Pedro Alves <palves@redhat.com>
1363
1364 * Makefile.in (COMPILER_CFLAGS): New.
1365 (CXXFLAGS): Get it from configure.
1366 (INTERNAL_CFLAGS_BASE, INTERNAL_LDFLAGS): Use COMPILER_CFLAGS
1367 instead of CFLAGS.
1368 * build-with-cxx.m4 (GDB_AC_BUILD_WITH_CXX): Set and AC_SUBST
1369 COMPILER_CFLAGS.
1370 * configure: Regenerate.
1371
305e13e6
JB
13722016-01-21 Joel Brobecker <brobecker@adacore.com>
1373
1374 * location.h (new_address_location): Add new parameters
1375 "addr_string" and "addr_string_len".
1376 (get_address_string_location): Add declaration.
1377 * location.c (new_address_location): Add new parameters
1378 "addr_string" and "addr_string_len". If not NULL, store
1379 a copy of the addr_string in the new location as well.
1380 (get_address_string_location): New function.
1381 (string_to_event_location): Update call to new_address_location.
1382 * linespec.c (event_location_to_sals) <ADDRESS_LOCATION>:
1383 Save the event location in the parser's state before
1384 passing it to convert_address_location_to_sals.
1385 * breakpoint.c (create_thread_event_breakpoint): Update call
1386 to new_address_location.
1387 (init_breakpoint_sal): Get the event location's string, if any,
1388 and use it to update call to new_address_location.
1389 * python/py-finishbreakpoint.c (bpfinishpy_init):
1390 Update call to new_address_location.
1391 * spu-tdep.c (spu_catch_start): Likewise.
1392
1393 * config/djgpp/fnchange.lst: Add entries for
1394 gdb/testsuite/gdb.base/break-fun-addr1.c and
1395 gdb/testsuite/gdb.base/break-fun-addr2.c.
1396
f7a6a40d
YQ
13972016-01-21 Yao Qi <yao.qi@linaro.org>
1398
1399 * arm-linux-tdep.c (arm_linux_sigreturn_next_pc): Add parameter
1400 is_thumb and set it according to CPSR saved on the stack.
1401 (arm_linux_get_next_pcs_syscall_next_pc): Pass is_thumb to
1402 arm_linux_sigreturn_next_pc.
1403
5f5dfff6
SM
14042016-01-20 Simon Marchi <simon.marchi@polymtl.ca>
1405
1406 * python/lib/gdb/printing.py (FlagEnumerationPrinter.__call__):
1407 Fix enumerators sort key function.
1408
be56871e
JB
14092016-01-20 Joel Brobecker <brobecker@adacore.com>
1410
b12e5614 1411 * printcmd.c (print_scalar_formatted): Move binary operator from
be56871e
JB
1412 end of line to beginning of next line. Adjust formatting
1413 accordingly.
1414
f2feec98
JB
14152016-01-19 John Baldwin <jhb@FreeBSD.org>
1416
1417 * fbsd-nat.c (fbsd_pid_to_exec_file): Use new "buflen" instead of
1418 "len" with sysctl.
1419
20a0aab3
JB
14202016-01-19 John Baldwin <jhb@FreeBSD.org>
1421
1422 * fbsd-tdep.c (find_stop_signal): Remove.
1423 (struct fbsd_collect_regset_section_cb) <lwp>: New field.
1424 <stop_signal>: New field.
1425 <abort_iteration>: New field.
1426 (fbsd_collect_regset_section_cb): Use new fields.
1427 (fbsd_collect_thread_registers): New function.
1428 (struct fbsd_corefile_thread_data): New structure.
1429 (fbsd_corefile_thread): New function.
1430 (fbsd_make_corefile_notes): Use new function to dump notes for each
1431 non-exited thread in a process.
1432
6e9567fe
JB
14332016-01-19 John Baldwin <jhb@FreeBSD.org>
1434
1435 * configure.ac: Check for support for LWP names on FreeBSD.
1436 * fbsd-nat.c [PT_LWPINFO] New variable debug_fbsd_lwp.
1437 [TDP_RFPPWAIT || HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME]
1438 (fbsd_fetch_kinfo_proc): Move function earlier.
1439 [PT_LWPINFO] (fbsd_thread_alive): New function.
1440 [PT_LWPINFO] (fbsd_pid_to_str): New function.
1441 [HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME] (fbsd_thread_name): New function.
1442 [PT_LWP_EVENTS] (fbsd_enable_lwp_events): New function.
1443 [PT_LWPINFO] (fbsd_add_threads): New function.
1444 [PT_LWPINFO] (fbsd_update_thread_list): New function.
1445 [PT_LWPINFO] New variable super_resume.
1446 [PT_LWPINFO] (resume_one_thread_cb): New function.
1447 [PT_LWPINFO] (resume_all_threads_cb): New function.
1448 [PT_LWPINFO] (fbsd_resume): New function.
1449 (fbsd_remember_child): Save full ptid instead of plain pid.
1450 (fbsd_is_child_pending): Return ptid of saved child process.
1451 (fbsd_wait): Include lwp in returned ptid and switch to LWP ptid on
1452 first stop.
1453 [PT_LWP_EVENTS] Handle LWP events.
1454 [TDP_RFPPWAIT] Include LWP in child ptid.
1455 (fbsd_post_startup_inferior) [PT_LWP_EVENTS]: Enable LWP events.
1456 (fbsd_post_attach) [PT_LWP_EVENTS]: Enable LWP events.
1457 Add threads for existing processes.
1458 (fbsd_nat_add_target) [PT_LWPINFO]: Set "to_thread_alive" to
1459 "fbsd_thread_alive".
1460 Set "to_pid_to_str" to "fbsd_pid_to_str".
1461 [HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME]: Set "to_thread_name" to
1462 "fbsd_thread_name".
1463 [PT_LWPINFO]: Set "to_update_thread_list" to "fbsd_update_thread_list".
1464 Set "to_has_thread_control" to "tc_schedlock".
1465 Set "to_resume" to "fbsd_resume".
1466 (_initialize_fbsd_nat): New function.
1467 * configure: Regenerate.
1468 * config.in: Regenerate.
1469
94309df7
JB
14702016-01-19 John Baldwin <jhb@FreeBSD.org>
1471
1472 * amd64bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
1473 get_ptrace_pid.
1474 (amd64bsd_store_inferior_registers): Use get_ptrace_pid.
1475 (amd64bsd_dr_get): Use get_ptrace_pid.
1476 (amd64bsd_dr_set): Use get_ptrace_pid.
1477 * i386bsd-nat.c (i386bsd_fetch_inferior_registers): Use get_ptrace_pid.
1478 (i386bsd_store_inferior_registers): Use get_ptrace_pid.
1479 (i386bsd_dr_get): Use get_ptrace_pid.
1480 (i386bsd_dr_set): Use get_ptrace_pid.
1481 * inf-ptrace.c (get_ptrace_pid): Export.
1482 * inf-ptrace.h (get_ptrace_pid): Declare.
1483 * ppcfbsd-nat.c (ppcfbsd_fetch_inferior_registers): Use lwp id.
1484 (ppcfbsd_store_inferior_registers): Use lwp id.
1485
79117428
JB
14862016-01-19 John Baldwin <jhb@FreeBSD.org>
1487
1488 * fbsd_tdep.c (fbsd_core_pid_to_str): New function.
1489 (fbsd_core_thread_name): New function.
1490 (fbsd_init_abi): Add "core_pid_to_str" gdbarch method.
1491 Add "core_thread_name" gdbarch method.
1492
4dfc5dbc
JB
14932016-01-19 John Baldwin <jhb@FreeBSD.org>
1494
1495 * corelow.c (core_thread_name): New function.
1496 (init_core_ops): Use "core_thread_name" for the "to_thread_name"
1497 target op.
1498 * gdbarch.sh (core_thread_name): New gdbarch callback.
1499 * gdbarch.h: Re-generate.
1500 * gdbarch.c: Re-generate.
1501
10e3ed90
SM
15022016-01-19 Simon Marchi <simon.marchi@polymtl.ca>
1503
1504 * python/lib/gdb/printing.py (_EnumInstance.to_string): Explicitly
1505 convert gdb.Value to integer type using int().
1506
a6e69c1f
JB
15072016-01-19 John Baldwin <jhb@FreeBSD.org>
1508
1509 * configure.ac: Include <sys/types.h when checking for "r_fs" in
1510 "struct reg".
1511 * configure: Regenerate.
1512
37e42b4f
PA
15132016-01-19 Pedro Alves <palves@redhat.com>
1514
1515 * ax-gdb.c (agent_command_1): Adjust call to decode_line_full.
1516 * break-catch-throw.c (re_set_exception_catchpoint): Pass the
1517 current program space down to linespec decoding and breakpoint
1518 location updating.
1519 * breakpoint.c (parse_breakpoint_sals): Adjust calls to
1520 decode_line_full.
1521 (until_break_command): Adjust calls to decode_line_1.
1522 (base_breakpoint_decode_location, bkpt_decode_location): Add
1523 'search_pspace' parameter. Pass it along.
1524 (bkpt_probe_create_sals_from_location): Adjust calls to
1525 parse_probes.
1526 (tracepoint_decode_location, tracepoint_probe_decode_location)
1527 (strace_marker_decode_location): Add 'search_pspace' parameter.
1528 Pass it along.
1529 (all_locations_are_pending): Rewrite to take a breakpoint and
1530 program space as arguments instead.
1531 (hoist_existing_locations): New function.
1532 (update_breakpoint_locations): Add 'filter_pspace' parameter. Use
1533 hoist_existing_locations instead of always removing all locations,
1534 and adjust to all_locations_are_pending change.
1535 (location_to_sals): Add 'search_pspace' parameter. Pass it along.
1536 Don't disable the breakpoint if there are other locations in
1537 another program space.
1538 (breakpoint_re_set_default): Adjust to pass down the current
1539 program space as filter program space.
1540 (decode_location_default): Add 'search_pspace' parameter and pass
1541 it along.
1542 (prepare_re_set_context): Don't switch program space here.
1543 (breakpoint_re_set): Use save_current_space_and_thread instead of
1544 save_current_program_space.
1545 * breakpoint.h (struct breakpoint_ops) <decode_location>: Add
1546 'search_pspace' parameter.
1547 (update_breakpoint_locations): Add 'filter_pspace' parameter.
1548 * cli/cli-cmds.c (edit_command, list_command): Adjust calls to
1549 decode_line_1.
1550 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the current
1551 program space as filter program space.
1552 * linespec.c (struct linespec_state) <search_pspace>: New field.
1553 (create_sals_line_offset, convert_explicit_location_to_sals)
1554 (parse_linespec): Pass the search program space down.
1555 (linespec_state_constructor): Add 'search_pspace' parameter.
1556 Store it.
1557 (linespec_parser_new): Add 'search_pspace' parameter and pass it
1558 along.
1559 (linespec_lex_to_end): Adjust.
1560 (decode_line_full, decode_line_1): Add 'search_pspace' parameter
1561 and pass it along.
1562 (decode_line_with_last_displayed): Adjust.
1563 (collect_symtabs_from_filename, symtabs_from_filename): New
1564 'search_pspace' parameter. Use it.
1565 (find_function_symbols): Pass the search program space down.
1566 * linespec.h (decode_line_1, decode_line_full): Add
1567 'search_pspace' parameter.
1568 * probe.c (parse_probes_in_pspace): New function, factored out
1569 from ...
1570 (parse_probes): ... this. Add 'search_pspace' parameter and use
1571 it.
1572 * probe.h (parse_probes): Add pspace' parameter.
1573 * python/python.c (gdbpy_decode_line): Adjust.
1574 * tracepoint.c (scope_info): Adjust.
1575
100b4f2e
MR
15762016-01-18 Maciej W. Rozycki <macro@imgtec.com>
1577
1578 * mips-tdep.c (mips_insn_size): Remove 48-bit microMIPS
1579 instruction support.
1580 (micromips_next_pc): Likewise.
1581 (micromips_scan_prologue): Likewise.
1582 (micromips_deal_with_atomic_sequence): Likewise.
1583 (micromips_stack_frame_destroyed_p): Likewise.
1584 (mips_breakpoint_from_pc): Likewise.
1585
3f7f3650
MR
15862016-01-18 Maciej W. Rozycki <macro@imgtec.com>
1587
1588 * mips-tdep.c (micromips_insn_at_pc_has_delay_slot): Pass
1589 unshifted 16-bit microMIPS instruction word to `mips_insn_size'.
1590
f303dbd6
PA
15912016-01-18 Pedro Alves <palves@redhat.com>
1592
1593 * NEWS: Mention that GDB now displays the ID and name of the
1594 thread that hit a breakpoint or received a signal.
1595 * break-catch-sig.c (signal_catchpoint_print_it): Use
1596 maybe_print_thread_hit_breakpoint.
1597 * break-catch-syscall.c (print_it_catch_syscall): Likewise.
1598 * break-catch-throw.c (print_it_exception_catchpoint): Likewise.
1599 * breakpoint.c (maybe_print_thread_hit_breakpoint): New function.
1600 (print_it_catch_fork, print_it_catch_vfork, print_it_catch_solib)
1601 (print_it_catch_exec, print_it_ranged_breakpoint)
1602 (print_it_watchpoint, print_it_masked_watchpoint, bkpt_print_it):
1603 Use maybe_print_thread_hit_breakpoint.
1604 * breakpoint.h (maybe_print_thread_hit_breakpoint): Declare.
1605 * gdbthread.h (show_thread_that_caused_stop): Declare.
1606 * infrun.c (print_signal_received_reason): Print which thread
1607 received signal.
1608 * thread.c (show_thread_that_caused_stop): New function.
1609
eb0edac8
GB
16102016-01-18 Gary Benson <gbenson@redhat.com>
1611
1612 * nat/linux-namespaces.c (do_fork): New function.
1613 (linux_mntns_get_helper): Use the above.
1614
dc365182
JH
16152016-01-17 Jonas Hahnfeld <Hahnfeld@itc.rwth-aachen.de> (tiny change)
1616
1617 Pushed by Joel Brobecker <brobecker@adacore.com>.
1618 PR gdb/19208
1619 * dwarf2read.c (read_partial_die): Do not call set_objfile_main_name
1620 if the function has no name.
1621
f74f61cb
SL
16222016-01-15 Sandra Loosemore <sandra@codesourcery.com>
1623
1624 * charset.c [PHONY_ICONV] (GDB_DEFAULT_HOST_CHARSET):
1625 Conditionalize for Windows host.
1626 (GDB_DEFAULT_TARGET_CHARSET): Match GDB_DEFAULT_HOST_CHARSET.
1627 (GDB_DEFAULT_TARGET_WIDE_CHARSET): Use UTF-32.
1628 (phony_iconv_open): Handle both UTF-32 endiannesses.
1629 (phony_iconv): Likewise. Check for output overflow and clean up
1630 out-of-input cases. Correct adjustment to input buffer pointer.
1631 (set_be_le_names) [PHONY_ICONV]: Use hard-wired names to match
1632 phony_iconv_open.
1633
71ef29a8
PA
16342016-01-15 Pedro Alves <palves@redhat.com>
1635
1636 * NEWS: Mention star wildcard ranges.
1637 * cli/cli-utils.c (get_number_or_range): Check state->in_range first.
1638 (number_range_setup_range): New function.
1639 * cli/cli-utils.h (number_range_setup_range): New declaration.
1640 * thread.c (thread_apply_command): Support star TID ranges.
1641 * tid-parse.c (tid_range_parser_finished)
1642 (tid_range_parser_string, tid_range_parser_skip)
1643 (get_tid_or_range, get_tid_or_range): Handle
1644 TID_RANGE_STATE_STAR_RANGE.
1645 (tid_range_parser_star_range): New function.
1646 * tid-parse.h (enum tid_range_state) <TID_RANGE_STATE_STAR_RANGE>:
1647 New value.
1648 (tid_range_parser_star_range): New declaration.
1649
3f5b7598
PA
16502016-01-15 Pedro Alves <palves@redhat.com>
1651
1652 * thread.c (thread_apply_command): Use the tid range parser to
1653 advance past the thread ID list.
1654 * tid-parse.c (get_positive_number_trailer): New function.
1655 (parse_thread_id): Use it.
1656 (get_tid_or_range): Use it. Return 0 instead of throwing invalid
1657 thread ID error.
1658 (get_tid_or_range): Detect negative values. Return 0 instead of
1659 throwing invalid thread ID error.
1660
e7cf25a8
YQ
16612016-01-14 Yao Qi <yao.qi@linaro.org>
1662
1663 * arm-linux-tdep.c (arm_linux_get_next_pcs_syscall_next_pc):
1664 Declare.
1665 (arm_linux_get_next_pcs_ops): Install
1666 arm_linux_get_next_pcs_syscall_next_pc.
1667 (arm_linux_syscall_next_pc): Change to ...
1668 (arm_linux_get_next_pcs_syscall_next_pc): ... it.
1669 (arm_linux_init_abi): Don't set tdep->syscall_next_pc.
1670 * arm-tdep.c (arm_get_next_pcs_syscall_next_pc): Declare.
1671 (arm_get_next_pcs_syscall_next_pc): Make it static. Don't
1672 call tdep->syscall_next_pc.
1673 * arm-tdep.h (struct gdbarch_tdep) <syscall_next_pc>: Remove.
1674 (arm_get_next_pcs_syscall_next_pc): Remove.
1675
c0518081
YQ
16762016-01-14 Yao Qi <yao.qi@linaro.org>
1677
1678 * remote.c (remote_set_syscall_catchpoint): Cast to char *.
1679 * thread.c (do_captured_thread_select): Cast to const char *.
1680
1b451dda
YQ
16812016-01-14 Yao Qi <yao.qi@linaro.org>
1682
1683 * arch/arm-get-next-pcs.c (arm_get_next_pcs_ctor): Change
1684 argument arm_thumb2_breakpoint to has_thumb2_breakpoint.
1685 (thumb_get_next_pcs_raw): Check has_thumb2_breakpoint
1686 instead.
1687 * arch/arm-get-next-pcs.h (struct arm_get_next_pcs)
1688 <arm_thumb2_breakpoint>: Remove.
1689 <has_thumb2_breakpoint>: New field.
1690 (arm_get_next_pcs_ctor): Update declaration.
1691 * arm-linux-tdep.c (arm_linux_software_single_step): Pass
1692 1 to arm_get_next_pcs_ctor.
1693 * arm-tdep.c (arm_software_single_step): Pass 0 to
1694 arm_get_next_pcs_ctor.
1695
bc06e0b1
UW
16962016-01-13 Ulrich Weigand <uweigand@de.ibm.com>
1697
1698 * MAINTAINERS: Add Andreas Arnez as s390 target maintainer.
1699
4e7b8bea
YQ
17002016-01-13 Yao Qi <yao.qi@linaro.org>
1701
1702 * arch/arm-get-next-pcs.c (arm_get_next_pcs_raw): Use
1703 byte_order_for_code to read instruction.
1704
663f6d42
PA
17052016-01-13 Pedro Alves <palves@redhat.com>
1706
1707 * NEWS: Mention $_gthread.
1708 * gdbthread.h (struct thread_info) <global_num>: Mention
1709 $_gthread.
1710 * thread.c (thread_num_make_value_helper): New function.
1711 (thread_id_make_value): Delete.
1712 (thread_id_per_inf_num_make_value, global_thread_id_make_value):
1713 New.
1714 (thread_funcs): Adjust.
1715 (gthread_funcs): New.
1716 (_initialize_thread): Register $_gthread variable.
1717
c84f6bbf
PA
17182016-01-13 Pedro Alves <palves@redhat.com>
1719
1720 * NEWS: Mention "info threads -gid".
1721 * gdbthread.h (struct thread_info) <global_num>: Mention "info
1722 threads -gid".
1723 * thread.c (info_threads_command): Handle "-gid".
1724 (_initialize_thread): Adjust "info threads" help string to mention
1725 -gid.
1726
22a02324
PA
17272016-01-13 Pedro Alves <palves@redhat.com>
1728
1729 * NEWS: Mention InferiorThread.global_num.
1730 * python/py-infthread.c (thpy_get_global_num): New function.
1731 (thread_object_getset): Register "global_num".
1732
5d5658a1
PA
17332016-01-13 Pedro Alves <palves@redhat.com>
1734
1735 * NEWS: Mention that thread IDs are now per inferior and global
1736 thread IDs.
1737 * Makefile.in (SFILES): Add tid-parse.c.
1738 (COMMON_OBS): Add tid-parse.o.
1739 (HFILES_NO_SRCDIR): Add tid-parse.h.
1740 * ada-tasks.c: Adjust to use ptid_to_global_thread_id.
1741 * breakpoint.c (insert_breakpoint_locations)
1742 (remove_threaded_breakpoints, bpstat_check_breakpoint_conditions)
1743 (print_one_breakpoint_location, set_longjmp_breakpoint)
1744 (check_longjmp_breakpoint_for_call_dummy)
1745 (set_momentary_breakpoint): Adjust to use global IDs.
1746 (find_condition_and_thread, watch_command_1): Use parse_thread_id.
1747 (until_break_command, longjmp_bkpt_dtor)
1748 (breakpoint_re_set_thread, insert_single_step_breakpoint): Adjust
1749 to use global IDs.
1750 * dummy-frame.c (pop_dummy_frame_bpt): Adjust to use
1751 ptid_to_global_thread_id.
1752 * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
1753 * gdbthread.h (struct thread_info): Rename field 'num' to
1754 'global_num. Add new fields 'per_inf_num' and 'inf'.
1755 (thread_id_to_pid): Rename thread_id_to_pid to
1756 global_thread_id_to_ptid.
1757 (pid_to_thread_id): Rename to ...
1758 (ptid_to_global_thread_id): ... this.
1759 (valid_thread_id): Rename to ...
1760 (valid_global_thread_id): ... this.
1761 (find_thread_id): Rename to ...
1762 (find_thread_global_id): ... this.
1763 (ALL_THREADS, ALL_THREADS_BY_INFERIOR): Declare.
1764 (print_thread_info): Add comment.
1765 * tid-parse.h: New file.
1766 * tid-parse.c: New file.
1767 * infcmd.c (step_command_fsm_prepare)
1768 (step_command_fsm_should_stop): Adjust to use the global thread
1769 ID.
1770 (until_next_command, until_next_command)
1771 (finish_command_fsm_should_stop): Adjust to use the global thread
1772 ID.
1773 (attach_post_wait): Adjust to check the inferior number too.
1774 * inferior.h (struct inferior) <highest_thread_num>: New field.
1775 * infrun.c (handle_signal_stop)
1776 (insert_exception_resume_breakpoint)
1777 (insert_exception_resume_from_probe): Adjust to use the global
1778 thread ID.
1779 * record-btrace.c (record_btrace_open): Use global thread IDs.
1780 * remote.c (process_initial_stop_replies): Also consider the
1781 inferior number.
1782 * target.c (target_pre_inferior): Clear the inferior's highest
1783 thread num.
1784 * thread.c (clear_thread_inferior_resources): Adjust to use the
1785 global thread ID.
1786 (new_thread): New inferior parameter. Adjust to use it. Set both
1787 the thread's global ID and the thread's per-inferior ID.
1788 (add_thread_silent): Adjust.
1789 (find_thread_global_id): New.
1790 (find_thread_id): Make static. Adjust to rename.
1791 (valid_thread_id): Rename to ...
1792 (valid_global_thread_id): ... this.
1793 (pid_to_thread_id): Rename to ...
1794 (ptid_to_global_thread_id): ... this.
1795 (thread_id_to_pid): Rename to ...
1796 (global_thread_id_to_ptid): ... this. Adjust.
1797 (first_thread_of_process): Adjust.
1798 (do_captured_list_thread_ids): Adjust to use global thread IDs.
1799 (should_print_thread): New function.
1800 (print_thread_info): Rename to ...
1801 (print_thread_info_1): ... this, and add new show_global_ids
1802 parameter. Handle it. Iterate over inferiors.
1803 (print_thread_info): Reimplement as wrapper around
1804 print_thread_info_1.
1805 (show_inferior_qualified_tids): New function.
1806 (print_thread_id): Use it.
1807 (tp_array_compar): Compare inferior numbers too.
1808 (thread_apply_command): Use tid_range_parser.
1809 (do_captured_thread_select): Use parse_thread_id.
1810 (thread_id_make_value): Adjust.
1811 (_initialize_thread): Adjust "info threads" help string.
1812 * varobj.c (struct varobj_root): Update comment.
1813 (varobj_create): Adjust to use global thread IDs.
1814 (value_of_root_1): Adjust to use global_thread_id_to_ptid.
1815 * windows-tdep.c (display_tib): No longer accept an argument.
1816 * cli/cli-utils.c (get_number_trailer): Make extern.
1817 * cli/cli-utils.h (get_number_trailer): Declare.
1818 (get_number_const): Adjust documentation.
1819 * mi/mi-cmd-var.c (mi_cmd_var_update_iter): Adjust to use global
1820 thread IDs.
1821 * mi/mi-interp.c (mi_new_thread, mi_thread_exit)
1822 (mi_on_normal_stop, mi_output_running_pid, mi_on_resume):
1823 * mi/mi-main.c (mi_execute_command, mi_cmd_execute): Likewise.
1824 * guile/scm-breakpoint.c (gdbscm_set_breakpoint_thread_x):
1825 Likewise.
1826 * python/py-breakpoint.c (bppy_set_thread): Likewise.
1827 * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
1828 * python/py-infthread.c (thpy_get_num): Add comment and return the
1829 per-inferior thread ID.
1830 (thread_object_getset): Update comment of "num".
1831
43792cf0
PA
18322016-01-13 Pedro Alves <palves@redhat.com>
1833
1834 * breakpoint.c (remove_threaded_breakpoints)
1835 (print_one_breakpoint_location): Use print_thread_id.
1836 * btrace.c (btrace_enable, btrace_disable, btrace_teardown)
1837 (btrace_fetch, btrace_clear): Use print_thread_id.
1838 * common/print-utils.c (CELLSIZE): Delete.
1839 (get_cell): Rename to ...
1840 (get_print_cell): ... this and made extern. Adjust call callers.
1841 Adjust to use PRINT_CELL_SIZE.
1842 * common/print-utils.h (get_print_cell): Declare.
1843 (PRINT_CELL_SIZE): New.
1844 * gdbthread.h (print_thread_id): Declare.
1845 * infcmd.c (signal_command): Use print_thread_id.
1846 * inferior.c (print_inferior): Use print_thread_id.
1847 * infrun.c (handle_signal_stop)
1848 (insert_exception_resume_breakpoint)
1849 (insert_exception_resume_from_probe)
1850 (print_signal_received_reason): Use print_thread_id.
1851 * record-btrace.c (record_btrace_info)
1852 (record_btrace_resume_thread, record_btrace_cancel_resume)
1853 (record_btrace_step_thread, record_btrace_wait): Use
1854 print_thread_id.
1855 * thread.c (thread_apply_all_command): Use print_thread_id.
1856 (print_thread_id): New function.
1857 (thread_apply_command): Use print_thread_id.
1858 (thread_command, thread_find_command, do_captured_thread_select):
1859 Use print_thread_id.
1860
84654457
PA
18612016-01-13 Pedro Alves <palves@redhat.com>
1862
1863 * NEWS: Mention InferiorThread.inferior.
1864 * python/py-infthread.c (thpy_get_inferior): New.
1865 (thread_object_getset): Register "inferior".
1866
e3940304
PA
18672016-01-13 Pedro Alves <palves@redhat.com>
1868
1869 * NEWS: Mention $_inferior.
1870 * inferior.c (inferior_id_make_value): New.
1871 (inferior_funcs): New.
1872 (_initialize_inferior): Create $_inferior variable.
1873
a911d87a
PA
18742016-01-13 Pedro Alves <palves@redhat.com>
1875
1876 PR breakpoints/19388
1877 * frame.c (get_current_frame): Use validate_registers_access.
1878 * gdbthread.h (validate_registers_access): Declare.
1879 * infrun.c (validate_siginfo_access): Delete.
1880 (siginfo_value_read, siginfo_value_write): Use
1881 validate_registers_access.
1882 * thread.c (validate_registers_access): New function.
1883
82075af2
JS
18842016-01-12 Josh Stone <jistone@redhat.com>
1885 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1886
1887 * NEWS (Changes since GDB 7.10): Mention QCatchSyscalls and the
1888 syscall_entry and syscall_return stop reasons. Mention GDB
1889 support for remote catch syscall.
1890 * remote.c (PACKET_QCatchSyscalls): New enum.
1891 (remote_set_syscall_catchpoint): New function.
1892 (remote_protocol_features): New element for QCatchSyscalls.
1893 (remote_parse_stop_reply): Parse syscall_entry/return stops.
1894 (init_remote_ops): Install remote_set_syscall_catchpoint.
1895 (_initialize_remote): Config QCatchSyscalls.
1896 * linux-nat.h (struct lwp_info) <syscall_state>: Comment typo.
1897
d18547d8
YQ
18982016-01-12 Yao Qi <yao.qi@linaro.org>
1899
1900 * nat/linux-ptrace.c (linux_child_function): Cast child_stack
1901 to gdb_byte * and pass to linux_fork_to_function.
1902
ba4dd7c4
YQ
19032016-01-12 Yao Qi <yao.qi@linaro.org>
1904
1905 * nat/linux-ptrace.c (linux_fork_to_function): Change type
1906 of argument 'function'.
1907 (linux_grandchild_function): Change return type to 'int'.
1908 Change child_stack's type to 'void *'.
1909 (linux_child_function): Likewise.
1910
bc504a31
PA
19112016-01-12 Pedro Alves <palves@redhat.com>
1912
1913 Remove use of the registered trademark symbol throughout.
1914
5eddd578
TS
19152016-01-12 Thomas Schwinge <thomas@codesourcery.com>
1916
1917 * reply_mig_hack.awk: Rewrite one regular expression.
1918
b835bb52
MF
19192016-01-11 Mike Frysinger <vapier@gentoo.org>
1920
1921 * acinclude.m4: Include new warning.m4 file.
1922 * configure: Regenerated.
1923 * configure.ac: Move all warning logic ...
1924 * warning.m4: ... here.
1925
2f99e8fc
YQ
19262016-01-08 Yao Qi <yao.qi@linaro.org>
1927
1928 * extension.c: Include target.h.
1929 (set_active_ext_lang): Only call install_gdb_sigint_handler,
1930 check_quit_flag, and set_quit_flag if target_terminal_is_ours
1931 returns false.
1932 (restore_active_ext_lang): Likewise.
1933 * target.c (target_terminal_is_ours): New function.
1934 * target.h (target_terminal_is_ours): Declare.
1935
5dd05630
MR
19362016-01-07 Maciej W. Rozycki <macro@imgtec.com>
1937
1938 * mips-tdep.c (mips_breakpoint_from_pc): Rename local `status'
1939 to `err' in the little-endian leg.
1940
f5aa3069
YQ
19412016-01-06 Yao Qi <yao.qi@linaro.org>
1942
1943 * arch/arm-get-next-pcs.c (arm_get_next_pcs): Move it to some
1944 lines below.
1945 (thumb_get_next_pcs_raw): Make it static.
1946 (arm_get_next_pcs_raw): Likewise.
1947 * arch/arm-get-next-pcs.h (thumb_get_next_pcs_raw): Remove the
1948 declaration.
1949 (arm_get_next_pcs_raw): Likewise.
1950
bf69ad5a
MF
19512016-01-05 Mike Frysinger <vapier@gentoo.org>
1952
1953 * version.in: Change cvs to git.
1954
66750332
MF
19552016-01-05 Mike Frysinger <vapier@gentoo.org>
1956
1957 * configure.tgt (score-*-*): Delete gdb_sim assignment.
1958
976102cd
PA
19592016-01-05 Pedro Alves <palves@redhat.com>
1960
1961 PR sim/13418
1962 * configure.ac: Define WITH_PPC_SIM when linking in the sim and
1963 the target is powerpc*.
fa89c126
PA
1964 * rs6000-tdep.c (init_sim_regno_table): Check WITH_PPC_SIM instead
1965 of WITH_SIM.
976102cd
PA
1966 * configure: Regenerate.
1967 * config.in: Regenerate.
1968
43368e1d
MM
19692016-01-04 Markus Metzger <markus.t.metzger@intel.com>
1970
1971 * btrace.c (btrace_pt_readmem_callback): Do not return in TRY/CATCH.
1972
32273fe6
MF
19732016-01-02 Mike Frysinger <vapier@gentoo.org>
1974
1975 * configure.tgt (powerpc*-*-*): Delete test call and
1976 always assign gdb_sim.
1977
618f726f
JB
19782016-01-01 Joel Brobecker <brobecker@adacore.com>
1979
1980 Update year range in copyright notice of all files.
1981
edd88788
JB
19822016-01-01 Joel Brobecker <brobecker@adacore.com>
1983
1984 * top.c (print_gdb_version): Change copyright year in version
1985 message.
1986
0f7b3ef4 19872016-01-01 Joel Brobecker <brobecker@adacore.com>
aec47d1d 1988
0f7b3ef4 1989 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2015.
aec47d1d 1990
0f7b3ef4 1991For older changes see ChangeLog-2015.
c906108c
SS
1992\f
1993Local Variables:
1994mode: change-log
1995left-margin: 8
1996fill-column: 74
1997version-control: never
57da7796 1998coding: utf-8
c906108c 1999End:
This page took 1.934992 seconds and 4 git commands to generate.